Version Description
- Added: Stripe Connect gateway to divide the booking payment between organizer and site owner
- Added: Ability to insert new speakers from "Frontend Event Submission"
- Improved: Only the role of administrators can see the license
- Fixed: Agreement field type
- Fixed: Booking Limit per user email option
- Fixed: General search function in WordPress Media, Pages, Posts and all custom post types caused by Search Bar feature
- Fixed: Show "Sold Out" badge in monthly skin when an occurence is sold out completely
- Fixed "Load More" button at the bottom of the events page
- Fixed: Import from EventOn (when organizer "tel" field contains an email)
- Fixed: The mec_button and tiny_mce in FES form (JS error)
- Fixed: Popup image src on some of the themes
- Fixed: Back to Taxonomy Items when editing items (Organizers, Labels, Locations, Speaker)
- Fixed: Unclickable settings menus
- Fixed: Slider and Carousel view when events don't have featured images
- Fixed: Some minor issues
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.4.5 |
Comparing to | |
See all releases |
Code changes from version 4.4.0 to 4.4.5
- app/addons/divi/includes/Divi.php +45 -45
- app/addons/divi/includes/loader.js +9 -9
- app/addons/divi/includes/loader.php +14 -14
- app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.jsx +27 -27
- app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php +37 -37
- app/addons/divi/includes/modules/index.js +5 -5
- app/addons/divi/scripts/builder-bundle.min.js +201 -201
- app/addons/divi/scripts/frontend.js +3 -3
- app/features/events.php +37 -20
- app/features/fes/form.php +7 -2
- app/features/gateways/paypal_ipn.php +0 -30
- app/features/labels.php +1 -0
- app/features/locations.php +1 -0
- app/features/mec/booking.php +4 -3
- app/features/mec/dashboard.php +11 -0
- app/features/mec/gateways.php +2 -1
- app/features/mec/ie.php +1 -0
- app/features/mec/messages.php +1 -0
- app/features/mec/meta_boxes/search_form.php +1 -0
- app/features/mec/modules.php +16 -8
- app/features/mec/notifications.php +2 -1
- app/features/mec/regform.php +1 -0
- app/features/mec/settings.php +4 -1
- app/features/mec/single.php +49 -1
- app/features/mec/styles.php +1 -0
- app/features/mec/styling.php +1 -0
- app/features/mec/support-page.php +1 -8
- app/features/organizers.php +5 -0
- app/features/search.php +24 -23
- app/features/search_bar/search_bar.php +10 -10
- app/features/speakers.php +53 -1
- app/libraries/envato.php +72 -15
- app/libraries/main.php +76 -45
- app/libraries/render.php +4 -0
- app/libraries/skins.php +24 -16
- app/modules/booking/steps/checkout.php +7 -0
- app/modules/booking/steps/form.php +21 -17
- app/skins/agenda/render.php +1 -0
- app/skins/carousel/render.php +29 -5
- app/skins/daily_view.php +5 -6
- app/skins/daily_view/render.php +30 -1
- app/skins/full_calendar/tpl.php +10 -4
- app/skins/grid/render.php +2 -0
- app/skins/monthly_view.php +4 -2
- app/skins/monthly_view/calendar.php +30 -5
- app/skins/monthly_view/calendar_clean.php +31 -5
- app/skins/monthly_view/calendar_simple.php +6 -1
- app/skins/single.php +110 -1
- app/skins/single/default.php +5 -2
- app/skins/single/modern.php +3 -2
- app/skins/slider/render.php +1 -1
- app/skins/weekly_view.php +4 -5
- app/skins/weekly_view/render.php +30 -1
- assets/css/backend.css +165 -0
- assets/css/backend.min.css +1 -1
- assets/css/frontend.css +349 -2
- assets/css/frontend.min.css +1 -1
- assets/img/no-image.png +0 -0
- assets/js/backend.js +26 -25
- assets/js/frontend.js +62 -13
- changelog.txt +18 -1
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +1527 -1406
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +1035 -987
app/addons/divi/includes/Divi.php
CHANGED
@@ -1,45 +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;
|
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/loader.js
CHANGED
@@ -1,9 +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 |
-
});
|
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
CHANGED
@@ -1,14 +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 |
-
}
|
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
CHANGED
@@ -1,27 +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;
|
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
CHANGED
@@ -1,37 +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;
|
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
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
import MECShortcodes from './MECShortcodes/MECShortcodes';
|
2 |
-
|
3 |
-
export default [
|
4 |
-
MECShortcodes,
|
5 |
-
];
|
1 |
+
import MECShortcodes from './MECShortcodes/MECShortcodes';
|
2 |
+
|
3 |
+
export default [
|
4 |
+
MECShortcodes,
|
5 |
+
];
|
app/addons/divi/scripts/builder-bundle.min.js
CHANGED
@@ -1,201 +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 |
-
]);
|
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.js
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
// This script is loaded both on the frontend page and in the Visual Builder.
|
2 |
-
|
3 |
-
jQuery(function($) {});
|
1 |
+
// This script is loaded both on the frontend page and in the Visual Builder.
|
2 |
+
|
3 |
+
jQuery(function($) {});
|
app/features/events.php
CHANGED
@@ -1469,6 +1469,8 @@ class MEC_feature_events extends MEC_base
|
|
1469 |
|
1470 |
$bookings_limit = isset($booking_options['bookings_limit']) ? $booking_options['bookings_limit'] : '';
|
1471 |
$bookings_limit_unlimited = isset($booking_options['bookings_limit_unlimited']) ? $booking_options['bookings_limit_unlimited'] : 0;
|
|
|
|
|
1472 |
?>
|
1473 |
<div id="mec-booking">
|
1474 |
<div class="mec-meta-box-fields" id="mec_meta_box_booking_options_form">
|
@@ -1485,28 +1487,43 @@ class MEC_feature_events extends MEC_base
|
|
1485 |
?>
|
1486 |
type="checkbox" value="1" name="mec[booking][bookings_limit_unlimited]"/>
|
1487 |
<?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1488 |
</label>
|
1489 |
-
<input class="mec-col-4" type="text" name="mec[booking][bookings_limit]" id="mec_bookings_limit"
|
1490 |
-
value="<?php echo esc_attr($bookings_limit); ?>" placeholder="<?php _e('100', 'modern-events-calendar-lite'); ?>"
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1498 |
</div>
|
1499 |
-
<span class="mec-tooltip">
|
1500 |
-
<div class="box">
|
1501 |
-
<h5 class="title"><?php _e('Total booking limits', 'modern-events-calendar-lite'); ?></h5>
|
1502 |
-
<div class="content"><p><?php esc_attr_e('If you want to set a limit to all tickets, uncheck this checkbox and put a limitation number.', 'modern-events-calendar-lite'); ?>
|
1503 |
-
<a href="https://webnus.net/dox/modern-events-calendar/total-booking-limits/"
|
1504 |
-
target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a><a
|
1505 |
-
href="https://webnus.net/dox/modern-events-calendar/add-a-booking-system/"
|
1506 |
-
target="_blank"><?php _e('Read About A Booking System', 'modern-events-calendar-lite'); ?></a></p></div>
|
1507 |
-
</div>
|
1508 |
-
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
1509 |
-
</span>
|
1510 |
</div>
|
1511 |
</div>
|
1512 |
<?php
|
1469 |
|
1470 |
$bookings_limit = isset($booking_options['bookings_limit']) ? $booking_options['bookings_limit'] : '';
|
1471 |
$bookings_limit_unlimited = isset($booking_options['bookings_limit_unlimited']) ? $booking_options['bookings_limit_unlimited'] : 0;
|
1472 |
+
$bookings_user_limit = isset($booking_options['bookings_user_limit']) ? $booking_options['bookings_user_limit'] : '';
|
1473 |
+
$bookings_user_limit_unlimited = isset($booking_options['bookings_user_limit_unlimited']) ? $booking_options['bookings_user_limit_unlimited'] : true;
|
1474 |
?>
|
1475 |
<div id="mec-booking">
|
1476 |
<div class="mec-meta-box-fields" id="mec_meta_box_booking_options_form">
|
1487 |
?>
|
1488 |
type="checkbox" value="1" name="mec[booking][bookings_limit_unlimited]"/>
|
1489 |
<?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
|
1490 |
+
<span class="mec-tooltip">
|
1491 |
+
<div class="box">
|
1492 |
+
<h5 class="title"><?php _e('Total booking limits', 'modern-events-calendar-lite'); ?></h5>
|
1493 |
+
<div class="content">
|
1494 |
+
<p>
|
1495 |
+
<?php esc_attr_e('If you want to set a limit to all tickets, uncheck this checkbox and put a limitation number.', 'modern-events-calendar-lite'); ?>
|
1496 |
+
<a href="https://webnus.net/dox/modern-events-calendar/total-booking-limits/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a>
|
1497 |
+
<a href="https://webnus.net/dox/modern-events-calendar/add-a-booking-system/" target="_blank"><?php _e('Read About A Booking System', 'modern-events-calendar-lite'); ?></a>
|
1498 |
+
</p>
|
1499 |
+
</div>
|
1500 |
+
</div>
|
1501 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
1502 |
+
</span>
|
1503 |
</label>
|
1504 |
+
<input class="mec-col-4 <?php echo ($bookings_limit_unlimited == 1) ? 'mec-util-hidden' : ''; ?>" type="text" name="mec[booking][bookings_limit]" id="mec_bookings_limit"
|
1505 |
+
value="<?php echo esc_attr($bookings_limit); ?>" placeholder="<?php _e('100', 'modern-events-calendar-lite'); ?>"/>
|
1506 |
+
</div>
|
1507 |
+
</div>
|
1508 |
+
<div class="mec-meta-box-fields" id="mec_meta_box_booking_options_form">
|
1509 |
+
<label for="mec_bookings_user_limit">
|
1510 |
+
<h4 class="mec-title"><?php _e('Total user booking limits', 'modern-events-calendar-lite'); ?></h4>
|
1511 |
+
</label>
|
1512 |
+
<div class="mec-form-row">
|
1513 |
+
<label class="mec-col-4" for="mec_bookings_user_limit_unlimited" id="mec_bookings_user_limit_unlimited_label">
|
1514 |
+
<input type="hidden" name="mec[booking][bookings_user_limit_unlimited]" value="0"/>
|
1515 |
+
<input id="mec_bookings_user_limit_unlimited"
|
1516 |
+
<?php
|
1517 |
+
if ($bookings_user_limit_unlimited == 1) {
|
1518 |
+
echo 'checked="checked"';
|
1519 |
+
}
|
1520 |
+
?>
|
1521 |
+
type="checkbox" value="1" name="mec[booking][bookings_user_limit_unlimited]" onchange="javascript: $(this).parent().parent().find('input[type=text]').toggle().val('');"/>
|
1522 |
+
<?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
|
1523 |
+
</label>
|
1524 |
+
<input class="mec-col-4 <?php echo ($bookings_user_limit_unlimited == 1) ? 'mec-util-hidden' : ''; ?>" type="text" name="mec[booking][bookings_user_limit]" id="mec_bookings_user_limit"
|
1525 |
+
value="<?php echo esc_attr($bookings_user_limit); ?>" placeholder="<?php _e('12', 'modern-events-calendar-lite'); ?>"/>
|
1526 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1527 |
</div>
|
1528 |
</div>
|
1529 |
<?php
|
app/features/fes/form.php
CHANGED
@@ -834,19 +834,24 @@ $this->factory->params('footer', $javascript);
|
|
834 |
|
835 |
$speaker_terms = get_terms(array('taxonomy'=>'mec_speaker', 'hide_empty'=>false));
|
836 |
?>
|
837 |
-
<?php if(count($speaker_terms)): ?>
|
838 |
<div class="mec-meta-box-fields" id="mec-speakers">
|
839 |
<h4><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></h4>
|
840 |
<div class="mec-form-row">
|
|
|
|
|
|
|
|
|
|
|
|
|
841 |
<?php foreach($speaker_terms as $speaker_term): ?>
|
842 |
<label for="mec_fes_speakers<?php echo $speaker_term->term_id; ?>">
|
843 |
<input type="checkbox" name="mec[speakers][<?php echo $speaker_term->term_id; ?>]" id="mec_fes_speakers<?php echo $speaker_term->term_id; ?>" value="1" <?php echo (in_array($speaker_term->term_id, $speakers) ? 'checked="checked"' : ''); ?> />
|
844 |
<?php echo $speaker_term->name; ?>
|
845 |
</label>
|
846 |
<?php endforeach; ?>
|
|
|
847 |
</div>
|
848 |
</div>
|
849 |
-
<?php endif; ?>
|
850 |
<?php endif; ?>
|
851 |
</div>
|
852 |
<div class="mec-form-row mec-fes-submit-wide">
|
834 |
|
835 |
$speaker_terms = get_terms(array('taxonomy'=>'mec_speaker', 'hide_empty'=>false));
|
836 |
?>
|
|
|
837 |
<div class="mec-meta-box-fields" id="mec-speakers">
|
838 |
<h4><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></h4>
|
839 |
<div class="mec-form-row">
|
840 |
+
<input type="text" name="mec[speakers][datas][names]" id="mec_speaker_input_names" placeholder="<?php _e('Speakers Names', 'modern-events-calendar-lite'); ?>" class="" />
|
841 |
+
<p><?php _e('Separate names with commas Similar Justin, Cris', 'modern-events-calendar-lite'); ?></p>
|
842 |
+
<button class="button" type="button" id="mec_add_speaker_button"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
|
843 |
+
</div>
|
844 |
+
<div class="mec-form-row" id="mec-fes-speakers-list">
|
845 |
+
<?php if(count($speaker_terms)): ?>
|
846 |
<?php foreach($speaker_terms as $speaker_term): ?>
|
847 |
<label for="mec_fes_speakers<?php echo $speaker_term->term_id; ?>">
|
848 |
<input type="checkbox" name="mec[speakers][<?php echo $speaker_term->term_id; ?>]" id="mec_fes_speakers<?php echo $speaker_term->term_id; ?>" value="1" <?php echo (in_array($speaker_term->term_id, $speakers) ? 'checked="checked"' : ''); ?> />
|
849 |
<?php echo $speaker_term->name; ?>
|
850 |
</label>
|
851 |
<?php endforeach; ?>
|
852 |
+
<?php endif; ?>
|
853 |
</div>
|
854 |
</div>
|
|
|
855 |
<?php endif; ?>
|
856 |
</div>
|
857 |
<div class="mec-form-row mec-fes-submit-wide">
|
app/features/gateways/paypal_ipn.php
DELETED
@@ -1,30 +0,0 @@
|
|
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/labels.php
CHANGED
@@ -76,6 +76,7 @@ class MEC_feature_labels extends MEC_base
|
|
76 |
'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label),
|
77 |
'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label),
|
78 |
'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label),
|
|
|
79 |
),
|
80 |
'rewrite'=>array('slug'=>'events-label'),
|
81 |
'public'=>false,
|
76 |
'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label),
|
77 |
'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label),
|
78 |
'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label),
|
79 |
+
'back_to_items'=>sprintf(__('← Back to %s', 'modern-events-calendar-lite'), $plural_label),
|
80 |
),
|
81 |
'rewrite'=>array('slug'=>'events-label'),
|
82 |
'public'=>false,
|
app/features/locations.php
CHANGED
@@ -74,6 +74,7 @@ class MEC_feature_locations extends MEC_base
|
|
74 |
'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label),
|
75 |
'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label),
|
76 |
'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label),
|
|
|
77 |
),
|
78 |
'rewrite'=>array('slug'=>'events-location'),
|
79 |
'public'=>false,
|
74 |
'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label),
|
75 |
'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label),
|
76 |
'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label),
|
77 |
+
'back_to_items'=>sprintf(__('← Back to %s', 'modern-events-calendar-lite'), $plural_label),
|
78 |
),
|
79 |
'rewrite'=>array('slug'=>'events-location'),
|
80 |
'public'=>false,
|
app/features/mec/booking.php
CHANGED
@@ -62,6 +62,7 @@ if($this->getPRO())
|
|
62 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
63 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
64 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
65 |
</li>
|
66 |
</ul>
|
67 |
</li>
|
@@ -226,7 +227,7 @@ if($this->getPRO())
|
|
226 |
<label>
|
227 |
<input type="hidden" name="mec[settings][booking_status]" value="0" />
|
228 |
<input onchange="jQuery('#mec_booking_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][booking_status]" <?php if(isset($settings['booking_status']) and $settings['booking_status']) echo 'checked="checked"'; ?> /> <?php _e('Enable booking module', 'modern-events-calendar-lite'); ?>
|
229 |
-
<p><?php esc_attr_e("After
|
230 |
</label>
|
231 |
</div>
|
232 |
<div id="mec_booking_container_toggle" class="<?php if((isset($settings['booking_status']) and !$settings['booking_status']) or !isset($settings['booking_status'])) echo 'mec-util-hidden'; ?>">
|
@@ -362,7 +363,7 @@ if($this->getPRO())
|
|
362 |
<input type="hidden" name="mec[settings][coupons_status]" value="0" />
|
363 |
<input onchange="jQuery('#mec_coupons_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][coupons_status]" <?php if(isset($settings['coupons_status']) and $settings['coupons_status']) echo 'checked="checked"'; ?> /> <?php _e('Enable coupons module', 'modern-events-calendar-lite'); ?>
|
364 |
</label>
|
365 |
-
<p><?php esc_attr_e("After
|
366 |
</div>
|
367 |
<div id="mec_coupons_container_toggle" class="<?php if((isset($settings['coupons_status']) and !$settings['coupons_status']) or !isset($settings['coupons_status'])) echo 'mec-util-hidden'; ?>">
|
368 |
</div>
|
@@ -567,7 +568,7 @@ jQuery(document).ready(function()
|
|
567 |
}, 300);
|
568 |
});
|
569 |
var hash = window.location.hash.replace('#', '');
|
570 |
-
|
571 |
});
|
572 |
|
573 |
jQuery(".dpr-save-btn").on('click', function(event)
|
62 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
63 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
64 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
65 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
66 |
</li>
|
67 |
</ul>
|
68 |
</li>
|
227 |
<label>
|
228 |
<input type="hidden" name="mec[settings][booking_status]" value="0" />
|
229 |
<input onchange="jQuery('#mec_booking_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][booking_status]" <?php if(isset($settings['booking_status']) and $settings['booking_status']) echo 'checked="checked"'; ?> /> <?php _e('Enable booking module', 'modern-events-calendar-lite'); ?>
|
230 |
+
<p><?php esc_attr_e("After enabling and saving the settings, reloading the page will add 'payment Gateways' to the settings and a new menu item on the Dashboard", 'modern-events-calendar-lite'); ?></p>
|
231 |
</label>
|
232 |
</div>
|
233 |
<div id="mec_booking_container_toggle" class="<?php if((isset($settings['booking_status']) and !$settings['booking_status']) or !isset($settings['booking_status'])) echo 'mec-util-hidden'; ?>">
|
363 |
<input type="hidden" name="mec[settings][coupons_status]" value="0" />
|
364 |
<input onchange="jQuery('#mec_coupons_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][coupons_status]" <?php if(isset($settings['coupons_status']) and $settings['coupons_status']) echo 'checked="checked"'; ?> /> <?php _e('Enable coupons module', 'modern-events-calendar-lite'); ?>
|
365 |
</label>
|
366 |
+
<p><?php esc_attr_e("After enabling and saving the settings,, you should reload the page to see a new menu on the Dashboard > Booking", 'modern-events-calendar-lite'); ?></p>
|
367 |
</div>
|
368 |
<div id="mec_coupons_container_toggle" class="<?php if((isset($settings['coupons_status']) and !$settings['coupons_status']) or !isset($settings['coupons_status'])) echo 'mec-util-hidden'; ?>">
|
369 |
</div>
|
568 |
}, 300);
|
569 |
});
|
570 |
var hash = window.location.hash.replace('#', '');
|
571 |
+
jQuery('[data-id="'+hash+'"]').trigger('click');
|
572 |
});
|
573 |
|
574 |
jQuery(".dpr-save-btn").on('click', function(event)
|
app/features/mec/dashboard.php
CHANGED
@@ -116,6 +116,9 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
|
|
116 |
<div class="w-box-head">
|
117 |
<?php _e('MEC Activate', 'modern-events-calendar-lite'); ?>
|
118 |
</div>
|
|
|
|
|
|
|
119 |
<div class="w-box-content">
|
120 |
<p><?php echo esc_html__('In order to use all plugin features and options, please enter your purchase code.', 'modern-events-calendar-lite'); ?></p>
|
121 |
<div class="box-mec-avtivation">
|
@@ -181,6 +184,14 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
|
|
181 |
</div>
|
182 |
</div>
|
183 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
</div>
|
185 |
</div>
|
186 |
<?php endif; ?>
|
116 |
<div class="w-box-head">
|
117 |
<?php _e('MEC Activate', 'modern-events-calendar-lite'); ?>
|
118 |
</div>
|
119 |
+
<?php
|
120 |
+
if (current_user_can( 'administrator' )):
|
121 |
+
?>
|
122 |
<div class="w-box-content">
|
123 |
<p><?php echo esc_html__('In order to use all plugin features and options, please enter your purchase code.', 'modern-events-calendar-lite'); ?></p>
|
124 |
<div class="box-mec-avtivation">
|
184 |
</div>
|
185 |
</div>
|
186 |
</div>
|
187 |
+
<?php
|
188 |
+
else: ?>
|
189 |
+
<div class="w-box-content">
|
190 |
+
<p style="background: #f7f7f7f7;display: inline-block;padding: 17px 35px;border-radius: 3px;/* box-shadow: 0 1px 16px rgba(0,0,0,.034); */"><?php echo esc_html__('You cannot access this section.', 'modern-events-calendar-lite'); ?></p>
|
191 |
+
</div>
|
192 |
+
<?php
|
193 |
+
endif;
|
194 |
+
?>
|
195 |
</div>
|
196 |
</div>
|
197 |
<?php endif; ?>
|
app/features/mec/gateways.php
CHANGED
@@ -53,6 +53,7 @@ $gateways_options = $this->main->get_gateways_options();
|
|
53 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
54 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
55 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
56 |
</li>
|
57 |
</ul>
|
58 |
</li>
|
@@ -195,7 +196,7 @@ $gateways_options = $this->main->get_gateways_options();
|
|
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">
|
53 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
54 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
55 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
56 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
57 |
</li>
|
58 |
</ul>
|
59 |
</li>
|
196 |
<div class="mec-col-4">
|
197 |
<label>
|
198 |
<input type="hidden" name="mec[gateways][op_status]" value="0" />
|
199 |
+
<input id="mec_gateways_op_status" 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'); ?>
|
200 |
</label>
|
201 |
<span class="mec-tooltip">
|
202 |
<div class="box">
|
app/features/mec/ie.php
CHANGED
@@ -49,6 +49,7 @@ defined('MECEXEC') or die();
|
|
49 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
50 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
51 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
52 |
</li>
|
53 |
</ul>
|
54 |
</li>
|
49 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
50 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
51 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
52 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
53 |
</li>
|
54 |
</ul>
|
55 |
</li>
|
app/features/mec/messages.php
CHANGED
@@ -53,6 +53,7 @@ $values = $this->main->get_messages_options();
|
|
53 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
54 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
55 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
56 |
</li>
|
57 |
</ul>
|
58 |
</li>
|
53 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
54 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
55 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
56 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
57 |
</li>
|
58 |
</ul>
|
59 |
</li>
|
app/features/mec/meta_boxes/search_form.php
CHANGED
@@ -145,6 +145,7 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
|
|
145 |
<option value="text_input" <?php if(isset($sf_options_grid['text_search']) and isset($sf_options_grid['text_search']['type']) and $sf_options_grid['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
146 |
</select>
|
147 |
</div>
|
|
|
148 |
</div>
|
149 |
|
150 |
<!-- Agenda View -->
|
145 |
<option value="text_input" <?php if(isset($sf_options_grid['text_search']) and isset($sf_options_grid['text_search']['type']) and $sf_options_grid['text_search']['type'] == 'text_input') echo 'selected="selected"'; ?>><?php _e('Text Input', 'modern-events-calendar-lite'); ?></option>
|
146 |
</select>
|
147 |
</div>
|
148 |
+
<?php do_action('mec_grid_search_form',$sf_options_grid); ?>
|
149 |
</div>
|
150 |
|
151 |
<!-- Agenda View -->
|
app/features/mec/modules.php
CHANGED
@@ -60,6 +60,7 @@ if($this->getPRO())
|
|
60 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
61 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
62 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
63 |
</li>
|
64 |
</ul>
|
65 |
</li>
|
@@ -252,8 +253,15 @@ if($this->getPRO())
|
|
252 |
<input type="hidden" name="mec[settings][speakers_status]" value="0" />
|
253 |
<input type="checkbox" name="mec[settings][speakers_status]" id="mec_settings_speakers_status" <?php echo ((isset($settings['speakers_status']) and $settings['speakers_status']) ? 'checked="checked"' : ''); ?> value="1" />
|
254 |
<?php _e('Enable speakers feature', 'modern-events-calendar-lite'); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
</label>
|
256 |
-
<p><?php esc_attr_e("After
|
257 |
</div>
|
258 |
</div>
|
259 |
|
@@ -279,12 +287,12 @@ if($this->getPRO())
|
|
279 |
<div class="mec-col-4">
|
280 |
<input type="text" id="mec_settings_google_maps_api_key" name="mec[settings][google_maps_api_key]" value="<?php echo ((isset($settings['google_maps_api_key']) and trim($settings['google_maps_api_key']) != '') ? $settings['google_maps_api_key'] : ''); ?>" />
|
281 |
<span class="mec-tooltip">
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
</div>
|
289 |
</div>
|
290 |
<div class="mec-form-row">
|
@@ -586,7 +594,7 @@ jQuery(document).ready(function()
|
|
586 |
}, 300);
|
587 |
});
|
588 |
var hash = window.location.hash.replace('#', '');
|
589 |
-
|
590 |
});
|
591 |
|
592 |
jQuery(".dpr-save-btn").on('click', function(event)
|
60 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
61 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
62 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
63 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
64 |
</li>
|
65 |
</ul>
|
66 |
</li>
|
253 |
<input type="hidden" name="mec[settings][speakers_status]" value="0" />
|
254 |
<input type="checkbox" name="mec[settings][speakers_status]" id="mec_settings_speakers_status" <?php echo ((isset($settings['speakers_status']) and $settings['speakers_status']) ? 'checked="checked"' : ''); ?> value="1" />
|
255 |
<?php _e('Enable speakers feature', 'modern-events-calendar-lite'); ?>
|
256 |
+
<span class="mec-tooltip">
|
257 |
+
<div class="box">
|
258 |
+
<h5 class="title"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></h5>
|
259 |
+
<div class="content"><p><?php esc_attr_e("Enable this option to have speaker in Hourly Schedule in Single. Refresh after enabling it to see the Speakers menu under MEC dashboard.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/speaker/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
260 |
+
</div>
|
261 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
262 |
+
</span>
|
263 |
</label>
|
264 |
+
<p><?php esc_attr_e("After enabling and saving the settings, you should reload the page to see a new menu on the Dashboard > MEC", 'modern-events-calendar-lite'); ?></p>
|
265 |
</div>
|
266 |
</div>
|
267 |
|
287 |
<div class="mec-col-4">
|
288 |
<input type="text" id="mec_settings_google_maps_api_key" name="mec[settings][google_maps_api_key]" value="<?php echo ((isset($settings['google_maps_api_key']) and trim($settings['google_maps_api_key']) != '') ? $settings['google_maps_api_key'] : ''); ?>" />
|
289 |
<span class="mec-tooltip">
|
290 |
+
<div class="box">
|
291 |
+
<h5 class="title"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></h5>
|
292 |
+
<div class="content"><p><?php esc_attr_e("Required!", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/google-maps-options/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
|
293 |
+
</div>
|
294 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
295 |
+
</span>
|
296 |
</div>
|
297 |
</div>
|
298 |
<div class="mec-form-row">
|
594 |
}, 300);
|
595 |
});
|
596 |
var hash = window.location.hash.replace('#', '');
|
597 |
+
jQuery('[data-id="'+hash+'"]').trigger('click');
|
598 |
});
|
599 |
|
600 |
jQuery(".dpr-save-btn").on('click', function(event)
|
app/features/mec/notifications.php
CHANGED
@@ -52,6 +52,7 @@ $notifications = $this->main->get_notifications();
|
|
52 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
53 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
54 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
55 |
</li>
|
56 |
</ul>
|
57 |
</li>
|
@@ -713,7 +714,7 @@ jQuery(document).ready(function()
|
|
713 |
}, 300);
|
714 |
});
|
715 |
var hash = window.location.hash.replace('#', '');
|
716 |
-
|
717 |
});
|
718 |
|
719 |
jQuery(".wns-be-sidebar .pr-be-group-menu-li").on('click', function(event)
|
52 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
53 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
54 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
55 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
56 |
</li>
|
57 |
</ul>
|
58 |
</li>
|
714 |
}, 300);
|
715 |
});
|
716 |
var hash = window.location.hash.replace('#', '');
|
717 |
+
jQuery('[data-id="'+hash+'"]').trigger('click');
|
718 |
});
|
719 |
|
720 |
jQuery(".wns-be-sidebar .pr-be-group-menu-li").on('click', function(event)
|
app/features/mec/regform.php
CHANGED
@@ -90,6 +90,7 @@ if(!$mec_email)
|
|
90 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
91 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
92 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
93 |
</li>
|
94 |
</ul>
|
95 |
</li>
|
90 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
91 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
92 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
93 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
94 |
</li>
|
95 |
</ul>
|
96 |
</li>
|
app/features/mec/settings.php
CHANGED
@@ -125,6 +125,7 @@ $get_n_option = get_option('mec_addons_notification_option');
|
|
125 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
126 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
127 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
128 |
</li>
|
129 |
</ul>
|
130 |
</li>
|
@@ -901,12 +902,14 @@ $get_n_option = get_option('mec_addons_notification_option');
|
|
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" />
|
@@ -1040,7 +1043,7 @@ jQuery(document).ready(function()
|
|
1040 |
}, 300);
|
1041 |
});
|
1042 |
var hash = window.location.hash.replace('#', '');
|
1043 |
-
|
1044 |
});
|
1045 |
|
1046 |
jQuery(".dpr-save-btn").on('click', function(event)
|
125 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
126 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
127 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
128 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
129 |
</li>
|
130 |
</ul>
|
131 |
</li>
|
902 |
<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'); ?>
|
903 |
</label>
|
904 |
</div>
|
905 |
+
<?php if(isset($settings['speakers_status']) and $settings['speakers_status']) : ?>
|
906 |
<div class="mec-form-row">
|
907 |
<label>
|
908 |
<input type="hidden" name="mec[settings][search_bar_speaker]" value="0" />
|
909 |
<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'); ?>
|
910 |
</label>
|
911 |
</div>
|
912 |
+
<?php endif; ?>
|
913 |
<div class="mec-form-row">
|
914 |
<label>
|
915 |
<input type="hidden" name="mec[settings][search_bar_tag]" value="0" />
|
1043 |
}, 300);
|
1044 |
});
|
1045 |
var hash = window.location.hash.replace('#', '');
|
1046 |
+
jQuery('[data-id="'+hash+'"]').trigger('click');
|
1047 |
});
|
1048 |
|
1049 |
jQuery(".dpr-save-btn").on('click', function(event)
|
app/features/mec/single.php
CHANGED
@@ -82,6 +82,12 @@ $pages = get_pages();
|
|
82 |
</a>
|
83 |
</li>
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
</ul>
|
86 |
</li>
|
87 |
|
@@ -367,6 +373,48 @@ $pages = get_pages();
|
|
367 |
</div>
|
368 |
</div>
|
369 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
<div class="mec-options-fields">
|
371 |
<?php wp_nonce_field('mec_options_form'); ?>
|
372 |
<button style="display: none;" id="mec_single_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></button>
|
@@ -403,7 +451,7 @@ jQuery(document).ready(function()
|
|
403 |
}, 300);
|
404 |
});
|
405 |
var hash = window.location.hash.replace('#', '');
|
406 |
-
|
407 |
});
|
408 |
|
409 |
jQuery(".dpr-save-btn").on('click', function(event)
|
82 |
</a>
|
83 |
</li>
|
84 |
|
85 |
+
<li id="" class="pr-be-group-menu-li">
|
86 |
+
<a data-id= "related_events" class="wns-be-group-tab-link-a WnTabLinks">
|
87 |
+
<span class="pr-be-group-menu-title"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></span>
|
88 |
+
</a>
|
89 |
+
</li>
|
90 |
+
|
91 |
</ul>
|
92 |
</li>
|
93 |
|
373 |
</div>
|
374 |
</div>
|
375 |
|
376 |
+
<div id="related_events" class="mec-options-fields">
|
377 |
+
<h4 class="mec-form-subtitle"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></h4>
|
378 |
+
<div class="mec-form-row">
|
379 |
+
<label>
|
380 |
+
<input type="hidden" name="mec[settings][related_events]" value="0" />
|
381 |
+
<input onchange="jQuery('#mec_related_events_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][related_events]" <?php if(isset($settings['related_events']) and $settings['related_events']) echo 'checked="checked"'; ?> /> <?php _e('Display related events based on taxonomy in single event page.', 'modern-events-calendar-lite'); ?>
|
382 |
+
</label>
|
383 |
+
</div>
|
384 |
+
<div id="mec_related_events_container_toggle" class="<?php if((isset($settings['related_events']) and !$settings['related_events']) or !isset($settings['related_events'])) echo 'mec-util-hidden'; ?>">
|
385 |
+
|
386 |
+
<div class="mec-form-row" style="margin-top:20px;">
|
387 |
+
<label style="margin-right:20px;" for="mec_settings_countdown_list"><?php _e('Select Taxonomies:', 'modern-events-calendar-lite'); ?></label>
|
388 |
+
<label style="margin-right:20px;margin-bottom: 20px">
|
389 |
+
<input type="hidden" name="mec[settings][related_events_basedon_category]" value="0" />
|
390 |
+
<input value="1" type="checkbox" name="mec[settings][related_events_basedon_category]" <?php if(isset($settings['related_events_basedon_category']) and $settings['related_events_basedon_category']) echo 'checked="checked"'; ?> /> <?php _e('Category', 'modern-events-calendar-lite'); ?>
|
391 |
+
</label>
|
392 |
+
<label style="margin-right:20px;">
|
393 |
+
<input type="hidden" name="mec[settings][related_events_basedon_organizer]" value="0" />
|
394 |
+
<input value="1" type="checkbox" name="mec[settings][related_events_basedon_organizer]" <?php if(isset($settings['related_events_basedon_organizer']) and $settings['related_events_basedon_organizer']) echo 'checked="checked"'; ?> /> <?php _e('Organizer', 'modern-events-calendar-lite'); ?>
|
395 |
+
</label>
|
396 |
+
<label style="margin-right:20px;">
|
397 |
+
<input type="hidden" name="mec[settings][related_events_basedon_location]" value="0" />
|
398 |
+
<input value="1" type="checkbox" name="mec[settings][related_events_basedon_location]" <?php if(isset($settings['related_events_basedon_location']) and $settings['related_events_basedon_location']) echo 'checked="checked"'; ?> /> <?php _e('Location', 'modern-events-calendar-lite'); ?>
|
399 |
+
</label>
|
400 |
+
<?php if(isset($settings['speakers_status']) and $settings['speakers_status']) : ?>
|
401 |
+
<label style="margin-right:20px;">
|
402 |
+
<input type="hidden" name="mec[settings][related_events_basedon_speaker]" value="0" />
|
403 |
+
<input value="1" type="checkbox" name="mec[settings][related_events_basedon_speaker]" <?php if(isset($settings['related_events_basedon_speaker']) and $settings['related_events_basedon_speaker']) echo 'checked="checked"'; ?> /> <?php _e('Speaker', 'modern-events-calendar-lite'); ?>
|
404 |
+
</label>
|
405 |
+
<?php endif; ?>
|
406 |
+
<label style="margin-right:20px;">
|
407 |
+
<input type="hidden" name="mec[settings][related_events_basedon_label]" value="0" />
|
408 |
+
<input value="1" type="checkbox" name="mec[settings][related_events_basedon_label]" <?php if(isset($settings['related_events_basedon_label']) and $settings['related_events_basedon_label']) echo 'checked="checked"'; ?> /> <?php _e('Label', 'modern-events-calendar-lite'); ?>
|
409 |
+
</label>
|
410 |
+
<label style="margin-right:20px;">
|
411 |
+
<input type="hidden" name="mec[settings][related_events_basedon_tag]" value="0" />
|
412 |
+
<input value="1" type="checkbox" name="mec[settings][related_events_basedon_tag]" <?php if(isset($settings['related_events_basedon_tag']) and $settings['related_events_basedon_tag']) echo 'checked="checked"'; ?> /> <?php _e('Tag', 'modern-events-calendar-lite'); ?>
|
413 |
+
</label>
|
414 |
+
</div>
|
415 |
+
</div>
|
416 |
+
</div>
|
417 |
+
|
418 |
<div class="mec-options-fields">
|
419 |
<?php wp_nonce_field('mec_options_form'); ?>
|
420 |
<button style="display: none;" id="mec_single_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></button>
|
451 |
}, 300);
|
452 |
});
|
453 |
var hash = window.location.hash.replace('#', '');
|
454 |
+
jQuery('[data-id="'+hash+'"]').trigger('click');
|
455 |
});
|
456 |
|
457 |
jQuery(".dpr-save-btn").on('click', function(event)
|
app/features/mec/styles.php
CHANGED
@@ -53,6 +53,7 @@ $styles = $this->main->get_styles();
|
|
53 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
54 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
55 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
56 |
</li>
|
57 |
</ul>
|
58 |
</li>
|
53 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
54 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
55 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
56 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
57 |
</li>
|
58 |
</ul>
|
59 |
</li>
|
app/features/mec/styling.php
CHANGED
@@ -75,6 +75,7 @@ if(is_array($fonts))
|
|
75 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
76 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
77 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
|
|
78 |
</li>
|
79 |
</ul>
|
80 |
</li>
|
75 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
|
76 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
|
77 |
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
|
78 |
+
<a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
|
79 |
</li>
|
80 |
</ul>
|
81 |
</li>
|
app/features/mec/support-page.php
CHANGED
@@ -280,12 +280,5 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
280 |
})(jQuery);
|
281 |
</script>
|
282 |
<?php if($this->getPRO()) : ?>
|
283 |
-
<script>
|
284 |
-
var APP_ID = "w23d92wv";
|
285 |
-
|
286 |
-
window.intercomSettings = {
|
287 |
-
app_id: APP_ID
|
288 |
-
};
|
289 |
-
</script>
|
290 |
-
<script>(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic('reattach_activator');ic('update',w.intercomSettings);}else{var d=document;var i=function(){i.c(arguments);};i.q=[];i.c=function(args){i.q.push(args);};w.Intercom=i;var l=function(){var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://widget.intercom.io/widget/' + APP_ID;var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);};if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})();</script>
|
291 |
<?php endif; ?>
|
280 |
})(jQuery);
|
281 |
</script>
|
282 |
<?php if($this->getPRO()) : ?>
|
283 |
+
<script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID="4c1b818f-12d2-4b87-a045-d843628eb07c";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
<?php endif; ?>
|
app/features/organizers.php
CHANGED
@@ -74,6 +74,7 @@ class MEC_feature_organizers extends MEC_base
|
|
74 |
'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label),
|
75 |
'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label),
|
76 |
'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label),
|
|
|
77 |
),
|
78 |
'rewrite'=>array('slug'=>'events-organizer'),
|
79 |
'public'=>false,
|
@@ -121,6 +122,7 @@ class MEC_feature_organizers extends MEC_base
|
|
121 |
<input type="text" placeholder="<?php esc_attr_e('Use this field to link organizer to other user profile pages', 'modern-events-calendar-lite'); ?>" name="url" id="mec_url" value="<?php echo $url; ?>" />
|
122 |
</td>
|
123 |
</tr>
|
|
|
124 |
<tr class="form-field">
|
125 |
<th scope="row" valign="top">
|
126 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
@@ -154,6 +156,7 @@ class MEC_feature_organizers extends MEC_base
|
|
154 |
<label for="mec_url"><?php _e('Link to organizer page', 'modern-events-calendar-lite'); ?></label>
|
155 |
<input type="text" name="url" placeholder="<?php esc_attr_e('Use this field to link organizer to other user profile pages', 'modern-events-calendar-lite'); ?>" id="mec_url" value="" />
|
156 |
</div>
|
|
|
157 |
<div class="form-field">
|
158 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
159 |
<div id="mec_thumbnail_img"></div>
|
@@ -180,6 +183,8 @@ class MEC_feature_organizers extends MEC_base
|
|
180 |
update_term_meta($term_id, 'email', $email);
|
181 |
update_term_meta($term_id, 'url', $url);
|
182 |
update_term_meta($term_id, 'thumbnail', $thumbnail);
|
|
|
|
|
183 |
}
|
184 |
|
185 |
/**
|
74 |
'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label),
|
75 |
'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label),
|
76 |
'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label),
|
77 |
+
'back_to_items'=>sprintf(__('← Back to %s', 'modern-events-calendar-lite'), $plural_label),
|
78 |
),
|
79 |
'rewrite'=>array('slug'=>'events-organizer'),
|
80 |
'public'=>false,
|
122 |
<input type="text" placeholder="<?php esc_attr_e('Use this field to link organizer to other user profile pages', 'modern-events-calendar-lite'); ?>" name="url" id="mec_url" value="<?php echo $url; ?>" />
|
123 |
</td>
|
124 |
</tr>
|
125 |
+
<?php do_action( 'mec_edit_organizer_extra_fields' , $term ); ?>
|
126 |
<tr class="form-field">
|
127 |
<th scope="row" valign="top">
|
128 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
156 |
<label for="mec_url"><?php _e('Link to organizer page', 'modern-events-calendar-lite'); ?></label>
|
157 |
<input type="text" name="url" placeholder="<?php esc_attr_e('Use this field to link organizer to other user profile pages', 'modern-events-calendar-lite'); ?>" id="mec_url" value="" />
|
158 |
</div>
|
159 |
+
<?php do_action( 'mec_add_organizer_extra_fields' ); ?>
|
160 |
<div class="form-field">
|
161 |
<label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
|
162 |
<div id="mec_thumbnail_img"></div>
|
183 |
update_term_meta($term_id, 'email', $email);
|
184 |
update_term_meta($term_id, 'url', $url);
|
185 |
update_term_meta($term_id, 'thumbnail', $thumbnail);
|
186 |
+
|
187 |
+
do_action( 'mec_save_organizer_extra_fields' , $term_id );
|
188 |
}
|
189 |
|
190 |
/**
|
app/features/search.php
CHANGED
@@ -39,22 +39,22 @@ class MEC_feature_search extends MEC_base
|
|
39 |
{
|
40 |
// search Shortcode
|
41 |
$this->factory->shortcode('MEC_search_bar', array($this, 'search'));
|
42 |
-
$this->factory->filter(
|
43 |
-
|
44 |
}
|
45 |
|
46 |
/**
|
47 |
* Show taxonomy
|
48 |
-
* @param
|
49 |
-
* @
|
|
|
50 |
*/
|
51 |
-
public function show_taxonomy($taxonomy
|
52 |
{
|
53 |
$terms = get_terms($taxonomy, array('hide_empty' => false));
|
54 |
$out = '';
|
55 |
|
56 |
-
if
|
57 |
-
$taxonomy_name = (
|
58 |
|
59 |
$out .= '<div class="mec-dropdown-search"><i class="mec-sl-'.$icon.'"></i>';
|
60 |
$args = array(
|
@@ -71,6 +71,7 @@ class MEC_feature_search extends MEC_base
|
|
71 |
'name' => $taxonomy_name,
|
72 |
'taxonomy' => $taxonomy,
|
73 |
);
|
|
|
74 |
$out .= wp_dropdown_categories($args);
|
75 |
$out .= '</div>';
|
76 |
|
@@ -79,17 +80,19 @@ class MEC_feature_search extends MEC_base
|
|
79 |
|
80 |
/**
|
81 |
* Search Filter
|
82 |
-
* @param
|
83 |
* @return string
|
84 |
*/
|
85 |
-
public function mec_search_filter(
|
86 |
{
|
87 |
-
if
|
88 |
-
|
89 |
-
|
|
|
|
|
90 |
|
91 |
-
$mec_quesries =
|
92 |
-
if
|
93 |
{
|
94 |
$mec_quesries[] = array(
|
95 |
'taxonomy' => 'mec_location',
|
@@ -99,7 +102,7 @@ class MEC_feature_search extends MEC_base
|
|
99 |
);
|
100 |
}
|
101 |
|
102 |
-
if
|
103 |
{
|
104 |
$mec_quesries[] = array(
|
105 |
'taxonomy' => 'mec_category',
|
@@ -109,7 +112,7 @@ class MEC_feature_search extends MEC_base
|
|
109 |
);
|
110 |
}
|
111 |
|
112 |
-
if
|
113 |
{
|
114 |
$mec_quesries[] = array(
|
115 |
'taxonomy' => 'mec_organizer',
|
@@ -119,7 +122,7 @@ class MEC_feature_search extends MEC_base
|
|
119 |
);
|
120 |
}
|
121 |
|
122 |
-
if
|
123 |
{
|
124 |
$mec_quesries[] = array(
|
125 |
'taxonomy' => 'mec_speaker',
|
@@ -129,7 +132,7 @@ class MEC_feature_search extends MEC_base
|
|
129 |
);
|
130 |
}
|
131 |
|
132 |
-
if
|
133 |
{
|
134 |
$mec_quesries[] = array(
|
135 |
'taxonomy' => 'post_tag',
|
@@ -139,7 +142,7 @@ class MEC_feature_search extends MEC_base
|
|
139 |
);
|
140 |
}
|
141 |
|
142 |
-
if
|
143 |
{
|
144 |
$mec_quesries[] = array(
|
145 |
'taxonomy' => 'mec_label',
|
@@ -149,16 +152,14 @@ class MEC_feature_search extends MEC_base
|
|
149 |
);
|
150 |
}
|
151 |
|
152 |
-
|
153 |
-
$query->set( '
|
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()
|
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 |
* Show taxonomy
|
47 |
+
* @param string $taxonomy
|
48 |
+
* @param string $icon
|
49 |
+
* @return boolean|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 false;
|
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(
|
71 |
'name' => $taxonomy_name,
|
72 |
'taxonomy' => $taxonomy,
|
73 |
);
|
74 |
+
|
75 |
$out .= wp_dropdown_categories($args);
|
76 |
$out .= '</div>';
|
77 |
|
80 |
|
81 |
/**
|
82 |
* Search Filter
|
83 |
+
* @param object $query
|
84 |
* @return string
|
85 |
*/
|
86 |
+
public function mec_search_filter($query)
|
87 |
{
|
88 |
+
// Do not change Query if it is not search page!
|
89 |
+
if(!$query->is_search) return $query;
|
90 |
+
|
91 |
+
// Do not change Query if it is not a search related to MEC!
|
92 |
+
if($query->get('post_type') != 'mec-events') return $query;
|
93 |
|
94 |
+
$mec_quesries = array();
|
95 |
+
if(!empty($_GET['location']))
|
96 |
{
|
97 |
$mec_quesries[] = array(
|
98 |
'taxonomy' => 'mec_location',
|
102 |
);
|
103 |
}
|
104 |
|
105 |
+
if(!empty($_GET['category']))
|
106 |
{
|
107 |
$mec_quesries[] = array(
|
108 |
'taxonomy' => 'mec_category',
|
112 |
);
|
113 |
}
|
114 |
|
115 |
+
if(!empty($_GET['organizer']))
|
116 |
{
|
117 |
$mec_quesries[] = array(
|
118 |
'taxonomy' => 'mec_organizer',
|
122 |
);
|
123 |
}
|
124 |
|
125 |
+
if(!empty($_GET['speaker']))
|
126 |
{
|
127 |
$mec_quesries[] = array(
|
128 |
'taxonomy' => 'mec_speaker',
|
132 |
);
|
133 |
}
|
134 |
|
135 |
+
if(!empty($_GET['tag']))
|
136 |
{
|
137 |
$mec_quesries[] = array(
|
138 |
'taxonomy' => 'post_tag',
|
142 |
);
|
143 |
}
|
144 |
|
145 |
+
if(!empty($_GET['label']))
|
146 |
{
|
147 |
$mec_quesries[] = array(
|
148 |
'taxonomy' => 'mec_label',
|
152 |
);
|
153 |
}
|
154 |
|
155 |
+
$query->set('tax_query', $mec_quesries);
|
156 |
+
$query->set('post_type', array('post', 'mec-events'));
|
|
|
157 |
|
158 |
return $query;
|
159 |
}
|
160 |
|
161 |
/**
|
162 |
* Show user search bar
|
|
|
163 |
* @return string
|
164 |
*/
|
165 |
public function search()
|
app/features/search_bar/search_bar.php
CHANGED
@@ -5,27 +5,27 @@ defined('MECEXEC') or die();
|
|
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 |
-
|
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 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
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="'.
|
28 |
-
|
29 |
$output .= '</form></div>';
|
30 |
|
31 |
echo $output;
|
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 |
+
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')
|
9 |
+
{
|
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 |
+
}
|
19 |
+
|
20 |
+
if($settings['search_bar_text_field'] == '1' )
|
21 |
+
{
|
22 |
+
$output .= '<div class="mec-text-input-search">
|
23 |
<i class="mec-sl-magnifier"></i>
|
24 |
<input type="search" value="" id="s" name="s" />
|
25 |
</div>';
|
26 |
}
|
27 |
|
28 |
+
$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">';
|
|
|
29 |
$output .= '</form></div>';
|
30 |
|
31 |
echo $output;
|
app/features/speakers.php
CHANGED
@@ -43,6 +43,9 @@ class MEC_feature_speakers extends MEC_base
|
|
43 |
$this->factory->action('edited_mec_speaker', array($this, 'save_metadata'));
|
44 |
$this->factory->action('created_mec_speaker', array($this, 'save_metadata'));
|
45 |
|
|
|
|
|
|
|
46 |
$this->factory->filter('manage_edit-mec_speaker_columns', array($this, 'filter_columns'));
|
47 |
$this->factory->filter('manage_mec_speaker_custom_column', array($this, 'filter_columns_content'), 10, 3);
|
48 |
}
|
@@ -72,6 +75,7 @@ class MEC_feature_speakers extends MEC_base
|
|
72 |
'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label),
|
73 |
'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label),
|
74 |
'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label),
|
|
|
75 |
),
|
76 |
'rewrite'=>array('slug'=>'events-speaker'),
|
77 |
'public'=>false,
|
@@ -283,4 +287,52 @@ class MEC_feature_speakers extends MEC_base
|
|
283 |
|
284 |
return $content;
|
285 |
}
|
286 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
$this->factory->action('edited_mec_speaker', array($this, 'save_metadata'));
|
44 |
$this->factory->action('created_mec_speaker', array($this, 'save_metadata'));
|
45 |
|
46 |
+
$this->factory->action('wp_ajax_speaker_adding', array($this, 'fes_speaker_adding'));
|
47 |
+
$this->factory->action('wp_ajax_nopriv_speaker_adding', array($this, 'fes_speaker_adding'));
|
48 |
+
|
49 |
$this->factory->filter('manage_edit-mec_speaker_columns', array($this, 'filter_columns'));
|
50 |
$this->factory->filter('manage_mec_speaker_custom_column', array($this, 'filter_columns_content'), 10, 3);
|
51 |
}
|
75 |
'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label),
|
76 |
'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label),
|
77 |
'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label),
|
78 |
+
'back_to_items'=>sprintf(__('← Back to %s', 'modern-events-calendar-lite'), $plural_label),
|
79 |
),
|
80 |
'rewrite'=>array('slug'=>'events-speaker'),
|
81 |
'public'=>false,
|
287 |
|
288 |
return $content;
|
289 |
}
|
290 |
+
|
291 |
+
/**
|
292 |
+
* Adding new speaker
|
293 |
+
* @author Webnus <info@webnus.biz>
|
294 |
+
* @return string json
|
295 |
+
*/
|
296 |
+
public function fes_speaker_adding()
|
297 |
+
{
|
298 |
+
$request = $this->getRequest();
|
299 |
+
$content = $request->getVar('content', NULL);
|
300 |
+
$key = $request->getVar('key', NULL);
|
301 |
+
|
302 |
+
$content = wp_strip_all_tags($content);
|
303 |
+
$content = sanitize_text_field($content);
|
304 |
+
$key = intval($key);
|
305 |
+
|
306 |
+
if(!trim($content))
|
307 |
+
{
|
308 |
+
echo '<p class="mec-error" id="mec-speaker-error-' . $key . '">' . __('Sorry, You must insert speaker name!', 'modern-events-calendar-lite') . '</p>';
|
309 |
+
exit;
|
310 |
+
}
|
311 |
+
|
312 |
+
$content = explode(',', $content);
|
313 |
+
|
314 |
+
foreach($content as $term)
|
315 |
+
{
|
316 |
+
if(term_exists($term, 'mec_speaker'))
|
317 |
+
{
|
318 |
+
echo '<p class="mec-error" id="mec-speaker-error-' . $key . '">' . __("Sorry, {$term} already exists!", 'modern-events-calendar-lite') . '</p>';
|
319 |
+
exit;
|
320 |
+
}
|
321 |
+
}
|
322 |
+
|
323 |
+
foreach($content as $term) wp_insert_term(trim($term), 'mec_speaker');
|
324 |
+
|
325 |
+
$speakers = '';
|
326 |
+
$speaker_terms = get_terms(array('taxonomy'=>'mec_speaker', 'hide_empty'=>false));
|
327 |
+
foreach($speaker_terms as $speaker_term)
|
328 |
+
{
|
329 |
+
$speakers .= '<label for="mec_fes_speakers'.$speaker_term->term_id.'">
|
330 |
+
<input type="checkbox" name="mec[speakers]['.$speaker_term->term_id.']" id="mec_fes_speakers'.$speaker_term->term_id.'" value="1">
|
331 |
+
'.$speaker_term->name.'
|
332 |
+
</label>';
|
333 |
+
}
|
334 |
+
|
335 |
+
echo $speakers;
|
336 |
+
exit;
|
337 |
+
}
|
338 |
+
}
|
app/libraries/envato.php
CHANGED
@@ -21,7 +21,7 @@ class MEC_envato extends MEC_base
|
|
21 |
/**
|
22 |
* The plugin url
|
23 |
*/
|
24 |
-
public $itemurl = '
|
25 |
|
26 |
/**
|
27 |
* User for cashing directory
|
@@ -200,27 +200,84 @@ class MEC_envato extends MEC_base
|
|
200 |
*/
|
201 |
public function check_info($false, $action, $arg)
|
202 |
{
|
203 |
-
|
|
|
|
|
|
|
|
|
|
|
204 |
{
|
205 |
-
$
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
|
217 |
-
|
218 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
}
|
220 |
|
221 |
return false;
|
222 |
}
|
223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
/**
|
225 |
* Return details from envato
|
226 |
* @author Webnus <info@webnus.biz>
|
21 |
/**
|
22 |
* The plugin url
|
23 |
*/
|
24 |
+
public $itemurl = '';
|
25 |
|
26 |
/**
|
27 |
* User for cashing directory
|
200 |
*/
|
201 |
public function check_info($false, $action, $arg)
|
202 |
{
|
203 |
+
$dl_link = !is_null($this->get_MEC_info('dl')) ? $this->set_update_path($this->get_MEC_info('dl')) : NULL;
|
204 |
+
$version = json_decode(json_encode($this->get_MEC_info('version')->version), true);
|
205 |
+
$data_url = 'https://webnus.net/modern-events-calendar/addons-api/addons-api.json';
|
206 |
+
|
207 |
+
$get_data = file_get_contents($data_url);
|
208 |
+
if( $get_data !== false AND !empty($get_data) )
|
209 |
{
|
210 |
+
$obj = json_decode($get_data);
|
211 |
+
$i = count((array)$obj);
|
212 |
+
}
|
213 |
+
elseif ( function_exists('curl_version') )
|
214 |
+
{
|
215 |
+
$ch = curl_init();
|
216 |
+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
217 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
218 |
+
curl_setopt($ch, CURLOPT_URL, $data_url);
|
219 |
+
$result = curl_exec($ch);
|
220 |
+
curl_close($ch);
|
221 |
+
$obj = json_decode($result);
|
222 |
+
$i = count((array)$obj);
|
223 |
+
} else {
|
224 |
+
$obj = '';
|
225 |
+
}
|
226 |
+
$addons = '';
|
227 |
+
if ( !empty( $obj ) ) :
|
228 |
+
$addons .= '<div class="mec-details-addons-container">';
|
229 |
+
foreach ($obj as $key => $value) :
|
230 |
+
$addons .= '
|
231 |
+
<div class="mec-details-addons-wrap">
|
232 |
+
<a href="https://webnus.net/modern-events-calendar/addons/" target="_blank"><img src="'.$value->img.'" /></a>
|
233 |
+
<div class="mec-details-addons-title"><a href="https://webnus.net/modern-events-calendar/addons/" target="_blank"><span>'. esc_html__($value->name) .'</span></a></div>
|
234 |
+
<p>'. esc_html__($value->desc) .'</p>
|
235 |
+
</div>
|
236 |
|
237 |
+
';
|
238 |
+
endforeach;
|
239 |
+
$addons .= '</div>';
|
240 |
+
endif;
|
241 |
+
|
242 |
+
if(isset($arg->slug) and $arg->slug === $this->slug)
|
243 |
+
{
|
244 |
+
$information = $this->getRemote_information();
|
245 |
+
$information = json_decode($information);
|
246 |
+
|
247 |
+
$information->name = 'Modern Events Calendar';
|
248 |
+
$information->slug = 'modern-events-calendar';
|
249 |
+
$information->plugin_name = 'Modern Events Calendar';
|
250 |
+
$information->version = $version;
|
251 |
+
$information->download_link = $this->get_update_path();
|
252 |
+
$information->banners['low'] = 'https://ps.w.org/modern-events-calendar-lite/assets/banner-772x250.png?rev=1912767';
|
253 |
+
$information->tested = '5.2.2';
|
254 |
+
$information->active_installs = '10000';
|
255 |
+
$information->sections = (array) $information->sections;
|
256 |
+
unset($information->sections['installation']);
|
257 |
+
unset($information->sections['faq']);
|
258 |
+
unset($information->sections['screenshots']);
|
259 |
+
|
260 |
+
$information->sections['addons'] = $addons;
|
261 |
+
|
262 |
+
return $information;
|
263 |
}
|
264 |
|
265 |
return false;
|
266 |
}
|
267 |
|
268 |
+
/**
|
269 |
+
* Get information about the remote version
|
270 |
+
* @return bool|object
|
271 |
+
*/
|
272 |
+
public function getRemote_information()
|
273 |
+
{
|
274 |
+
$request = wp_remote_post('https://api.wordpress.org/plugins/info/1.0/modern-events-calendar-lite.json', array( 'timeout' => 30 ));
|
275 |
+
if (!is_wp_error($request) || wp_remote_retrieve_response_code($request) === 200) {
|
276 |
+
return $request['body'];
|
277 |
+
}
|
278 |
+
return false;
|
279 |
+
}
|
280 |
+
|
281 |
/**
|
282 |
* Return details from envato
|
283 |
* @author Webnus <info@webnus.biz>
|
app/libraries/main.php
CHANGED
@@ -1118,7 +1118,8 @@ class MEC_main extends MEC_base
|
|
1118 |
*/
|
1119 |
public function get_marker_lightbox($event, $date_format = 'M d Y')
|
1120 |
{
|
1121 |
-
|
|
|
1122 |
|
1123 |
$content = '
|
1124 |
<div class="mec-wrap">
|
@@ -2573,7 +2574,7 @@ class MEC_main extends MEC_base
|
|
2573 |
<span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
|
2574 |
<div>
|
2575 |
<input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="agreement" />
|
2576 |
-
<input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? $values['label'] : 'I agree with %s').'" /><p class="description">'.__('Instead of %s, the page title with a link will be show.', 'modern-events-calendar-lite').'</p>
|
2577 |
<div>
|
2578 |
<label for="mec_reg_fields_'.$key.'_page">'.__('Agreement Page', 'modern-events-calendar-lite').'</label>
|
2579 |
<select id="mec_reg_fields_'.$key.'_page" name="mec[reg_fields]['.$key.'][page]">';
|
@@ -3825,9 +3826,17 @@ class MEC_main extends MEC_base
|
|
3825 |
|
3826 |
$organizer_id = $term['term_id'];
|
3827 |
if(!$organizer_id) return false;
|
3828 |
-
|
3829 |
-
|
3830 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3831 |
$url = (isset($organizer['url']) and trim($organizer['url'])) ? $organizer['url'] : '';
|
3832 |
$thumbnail = isset($organizer['thumbnail']) ? $organizer['thumbnail'] : '';
|
3833 |
|
@@ -4960,62 +4969,84 @@ class MEC_main extends MEC_base
|
|
4960 |
/**
|
4961 |
* User limited for booking a event
|
4962 |
* @author Webnus <info@webnus.biz>
|
4963 |
-
* @param string $
|
4964 |
* @param array $ticket_info
|
4965 |
-
* @param
|
4966 |
* @return array|boolean
|
4967 |
*/
|
4968 |
-
public function booking_permitted($
|
4969 |
{
|
4970 |
if(!is_array($ticket_info) or is_array($ticket_info) and count($ticket_info) < 2) return false;
|
4971 |
|
4972 |
-
$
|
4973 |
-
$
|
4974 |
-
$user_id =
|
4975 |
|
4976 |
-
|
4977 |
-
|
4978 |
-
|
|
|
|
|
4979 |
|
4980 |
-
$
|
4981 |
-
$
|
4982 |
-
$book_info = array($ticket_id => array($booking_date => $count));
|
4983 |
|
4984 |
$permission = true;
|
4985 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4986 |
|
4987 |
-
|
4988 |
-
if(
|
4989 |
-
{
|
4990 |
-
$tickets_info[$user_id] = $book_info;
|
4991 |
-
}
|
4992 |
-
else
|
4993 |
{
|
4994 |
-
|
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 |
-
|
5002 |
-
|
5003 |
-
|
5004 |
-
|
5005 |
-
|
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 |
-
$
|
5013 |
-
|
5014 |
-
|
5015 |
-
|
5016 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5017 |
|
5018 |
-
|
5019 |
-
return $permission ? update_option("mec_tickets_info_{$user_id}", $tickets_info, false) : $permission;
|
5020 |
}
|
5021 |
}
|
1118 |
*/
|
1119 |
public function get_marker_lightbox($event, $date_format = 'M d Y')
|
1120 |
{
|
1121 |
+
// $infowindow_thumb = trim($event->data->thumbnails['thumbnail']) ? '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>' : '';
|
1122 |
+
$infowindow_thumb = trim($event->data->featured_image['thumbnail']) ? '<div class="mec-event-image"><img src="'.$event->data->featured_image['thumbnail'].'" alt="'.$event->data->title.'" /></div>' : '';
|
1123 |
|
1124 |
$content = '
|
1125 |
<div class="mec-wrap">
|
2574 |
<span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
|
2575 |
<div>
|
2576 |
<input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="agreement" />
|
2577 |
+
<input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? stripslashes($values['label']) : 'I agree with %s').'" /><p class="description">'.__('Instead of %s, the page title with a link will be show.', 'modern-events-calendar-lite').'</p>
|
2578 |
<div>
|
2579 |
<label for="mec_reg_fields_'.$key.'_page">'.__('Agreement Page', 'modern-events-calendar-lite').'</label>
|
2580 |
<select id="mec_reg_fields_'.$key.'_page" name="mec[reg_fields]['.$key.'][page]">';
|
3826 |
|
3827 |
$organizer_id = $term['term_id'];
|
3828 |
if(!$organizer_id) return false;
|
3829 |
+
|
3830 |
+
if ( isset($organizer['tel']) && strpos($organizer['tel'], '@') !== false )
|
3831 |
+
{
|
3832 |
+
// Just for EventON
|
3833 |
+
$tel = '';
|
3834 |
+
$email = (isset($organizer['tel']) and trim($organizer['tel'])) ? $organizer['tel'] : '';
|
3835 |
+
} else {
|
3836 |
+
$tel = (isset($organizer['tel']) and trim($organizer['tel'])) ? $organizer['tel'] : '';
|
3837 |
+
$email = (isset($organizer['email']) and trim($organizer['email'])) ? $organizer['email'] : '';
|
3838 |
+
}
|
3839 |
+
|
3840 |
$url = (isset($organizer['url']) and trim($organizer['url'])) ? $organizer['url'] : '';
|
3841 |
$thumbnail = isset($organizer['thumbnail']) ? $organizer['thumbnail'] : '';
|
3842 |
|
4969 |
/**
|
4970 |
* User limited for booking a event
|
4971 |
* @author Webnus <info@webnus.biz>
|
4972 |
+
* @param string $user_email
|
4973 |
* @param array $ticket_info
|
4974 |
+
* @param integer $limit
|
4975 |
* @return array|boolean
|
4976 |
*/
|
4977 |
+
public function booking_permitted($user_email, $ticket_info = array(), $limit)
|
4978 |
{
|
4979 |
if(!is_array($ticket_info) or is_array($ticket_info) and count($ticket_info) < 2) return false;
|
4980 |
|
4981 |
+
$user_email = sanitize_email($user_email);
|
4982 |
+
$user = get_user_by('email', $user_email);
|
4983 |
+
$user_id = (isset($user->data) and isset($user->data->ID)) ? $user->data->ID : 0;
|
4984 |
|
4985 |
+
// It's the first booking of this email
|
4986 |
+
if(!$user_id) return true;
|
4987 |
+
|
4988 |
+
$event_id = isset($ticket_info['event_id']) ? intval($ticket_info['event_id']) : 0;
|
4989 |
+
$count = isset($ticket_info['count']) ? intval($ticket_info['count']) : 0;
|
4990 |
|
4991 |
+
$date = isset($ticket_info['date']) ? $ticket_info['date'] : '';
|
4992 |
+
list($year, $month, $day) = explode('-', $date);
|
|
|
4993 |
|
4994 |
$permission = true;
|
4995 |
+
$query = new WP_Query(array
|
4996 |
+
(
|
4997 |
+
'post_type'=>$this->get_book_post_type(),
|
4998 |
+
'author'=>$user_id,
|
4999 |
+
'posts_per_page'=>-1,
|
5000 |
+
'post_status'=>array('publish', 'pending', 'draft', 'future', 'private'),
|
5001 |
+
'year'=>$year,
|
5002 |
+
'monthnum'=>$month,
|
5003 |
+
'day'=>$day,
|
5004 |
+
'meta_query'=>array
|
5005 |
+
(
|
5006 |
+
array('key'=>'mec_event_id', 'value'=>$event_id, 'compare'=>'='),
|
5007 |
+
array('key'=>'mec_verified', 'value'=>'-1', 'compare'=>'!='), // Don't include canceled bookings
|
5008 |
+
array('key'=>'mec_confirmed', 'value'=>'-1', 'compare'=>'!='), // Don't include rejected bookings
|
5009 |
+
)
|
5010 |
+
));
|
5011 |
|
5012 |
+
$bookings = 0;
|
5013 |
+
if($query->have_posts())
|
|
|
|
|
|
|
|
|
5014 |
{
|
5015 |
+
while($query->have_posts())
|
|
|
|
|
|
|
|
|
|
|
5016 |
{
|
5017 |
+
$query->the_post();
|
5018 |
+
|
5019 |
+
$ticket_ids_string = trim(get_post_meta(get_the_ID(), 'mec_ticket_id', true), ', ');
|
5020 |
+
$ticket_ids_count = count(explode(',', $ticket_ids_string));
|
5021 |
+
|
5022 |
+
$bookings += $ticket_ids_count;
|
|
|
|
|
5023 |
}
|
5024 |
}
|
5025 |
|
5026 |
+
if(($bookings + $count) > $limit) $permission = false;
|
5027 |
+
|
5028 |
+
return $permission;
|
5029 |
+
}
|
5030 |
+
|
5031 |
+
/**
|
5032 |
+
* Check Has Sold Out Ticket
|
5033 |
+
* @author Webnus <info@webnus.biz>
|
5034 |
+
* @param string $user_id
|
5035 |
+
* @param array $ticket_info
|
5036 |
+
* @param string $mode
|
5037 |
+
* @return boolean
|
5038 |
+
*/
|
5039 |
+
public function is_soldout($event_id, $event_start_date)
|
5040 |
+
{
|
5041 |
+
if(func_num_args() < 2) return;
|
5042 |
+
|
5043 |
+
$book = $this->getBook();
|
5044 |
+
|
5045 |
+
$event_id = (isset($event_id)) ? intval($event_id) : 0;
|
5046 |
+
$event_start_date = (isset($event_start_date) and trim($event_start_date)) ? trim($event_start_date) : '';
|
5047 |
+
|
5048 |
+
$is_soldout = $book->get_tickets_availability($event_id, $event_start_date);
|
5049 |
|
5050 |
+
return (isset($is_soldout) and current($is_soldout) === 0) ? true : false;
|
|
|
5051 |
}
|
5052 |
}
|
app/libraries/render.php
CHANGED
@@ -23,6 +23,7 @@ class MEC_render extends MEC_base
|
|
23 |
// Add image size for list and carousel
|
24 |
add_image_size('thumblist', '300', '300', true);
|
25 |
add_image_size('meccarouselthumb', '474', '324', true);
|
|
|
26 |
|
27 |
// Import MEC skin class
|
28 |
MEC::import('app.libraries.skins');
|
@@ -467,6 +468,7 @@ class MEC_render extends MEC_base
|
|
467 |
// Thumbnails
|
468 |
$thumbnail = get_the_post_thumbnail($post_id, 'thumbnail', array('data-mec-postid'=>$post_id));
|
469 |
$thumblist = get_the_post_thumbnail($post_id, 'thumblist' , array('data-mec-postid'=>$post_id));
|
|
|
470 |
$meccarouselthumb = get_the_post_thumbnail($post_id, 'meccarouselthumb' , array('data-mec-postid'=>$post_id));
|
471 |
$medium = get_the_post_thumbnail($post_id, 'medium', array('data-mec-postid'=>$post_id));
|
472 |
$large = get_the_post_thumbnail($post_id, 'large', array('data-mec-postid'=>$post_id));
|
@@ -478,6 +480,7 @@ class MEC_render extends MEC_base
|
|
478 |
$data->thumbnails = array(
|
479 |
'thumbnail'=>$thumbnail,
|
480 |
'thumblist'=>$thumblist,
|
|
|
481 |
'meccarouselthumb'=>$meccarouselthumb,
|
482 |
'medium'=>$medium,
|
483 |
'large'=>$large,
|
@@ -488,6 +491,7 @@ class MEC_render extends MEC_base
|
|
488 |
$data->featured_image = array(
|
489 |
'thumbnail'=>esc_url(get_the_post_thumbnail_url($post_id, 'thumbnail')),
|
490 |
'thumblist'=>esc_url(get_the_post_thumbnail_url($post_id, 'thumblist' )),
|
|
|
491 |
'meccarouselthumb'=>esc_url(get_the_post_thumbnail_url($post_id, 'meccarouselthumb')),
|
492 |
'medium'=>esc_url(get_the_post_thumbnail_url($post_id, 'medium')),
|
493 |
'large'=>esc_url(get_the_post_thumbnail_url($post_id, 'large')),
|
23 |
// Add image size for list and carousel
|
24 |
add_image_size('thumblist', '300', '300', true);
|
25 |
add_image_size('meccarouselthumb', '474', '324', true);
|
26 |
+
add_image_size('gridsquare', '391', '260', true);
|
27 |
|
28 |
// Import MEC skin class
|
29 |
MEC::import('app.libraries.skins');
|
468 |
// Thumbnails
|
469 |
$thumbnail = get_the_post_thumbnail($post_id, 'thumbnail', array('data-mec-postid'=>$post_id));
|
470 |
$thumblist = get_the_post_thumbnail($post_id, 'thumblist' , array('data-mec-postid'=>$post_id));
|
471 |
+
$gridsquare = get_the_post_thumbnail($post_id, 'gridsquare' , array('data-mec-postid'=>$post_id));
|
472 |
$meccarouselthumb = get_the_post_thumbnail($post_id, 'meccarouselthumb' , array('data-mec-postid'=>$post_id));
|
473 |
$medium = get_the_post_thumbnail($post_id, 'medium', array('data-mec-postid'=>$post_id));
|
474 |
$large = get_the_post_thumbnail($post_id, 'large', array('data-mec-postid'=>$post_id));
|
480 |
$data->thumbnails = array(
|
481 |
'thumbnail'=>$thumbnail,
|
482 |
'thumblist'=>$thumblist,
|
483 |
+
'gridsquare'=>$gridsquare,
|
484 |
'meccarouselthumb'=>$meccarouselthumb,
|
485 |
'medium'=>$medium,
|
486 |
'large'=>$large,
|
491 |
$data->featured_image = array(
|
492 |
'thumbnail'=>esc_url(get_the_post_thumbnail_url($post_id, 'thumbnail')),
|
493 |
'thumblist'=>esc_url(get_the_post_thumbnail_url($post_id, 'thumblist' )),
|
494 |
+
'gridsquare'=>esc_url(get_the_post_thumbnail_url($post_id, 'gridsquare' )),
|
495 |
'meccarouselthumb'=>esc_url(get_the_post_thumbnail_url($post_id, 'meccarouselthumb')),
|
496 |
'medium'=>esc_url(get_the_post_thumbnail_url($post_id, 'medium')),
|
497 |
'large'=>esc_url(get_the_post_thumbnail_url($post_id, 'large')),
|
app/libraries/skins.php
CHANGED
@@ -669,6 +669,13 @@ class MEC_skins extends MEC_base
|
|
669 |
$i++;
|
670 |
}
|
671 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
// Set found events
|
673 |
$this->found = $found;
|
674 |
|
@@ -737,7 +744,7 @@ class MEC_skins extends MEC_base
|
|
737 |
// If no fields specified
|
738 |
if(!count($this->sf_options)) return '';
|
739 |
|
740 |
-
$fields = $end_div = '';
|
741 |
$first_row = 'not-started';
|
742 |
$display_form = array();
|
743 |
foreach($this->sf_options as $field=>$options)
|
@@ -746,22 +753,23 @@ class MEC_skins extends MEC_base
|
|
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 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
$
|
760 |
-
|
761 |
-
|
762 |
-
|
|
|
|
|
763 |
}
|
764 |
-
|
765 |
$form = '';
|
766 |
if(trim($fields) && ( in_array('dropdown', $display_form ) || in_array('text_input', $display_form ) ) ) $form .= '<div id="mec_search_form_'.$this->id.'" class="mec-search-form mec-totalcal-box">'.$fields.'</div>';
|
767 |
|
669 |
$i++;
|
670 |
}
|
671 |
|
672 |
+
// Set Offset for Last Page
|
673 |
+
if($found < $this->limit)
|
674 |
+
{
|
675 |
+
// Next Offset
|
676 |
+
$this->next_offset = $found;
|
677 |
+
}
|
678 |
+
|
679 |
// Set found events
|
680 |
$this->found = $found;
|
681 |
|
744 |
// If no fields specified
|
745 |
if(!count($this->sf_options)) return '';
|
746 |
|
747 |
+
$display_style = $fields = $end_div = '';
|
748 |
$first_row = 'not-started';
|
749 |
$display_form = array();
|
750 |
foreach($this->sf_options as $field=>$options)
|
753 |
$display_form[] = $options['type'];
|
754 |
$fields_array = array('category', 'location', 'organizer', 'speaker', 'tag', 'label');
|
755 |
$fields_array = apply_filters( 'mec_filter_fields_search_array', $fields_array );
|
756 |
+
if(in_array($field,$fields_array) and $first_row == 'not-started')
|
757 |
+
{
|
758 |
+
$first_row = 'started';
|
759 |
+
if ( $this->sf_options['category']['type'] != 'dropdown' and $this->sf_options['location']['type'] != 'dropdown' and $this->sf_options['organizer']['type'] != 'dropdown' and $this->sf_options['speaker']['type'] != 'dropdown' and $this->sf_options['tag']['type'] != 'dropdown' and $this->sf_options['label']['type'] != 'dropdown' )
|
760 |
+
{
|
761 |
+
$display_style = 'style="display: none;"';
|
762 |
+
}
|
763 |
+
$fields .= '<div class="mec-dropdown-wrap" ' . $display_style . '>';
|
764 |
+
$end_div = '</div>';
|
765 |
+
}
|
766 |
+
if(!in_array($field, $fields_array) and $first_row == 'started')
|
767 |
+
{
|
768 |
+
$first_row = 'finished';
|
769 |
+
$fields .= '</div>';
|
770 |
+
}
|
771 |
+
$fields .= $this->sf_search_field($field, $options);
|
772 |
}
|
|
|
773 |
$form = '';
|
774 |
if(trim($fields) && ( in_array('dropdown', $display_form ) || in_array('text_input', $display_form ) ) ) $form .= '<div id="mec_search_form_'.$this->id.'" class="mec-search-form mec-totalcal-box">'.$fields.'</div>';
|
775 |
|
app/modules/booking/steps/checkout.php
CHANGED
@@ -10,6 +10,13 @@ foreach($gateways as $gateway)
|
|
10 |
{
|
11 |
if(!$gateway->enabled()) continue;
|
12 |
$active_gateways[] = $gateway;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
}
|
14 |
?>
|
15 |
<div id="mec_book_payment_form">
|
10 |
{
|
11 |
if(!$gateway->enabled()) continue;
|
12 |
$active_gateways[] = $gateway;
|
13 |
+
|
14 |
+
// When Stripe Connect is enabled and organizer is connected then skip other gateways
|
15 |
+
if($gateway->id() == 7 and get_user_meta(get_post_field('post_author', $event_id), 'mec_stripe_id', true)) // Stripe Connect
|
16 |
+
{
|
17 |
+
$active_gateways = array($gateway);
|
18 |
+
break;
|
19 |
+
}
|
20 |
}
|
21 |
?>
|
22 |
<div id="mec_book_payment_form">
|
app/modules/booking/steps/form.php
CHANGED
@@ -13,35 +13,38 @@ $event_tickets = isset($event->data->tickets) ? $event->data->tickets : array();
|
|
13 |
|
14 |
$current_user = wp_get_current_user();
|
15 |
$first_for_all = (!isset($this->settings['booking_first_for_all']) or (isset($this->settings['booking_first_for_all']) and $this->settings['booking_first_for_all'] == 1)) ? true : false;
|
|
|
16 |
$mec_email = false;
|
17 |
$mec_name = false;
|
18 |
-
foreach
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
if
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
break;
|
28 |
}
|
29 |
}
|
30 |
|
31 |
-
if
|
32 |
-
|
|
|
33 |
'mandatory' => '0',
|
34 |
'type' => 'name',
|
35 |
'label' => esc_html__( 'Name', 'modern-events-calendar-lite' ),
|
36 |
-
|
37 |
}
|
38 |
|
39 |
-
if
|
40 |
-
|
|
|
41 |
'mandatory' => '0',
|
42 |
'type' => 'mec_email',
|
43 |
'label' => esc_html__( 'Email', 'modern-events-calendar-lite' ),
|
44 |
-
|
45 |
}
|
46 |
?>
|
47 |
|
@@ -57,6 +60,7 @@ if ( ! $mec_email ) {
|
|
57 |
<span class="mec-ticket-price"><?php echo $this->book->get_ticket_price_label($ticket, current_time('Y-m-d')); ?></span>
|
58 |
</h4>
|
59 |
<?php endif; ?>
|
|
|
60 |
<!-- Custom fields -->
|
61 |
<?php if(count($reg_fields)): foreach($reg_fields as $reg_field_id=>$reg_field): if(!is_numeric($reg_field_id) or !isset($reg_field['type'])) continue; ?>
|
62 |
|
@@ -85,7 +89,7 @@ if ( ! $mec_email ) {
|
|
85 |
<?php /** Date **/ elseif($reg_field['type'] == 'date'): ?>
|
86 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="date" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
87 |
|
88 |
-
<?php /**
|
89 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="file" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
90 |
|
91 |
<?php /** Email **/ elseif($reg_field['type'] == 'email'): ?>
|
@@ -124,7 +128,7 @@ if ( ! $mec_email ) {
|
|
124 |
<label for="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>">
|
125 |
<input type="checkbox" id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="1" <?php echo (!isset($reg_field['status']) or (isset($reg_field['status']) and $reg_field['status'] == 'checked')) ? 'checked="checked"' : ''; ?> />
|
126 |
<?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? '<span class="wbmec-mandatory">*</span>' : ''); ?>
|
127 |
-
<?php echo sprintf(__($reg_field['label'], 'modern-events-calendar-lite'), '<a href="'.get_the_permalink($reg_field['page']).'" target="_blank">'.get_the_title($reg_field['page']).'</a>'); ?>
|
128 |
</label>
|
129 |
|
130 |
<?php /** Paragraph **/ elseif($reg_field['type'] == 'p'): ?>
|
13 |
|
14 |
$current_user = wp_get_current_user();
|
15 |
$first_for_all = (!isset($this->settings['booking_first_for_all']) or (isset($this->settings['booking_first_for_all']) and $this->settings['booking_first_for_all'] == 1)) ? true : false;
|
16 |
+
|
17 |
$mec_email = false;
|
18 |
$mec_name = false;
|
19 |
+
foreach($reg_fields as $field)
|
20 |
+
{
|
21 |
+
if(isset($field['type']))
|
22 |
+
{
|
23 |
+
if($field['type'] == 'mec_email') $mec_email = true;
|
24 |
+
if($field['type'] == 'name') $mec_name = true;
|
25 |
+
}
|
26 |
+
else
|
27 |
+
{
|
28 |
break;
|
29 |
}
|
30 |
}
|
31 |
|
32 |
+
if(!$mec_name)
|
33 |
+
{
|
34 |
+
$reg_fields[] = array(
|
35 |
'mandatory' => '0',
|
36 |
'type' => 'name',
|
37 |
'label' => esc_html__( 'Name', 'modern-events-calendar-lite' ),
|
38 |
+
);
|
39 |
}
|
40 |
|
41 |
+
if(!$mec_email)
|
42 |
+
{
|
43 |
+
$reg_fields[] = array(
|
44 |
'mandatory' => '0',
|
45 |
'type' => 'mec_email',
|
46 |
'label' => esc_html__( 'Email', 'modern-events-calendar-lite' ),
|
47 |
+
);
|
48 |
}
|
49 |
?>
|
50 |
|
60 |
<span class="mec-ticket-price"><?php echo $this->book->get_ticket_price_label($ticket, current_time('Y-m-d')); ?></span>
|
61 |
</h4>
|
62 |
<?php endif; ?>
|
63 |
+
|
64 |
<!-- Custom fields -->
|
65 |
<?php if(count($reg_fields)): foreach($reg_fields as $reg_field_id=>$reg_field): if(!is_numeric($reg_field_id) or !isset($reg_field['type'])) continue; ?>
|
66 |
|
89 |
<?php /** Date **/ elseif($reg_field['type'] == 'date'): ?>
|
90 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="date" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
91 |
|
92 |
+
<?php /** File **/ elseif($reg_field['type'] == 'file'): ?>
|
93 |
<input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="file" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
|
94 |
|
95 |
<?php /** Email **/ elseif($reg_field['type'] == 'email'): ?>
|
128 |
<label for="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>">
|
129 |
<input type="checkbox" id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="1" <?php echo (!isset($reg_field['status']) or (isset($reg_field['status']) and $reg_field['status'] == 'checked')) ? 'checked="checked"' : ''; ?> />
|
130 |
<?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? '<span class="wbmec-mandatory">*</span>' : ''); ?>
|
131 |
+
<?php echo sprintf(__(stripslashes($reg_field['label']), 'modern-events-calendar-lite'), '<a href="'.get_the_permalink($reg_field['page']).'" target="_blank">'.get_the_title($reg_field['page']).'</a>'); ?>
|
132 |
</label>
|
133 |
|
134 |
<?php /** Paragraph **/ elseif($reg_field['type'] == 'p'): ?>
|
app/skins/agenda/render.php
CHANGED
@@ -99,6 +99,7 @@ $settings = $this->main->get_settings();
|
|
99 |
<?php echo $event_color; ?>
|
100 |
<?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
101 |
</span>
|
|
|
102 |
</div>
|
103 |
<?php endif; ?>
|
104 |
<?php } ?>
|
99 |
<?php echo $event_color; ?>
|
100 |
<?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
101 |
</span>
|
102 |
+
<?php do_action( 'mec_agenda_skin_attribute', $organizer, $location ); ?>
|
103 |
</div>
|
104 |
<?php endif; ?>
|
105 |
<?php } ?>
|
app/skins/carousel/render.php
CHANGED
@@ -28,7 +28,7 @@ $settings = $this->main->get_settings();
|
|
28 |
foreach($date as $event):
|
29 |
|
30 |
// Skip to next event if there is no image
|
31 |
-
if(empty($event->data->thumbnails['meccarouselthumb'])) continue;
|
32 |
|
33 |
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
34 |
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
@@ -93,7 +93,13 @@ $settings = $this->main->get_settings();
|
|
93 |
<div class="event-carousel-type1-head clearfix">
|
94 |
<div class="mec-event-date mec-color">
|
95 |
<div class="mec-event-image">
|
96 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
</div>
|
98 |
<div class="mec-event-date-carousel">
|
99 |
<?php echo date_i18n($this->date_format_type1_1, strtotime($event->date['start']['date'])); ?>
|
@@ -109,7 +115,13 @@ $settings = $this->main->get_settings();
|
|
109 |
<?php elseif($this->style == 'type2'): ?>
|
110 |
<div class="event-carousel-type2-head clearfix">
|
111 |
<div class="mec-event-image">
|
112 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
</div>
|
114 |
<div class="mec-event-carousel-content-type2">
|
115 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
@@ -141,7 +153,13 @@ $settings = $this->main->get_settings();
|
|
141 |
<?php elseif($this->style == 'type3'): ?>
|
142 |
<div class="event-carousel-type3-head clearfix">
|
143 |
<div class="mec-event-image">
|
144 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
</div>
|
146 |
<div class="mec-event-footer-carousel-type3">
|
147 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
@@ -171,7 +189,13 @@ $settings = $this->main->get_settings();
|
|
171 |
<?php elseif($this->style == 'type4'): ?>
|
172 |
<div class="event-carousel-type4-head clearfix">
|
173 |
<div class="mec-event-image">
|
174 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
</div>
|
176 |
<div class="mec-event-overlay"></div>
|
177 |
<div class="mec-event-hover-carousel-type4">
|
28 |
foreach($date as $event):
|
29 |
|
30 |
// Skip to next event if there is no image
|
31 |
+
// if(empty($event->data->thumbnails['meccarouselthumb'])) continue;
|
32 |
|
33 |
$location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
|
34 |
$organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
|
93 |
<div class="event-carousel-type1-head clearfix">
|
94 |
<div class="mec-event-date mec-color">
|
95 |
<div class="mec-event-image">
|
96 |
+
<?php
|
97 |
+
if ($event->data->thumbnails['meccarouselthumb']) {
|
98 |
+
echo $event->data->thumbnails['meccarouselthumb'];
|
99 |
+
} else {
|
100 |
+
echo '<img src="'. plugin_dir_url(__FILE__ ) .'../../../assets/img/no-image.png'.'" />';
|
101 |
+
}
|
102 |
+
?>
|
103 |
</div>
|
104 |
<div class="mec-event-date-carousel">
|
105 |
<?php echo date_i18n($this->date_format_type1_1, strtotime($event->date['start']['date'])); ?>
|
115 |
<?php elseif($this->style == 'type2'): ?>
|
116 |
<div class="event-carousel-type2-head clearfix">
|
117 |
<div class="mec-event-image">
|
118 |
+
<?php
|
119 |
+
if ($event->data->thumbnails['meccarouselthumb']) {
|
120 |
+
echo $event->data->thumbnails['meccarouselthumb'];
|
121 |
+
} else {
|
122 |
+
echo '<img src="'. plugin_dir_url(__FILE__ ) .'../../../assets/img/no-image.png'.'" />';
|
123 |
+
}
|
124 |
+
?>
|
125 |
</div>
|
126 |
<div class="mec-event-carousel-content-type2">
|
127 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
153 |
<?php elseif($this->style == 'type3'): ?>
|
154 |
<div class="event-carousel-type3-head clearfix">
|
155 |
<div class="mec-event-image">
|
156 |
+
<?php
|
157 |
+
if ($event->data->thumbnails['meccarouselthumb']) {
|
158 |
+
echo $event->data->thumbnails['meccarouselthumb'];
|
159 |
+
} else {
|
160 |
+
echo '<img src="'. plugin_dir_url(__FILE__ ) .'../../../assets/img/no-image.png'.'" />';
|
161 |
+
}
|
162 |
+
?>
|
163 |
</div>
|
164 |
<div class="mec-event-footer-carousel-type3">
|
165 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
189 |
<?php elseif($this->style == 'type4'): ?>
|
190 |
<div class="event-carousel-type4-head clearfix">
|
191 |
<div class="mec-event-image">
|
192 |
+
<?php
|
193 |
+
if ($event->data->thumbnails['full']) {
|
194 |
+
echo $event->data->thumbnails['full'];
|
195 |
+
} else {
|
196 |
+
echo '<img src="'. plugin_dir_url(__FILE__ ) .'../../../assets/img/no-image.png'.'" />';
|
197 |
+
}
|
198 |
+
?>
|
199 |
</div>
|
200 |
<div class="mec-event-overlay"></div>
|
201 |
<div class="mec-event-hover-carousel-type4">
|
app/skins/daily_view.php
CHANGED
@@ -283,7 +283,8 @@ class MEC_skin_daily_view extends MEC_skins
|
|
283 |
$this->sf = $this->request->getVar('sf', array());
|
284 |
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
285 |
$atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
|
286 |
-
|
|
|
287 |
// Initialize the skin
|
288 |
$this->initialize($atts);
|
289 |
|
@@ -324,11 +325,9 @@ class MEC_skin_daily_view extends MEC_skins
|
|
324 |
// Fetch the events
|
325 |
$this->fetch();
|
326 |
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
break;
|
331 |
-
}
|
332 |
|
333 |
$c++;
|
334 |
|
283 |
$this->sf = $this->request->getVar('sf', array());
|
284 |
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
285 |
$atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
|
286 |
+
$navigator_click = $this->request->getVar('navigator_click', false);
|
287 |
+
|
288 |
// Initialize the skin
|
289 |
$this->initialize($atts);
|
290 |
|
325 |
// Fetch the events
|
326 |
$this->fetch();
|
327 |
|
328 |
+
// Break the loop if not resault
|
329 |
+
if($break) break;
|
330 |
+
if($navigator_click) break;
|
|
|
|
|
331 |
|
332 |
$c++;
|
333 |
|
app/skins/daily_view/render.php
CHANGED
@@ -14,6 +14,31 @@ $settings = $this->main->get_settings();
|
|
14 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
15 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
16 |
$label_style = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
if ( !empty($event->data->labels) ):
|
18 |
foreach( $event->data->labels as $label)
|
19 |
{
|
@@ -71,7 +96,11 @@ $settings = $this->main->get_settings();
|
|
71 |
<article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
72 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
73 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
74 |
-
|
|
|
|
|
|
|
|
|
75 |
</article>
|
76 |
<?php endforeach; ?>
|
77 |
<?php else: ?>
|
14 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
15 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
16 |
$label_style = '';
|
17 |
+
|
18 |
+
// Check for sold out event tickets if sold out is shown sold out label
|
19 |
+
$event_id = (isset($event->ID)) ? intval($event->ID) : 0;
|
20 |
+
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
21 |
+
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
22 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
23 |
+
$event_end_date = !empty($event->date['end']['date']) ? $event->date['end']['date'] : '';
|
24 |
+
$is_soldout = $this->main->is_soldout($event_id, $event_start_date);
|
25 |
+
$dynamic_period = $this->main->date_diff($event_start_date, $event_end_date)->d;
|
26 |
+
|
27 |
+
if($dynamic_period >= 0)
|
28 |
+
{
|
29 |
+
$static_period = (!isset($static_period)) ? $this->main->date_diff($startDate, $endDate)->d : $static_period;
|
30 |
+
|
31 |
+
// For events no multiple days but repeating is multiple days
|
32 |
+
$static_period = ($dynamic_period > $static_period) ? $dynamic_period : $static_period;
|
33 |
+
|
34 |
+
// For compare next days of start point events
|
35 |
+
$level = abs($static_period - $dynamic_period);
|
36 |
+
|
37 |
+
// For events multiple days repeating
|
38 |
+
if(($dynamic_period < ($static_period)) and (($dynamic_period) >= 0) and $this->main->is_soldout($event_id,
|
39 |
+
date('Y-m-d',strtotime("- {$level}day", strtotime($event_start_date))))) $is_soldout = true;
|
40 |
+
}
|
41 |
+
|
42 |
if ( !empty($event->data->labels) ):
|
43 |
foreach( $event->data->labels as $label)
|
44 |
{
|
96 |
<article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
|
97 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
98 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
99 |
+
<?php
|
100 |
+
$sold_out_css_class = ($is_soldout) ? ' mec-event-title-soldout' : '';
|
101 |
+
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
102 |
+
?>
|
103 |
+
<h4 class="mec-event-title <?php echo $sold_out_css_class; ?>"><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 $sold_out.$event_color; ?></h4><div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
104 |
</article>
|
105 |
<?php endforeach; ?>
|
106 |
<?php else: ?>
|
app/skins/full_calendar/tpl.php
CHANGED
@@ -37,8 +37,7 @@ do_action('mec_full_skin_head');
|
|
37 |
|
38 |
<div class="mec-search-form mec-totalcal-box">
|
39 |
<?php
|
40 |
-
if($this->sf_status): ?>
|
41 |
-
<div id="mec_search_form_<?php echo $this->id; ?>" class="mec-dropdown-wrap">
|
42 |
<?php
|
43 |
$sf_month_filter = (isset($this->sf_options['month_filter']) ? $this->sf_options['month_filter'] : array());
|
44 |
$sf_category = (isset($this->sf_options['category']) ? $this->sf_options['category'] : array());
|
@@ -57,12 +56,19 @@ do_action('mec_full_skin_head');
|
|
57 |
$sf_tag_status = (isset($sf_tag['type']) and trim($sf_tag['type'])) ? true : false;
|
58 |
$sf_label_status = (isset($sf_label['type']) and trim($sf_label['type'])) ? true : false;
|
59 |
$sf_text_search_status = (isset($sf_text_search['type']) and trim($sf_text_search['type'])) ? true : false;
|
60 |
-
|
61 |
// Status of Speakers Feature
|
62 |
$speakers_status = (!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) ? false : true;
|
63 |
-
|
64 |
$sf_columns = 8;
|
65 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
<?php if($sf_category_status): ?>
|
67 |
<?php echo $this->sf_search_field('category', $sf_category); ?>
|
68 |
<?php endif; ?>
|
37 |
|
38 |
<div class="mec-search-form mec-totalcal-box">
|
39 |
<?php
|
40 |
+
if($this->sf_status): ?>
|
|
|
41 |
<?php
|
42 |
$sf_month_filter = (isset($this->sf_options['month_filter']) ? $this->sf_options['month_filter'] : array());
|
43 |
$sf_category = (isset($this->sf_options['category']) ? $this->sf_options['category'] : array());
|
56 |
$sf_tag_status = (isset($sf_tag['type']) and trim($sf_tag['type'])) ? true : false;
|
57 |
$sf_label_status = (isset($sf_label['type']) and trim($sf_label['type'])) ? true : false;
|
58 |
$sf_text_search_status = (isset($sf_text_search['type']) and trim($sf_text_search['type'])) ? true : false;
|
59 |
+
|
60 |
// Status of Speakers Feature
|
61 |
$speakers_status = (!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) ? false : true;
|
|
|
62 |
$sf_columns = 8;
|
63 |
?>
|
64 |
+
<?php
|
65 |
+
if ( (!empty($sf_category) && $sf_category["type"] == 'dropdown') || (!empty($sf_location) && $sf_location["type"] == 'dropdown') || (!empty($sf_organizer) && $sf_organizer["type"] == 'dropdown') || (!empty($sf_speaker) && $sf_speaker["type"] == 'dropdown') || (!empty($sf_tag) && $sf_tag["type"] == 'dropdown') || (!empty($sf_label) && $sf_label["type"] == 'dropdown') ):
|
66 |
+
$wrapper_class = 'class="mec-dropdown-wrap"';
|
67 |
+
else:
|
68 |
+
$wrapper_class = '';
|
69 |
+
endif;
|
70 |
+
?>
|
71 |
+
<div id="mec_search_form_<?php echo $this->id; ?>" <?php echo $wrapper_class; ?>>
|
72 |
<?php if($sf_category_status): ?>
|
73 |
<?php echo $this->sf_search_field('category', $sf_category); ?>
|
74 |
<?php endif; ?>
|
app/skins/grid/render.php
CHANGED
@@ -131,12 +131,14 @@ if($this->style == 'colorful')
|
|
131 |
</div>
|
132 |
<?php elseif($this->style == 'classic'): ?>
|
133 |
<div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['medium']; ?></a></div>
|
|
|
134 |
<div class="mec-event-content">
|
135 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
136 |
<div class="mec-event-date mec-bg-color"><?php echo date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
|
137 |
<?php else: ?>
|
138 |
<div class="mec-event-date mec-bg-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
|
139 |
<?php endif; ?>
|
|
|
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>
|
131 |
</div>
|
132 |
<?php elseif($this->style == 'classic'): ?>
|
133 |
<div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['medium']; ?></a></div>
|
134 |
+
<?php do_action('mec_grid_classic_image', $event); ?>
|
135 |
<div class="mec-event-content">
|
136 |
<?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
|
137 |
<div class="mec-event-date mec-bg-color"><?php echo date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
|
138 |
<?php else: ?>
|
139 |
<div class="mec-event-date mec-bg-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
|
140 |
<?php endif; ?>
|
141 |
+
<?php do_action('mec_classic_before_title' , $event ); ?>
|
142 |
<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>
|
143 |
<?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
|
144 |
<p><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
|
app/skins/monthly_view.php
CHANGED
@@ -243,7 +243,8 @@ class MEC_skin_monthly_view extends MEC_skins
|
|
243 |
$this->sf = $this->request->getVar('sf', array());
|
244 |
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
245 |
$atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
|
246 |
-
|
|
|
247 |
// Initialize the skin
|
248 |
$this->initialize($atts);
|
249 |
|
@@ -303,7 +304,8 @@ class MEC_skin_monthly_view extends MEC_skins
|
|
303 |
}
|
304 |
|
305 |
// Set active day to current day if not resault
|
306 |
-
if(count($this->events))$this->active_day = key($this->events);
|
|
|
307 |
|
308 |
$c++;
|
309 |
}
|
243 |
$this->sf = $this->request->getVar('sf', array());
|
244 |
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
245 |
$atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
|
246 |
+
$navigator_click = $this->request->getVar('navigator_click', false);
|
247 |
+
|
248 |
// Initialize the skin
|
249 |
$this->initialize($atts);
|
250 |
|
304 |
}
|
305 |
|
306 |
// Set active day to current day if not resault
|
307 |
+
if(count($this->events)) $this->active_day = key($this->events);
|
308 |
+
if($navigator_click) break;
|
309 |
|
310 |
$c++;
|
311 |
}
|
app/skins/monthly_view/calendar.php
CHANGED
@@ -61,7 +61,7 @@ elseif($week_start == 5) // Friday
|
|
61 |
|
62 |
// Print events
|
63 |
if(isset($events[$today]) and count($events[$today]))
|
64 |
-
{
|
65 |
echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="#" class="mec-has-event-a">'.$list_day.'</a>';
|
66 |
do_action('monthly_box_hook', $events[$today]);
|
67 |
echo '</dt>';
|
@@ -73,6 +73,31 @@ elseif($week_start == 5) // Friday
|
|
73 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
74 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
75 |
$label_style = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
if ( !empty($event->data->labels) ):
|
77 |
foreach( $event->data->labels as $label)
|
78 |
{
|
@@ -101,8 +126,6 @@ elseif($week_start == 5) // Friday
|
|
101 |
}
|
102 |
$speakers = json_encode($speakers);
|
103 |
}
|
104 |
-
$startDate = !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
105 |
-
$endDate = !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
106 |
$location_name = isset($location['name']) ? $location['name'] : '' ;
|
107 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
108 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
@@ -136,11 +159,13 @@ elseif($week_start == 5) // Friday
|
|
136 |
}
|
137 |
</script>
|
138 |
';
|
139 |
-
$events_str .= '<article data-style="'.$label_style.'" class="mec-event-article '.$this->get_event_classes($event).'">';
|
140 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
|
141 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
142 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
143 |
-
|
|
|
|
|
144 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
145 |
$events_str .= '</article>';
|
146 |
}
|
61 |
|
62 |
// Print events
|
63 |
if(isset($events[$today]) and count($events[$today]))
|
64 |
+
{
|
65 |
echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="#" class="mec-has-event-a">'.$list_day.'</a>';
|
66 |
do_action('monthly_box_hook', $events[$today]);
|
67 |
echo '</dt>';
|
73 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
74 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
75 |
$label_style = '';
|
76 |
+
|
77 |
+
// Check for sold out event tickets if sold out is shown sold out label
|
78 |
+
$event_id = (isset($event->ID)) ? intval($event->ID) : 0;
|
79 |
+
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
80 |
+
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
81 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
82 |
+
$event_end_date = !empty($event->date['end']['date']) ? $event->date['end']['date'] : '';
|
83 |
+
$is_soldout = $this->main->is_soldout($event_id, $event_start_date);
|
84 |
+
$dynamic_period = $this->main->date_diff($event_start_date, $event_end_date)->d;
|
85 |
+
|
86 |
+
if($dynamic_period >= 0)
|
87 |
+
{
|
88 |
+
$static_period = (!isset($static_period)) ? $this->main->date_diff($startDate, $endDate)->d : $static_period;
|
89 |
+
|
90 |
+
// For events no multiple days but repeating is multiple days
|
91 |
+
$static_period = ($dynamic_period > $static_period) ? $dynamic_period : $static_period;
|
92 |
+
|
93 |
+
// For compare next days of start point events
|
94 |
+
$level = abs($static_period - $dynamic_period);
|
95 |
+
|
96 |
+
// For events multiple days repeating
|
97 |
+
if(($dynamic_period < ($static_period)) and (($dynamic_period) >= 0) and $this->main->is_soldout($event_id,
|
98 |
+
date('Y-m-d',strtotime("- {$level}day", strtotime($event_start_date))))) $is_soldout = true;
|
99 |
+
}
|
100 |
+
|
101 |
if ( !empty($event->data->labels) ):
|
102 |
foreach( $event->data->labels as $label)
|
103 |
{
|
126 |
}
|
127 |
$speakers = json_encode($speakers);
|
128 |
}
|
|
|
|
|
129 |
$location_name = isset($location['name']) ? $location['name'] : '' ;
|
130 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
131 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
159 |
}
|
160 |
</script>
|
161 |
';
|
162 |
+
$events_str .= '<article data-style="'.$label_style.'" class="ended-relative mec-event-article '.$this->get_event_classes($event).'">';
|
163 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
|
164 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
165 |
$event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
|
166 |
+
$sold_out_css_class = ($is_soldout) ? ' mec-event-title-soldout' : '';
|
167 |
+
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
168 |
+
$events_str .= '<h4 class="mec-event-title '.$sold_out_css_class.'"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$sold_out.$event_color.'</h4>';
|
169 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
170 |
$events_str .= '</article>';
|
171 |
}
|
app/skins/monthly_view/calendar_clean.php
CHANGED
@@ -6,6 +6,7 @@ defined('MECEXEC') or die();
|
|
6 |
$headings = $this->main->get_weekday_abbr_labels();
|
7 |
echo '<dl class="mec-calendar-table-head"><dt class="mec-calendar-day-head">'.implode('</dt><dt class="mec-calendar-day-head">', $headings).'</dt></dl>';
|
8 |
|
|
|
9 |
// Start day of week
|
10 |
$week_start = $this->main->get_first_day_of_week();
|
11 |
|
@@ -72,6 +73,31 @@ elseif($week_start == 5) // Friday
|
|
72 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
73 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
74 |
$label_style = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
if ( !empty($event->data->labels) ):
|
76 |
foreach( $event->data->labels as $label)
|
77 |
{
|
@@ -100,8 +126,6 @@ elseif($week_start == 5) // Friday
|
|
100 |
}
|
101 |
$speakers = json_encode($speakers);
|
102 |
}
|
103 |
-
$startDate = !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
104 |
-
$endDate = !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
105 |
$location_name = isset($location['name']) ? $location['name'] : '' ;
|
106 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
107 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
@@ -135,11 +159,13 @@ elseif($week_start == 5) // Friday
|
|
135 |
}
|
136 |
</script>
|
137 |
';
|
138 |
-
$events_str .= '<article data-style="'.$label_style.'" class="mec-event-article '.$this->get_event_classes($event).'">';
|
139 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
|
140 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
141 |
-
|
142 |
-
$
|
|
|
|
|
143 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
144 |
$events_str .= '</article>';
|
145 |
}
|
6 |
$headings = $this->main->get_weekday_abbr_labels();
|
7 |
echo '<dl class="mec-calendar-table-head"><dt class="mec-calendar-day-head">'.implode('</dt><dt class="mec-calendar-day-head">', $headings).'</dt></dl>';
|
8 |
|
9 |
+
|
10 |
// Start day of week
|
11 |
$week_start = $this->main->get_first_day_of_week();
|
12 |
|
73 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
74 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
75 |
$label_style = '';
|
76 |
+
|
77 |
+
// Check for sold out event tickets if sold out is shown sold out label
|
78 |
+
$event_id = (isset($event->ID)) ? intval($event->ID) : 0;
|
79 |
+
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
80 |
+
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
81 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
82 |
+
$event_end_date = !empty($event->date['end']['date']) ? $event->date['end']['date'] : '';
|
83 |
+
$is_soldout = $this->main->is_soldout($event_id, $event_start_date);
|
84 |
+
$dynamic_period = $this->main->date_diff($event_start_date, $event_end_date)->d;
|
85 |
+
|
86 |
+
if($dynamic_period >= 0)
|
87 |
+
{
|
88 |
+
$static_period = (!isset($static_period)) ? $this->main->date_diff($startDate, $endDate)->d : $static_period;
|
89 |
+
|
90 |
+
// For events no multiple days but repeating is multiple days
|
91 |
+
$static_period = ($dynamic_period > $static_period) ? $dynamic_period : $static_period;
|
92 |
+
|
93 |
+
// For compare next days of start point events
|
94 |
+
$level = abs($static_period - $dynamic_period);
|
95 |
+
|
96 |
+
// For events multiple days repeating
|
97 |
+
if(($dynamic_period < ($static_period)) and (($dynamic_period) >= 0) and $this->main->is_soldout($event_id,
|
98 |
+
date('Y-m-d',strtotime("- {$level}day", strtotime($event_start_date))))) $is_soldout = true;
|
99 |
+
}
|
100 |
+
|
101 |
if ( !empty($event->data->labels) ):
|
102 |
foreach( $event->data->labels as $label)
|
103 |
{
|
126 |
}
|
127 |
$speakers = json_encode($speakers);
|
128 |
}
|
|
|
|
|
129 |
$location_name = isset($location['name']) ? $location['name'] : '' ;
|
130 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
131 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
159 |
}
|
160 |
</script>
|
161 |
';
|
162 |
+
$events_str .= '<article data-style="'.$label_style.'" class="mec-event-article '.$this->get_event_classes($event, $is_soldout).'">';
|
163 |
$events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
|
164 |
if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
|
165 |
+
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
166 |
+
$sold_out_css_class = ($is_soldout) ? ' mec-event-title-soldout' : '';
|
167 |
+
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
168 |
+
$events_str .= '<h4 class="mec-event-title'.$sold_out_css_class.'"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$sold_out.$event_color.'</h4>';
|
169 |
$events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
|
170 |
$events_str .= '</article>';
|
171 |
}
|
app/skins/monthly_view/calendar_simple.php
CHANGED
@@ -6,6 +6,7 @@ defined('MECEXEC') or die();
|
|
6 |
$headings = $this->main->get_weekday_abbr_labels();
|
7 |
echo '<dl class="mec-calendar-table-head"><dt class="mec-calendar-day-head">'.implode('</dt><dt class="mec-calendar-day-head">', $headings).'</dt></dl>';
|
8 |
|
|
|
9 |
// Start day of week
|
10 |
$week_start = $this->main->get_first_day_of_week();
|
11 |
|
@@ -67,10 +68,14 @@ elseif($week_start == 5) // Friday
|
|
67 |
$event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
|
68 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
69 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
70 |
-
|
|
|
|
|
71 |
echo '<a class="mec-monthly-tooltip event-single-link-simple" data-tooltip-content="#mec-tooltip-'.$event->data->ID.'-'.$day_id.'" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">';
|
72 |
echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
|
73 |
echo '</a>';
|
|
|
|
|
74 |
$tooltip_content = '';
|
75 |
$tooltip_content .= !empty( $event->data->title) ? '<div class="mec-tooltip-event-title">'.$event->data->title.'</div>' : '' ;
|
76 |
$tooltip_content .= trim($start_time) ? '<div class="mec-tooltip-event-time"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>' : '' ;
|
6 |
$headings = $this->main->get_weekday_abbr_labels();
|
7 |
echo '<dl class="mec-calendar-table-head"><dt class="mec-calendar-day-head">'.implode('</dt><dt class="mec-calendar-day-head">', $headings).'</dt></dl>';
|
8 |
|
9 |
+
|
10 |
// Start day of week
|
11 |
$week_start = $this->main->get_first_day_of_week();
|
12 |
|
68 |
$event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
|
69 |
$start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
|
70 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
71 |
+
|
72 |
+
|
73 |
+
echo '<div class="ended-relative simple-skin-ended">';
|
74 |
echo '<a class="mec-monthly-tooltip event-single-link-simple" data-tooltip-content="#mec-tooltip-'.$event->data->ID.'-'.$day_id.'" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">';
|
75 |
echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
|
76 |
echo '</a>';
|
77 |
+
echo '</div>';
|
78 |
+
|
79 |
$tooltip_content = '';
|
80 |
$tooltip_content .= !empty( $event->data->title) ? '<div class="mec-tooltip-event-title">'.$event->data->title.'</div>' : '' ;
|
81 |
$tooltip_content .= trim($start_time) ? '<div class="mec-tooltip-event-time"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>' : '' ;
|
app/skins/single.php
CHANGED
@@ -72,7 +72,116 @@ class MEC_skin_single extends MEC_skins
|
|
72 |
}
|
73 |
|
74 |
/**
|
75 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
* @author Webnus <info@webnus.biz>
|
77 |
*/
|
78 |
public function display_breadcrumb_widget($page_id)
|
72 |
}
|
73 |
|
74 |
/**
|
75 |
+
* Related Post in Single
|
76 |
+
* @author Webnus <info@webnus.biz>
|
77 |
+
*/
|
78 |
+
public function display_related_posts_widget($event_id)
|
79 |
+
{
|
80 |
+
if ( isset( $this->settings['related_events'] ) && $this->settings['related_events'] != '1' ) return;
|
81 |
+
|
82 |
+
$related_args = array(
|
83 |
+
'post_type' => 'mec-events',
|
84 |
+
'posts_per_page' => 4,
|
85 |
+
'post_status' => 'publish',
|
86 |
+
'post__not_in' => array($event_id),
|
87 |
+
'orderby' => 'ASC',
|
88 |
+
'tax_query' => array(),
|
89 |
+
);
|
90 |
+
|
91 |
+
if (isset($this->settings['related_events_basedon_category']) && $this->settings['related_events_basedon_category'] == 1)
|
92 |
+
{
|
93 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_category', array('fields'=>'slugs'));
|
94 |
+
$related_args['tax_query'][] = array(
|
95 |
+
'taxonomy' => 'mec_category',
|
96 |
+
'field' => 'slug',
|
97 |
+
'terms' => $post_terms
|
98 |
+
);
|
99 |
+
}
|
100 |
+
if (isset($this->settings['related_events_basedon_organizer']) && $this->settings['related_events_basedon_organizer'] == 1)
|
101 |
+
{
|
102 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_organizer', array('fields'=>'slugs'));
|
103 |
+
$related_args['tax_query'][] = array(
|
104 |
+
'taxonomy' => 'mec_organizer',
|
105 |
+
'field' => 'slug',
|
106 |
+
'terms' => $post_terms
|
107 |
+
);
|
108 |
+
}
|
109 |
+
if (isset($this->settings['related_events_basedon_location']) && $this->settings['related_events_basedon_location'] == 1)
|
110 |
+
{
|
111 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_location', array('fields'=>'slugs'));
|
112 |
+
$related_args['tax_query'][] = array(
|
113 |
+
'taxonomy' => 'mec_location',
|
114 |
+
'field' => 'slug',
|
115 |
+
'terms' => $post_terms
|
116 |
+
);
|
117 |
+
}
|
118 |
+
if (isset($this->settings['related_events_basedon_speaker']) && $this->settings['related_events_basedon_speaker'] == 1)
|
119 |
+
{
|
120 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_speaker', array('fields'=>'slugs'));
|
121 |
+
$related_args['tax_query'][] = array(
|
122 |
+
'taxonomy' => 'mec_speaker',
|
123 |
+
'field' => 'slug',
|
124 |
+
'terms' => $post_terms
|
125 |
+
);
|
126 |
+
}
|
127 |
+
if (isset($this->settings['related_events_basedon_label']) && $this->settings['related_events_basedon_label'] == 1)
|
128 |
+
{
|
129 |
+
$post_terms = wp_get_object_terms($event_id, 'mec_label', array('fields'=>'slugs'));
|
130 |
+
$related_args['tax_query'][] = array(
|
131 |
+
'taxonomy' => 'mec_label',
|
132 |
+
'field' => 'slug',
|
133 |
+
'terms' => $post_terms
|
134 |
+
);
|
135 |
+
}
|
136 |
+
if (isset($this->settings['related_events_basedon_tag']) && $this->settings['related_events_basedon_tag'] == 1)
|
137 |
+
{
|
138 |
+
$post_terms = wp_get_object_terms($event_id, 'post_tag', array('fields'=>'slugs'));
|
139 |
+
$related_args['tax_query'][] = array(
|
140 |
+
'taxonomy' => 'post_tag',
|
141 |
+
'field' => 'slug',
|
142 |
+
'terms' => $post_terms
|
143 |
+
);
|
144 |
+
}
|
145 |
+
|
146 |
+
$related_args['tax_query']['relation'] = 'OR';
|
147 |
+
|
148 |
+
$related_args = apply_filters('mec_add_to_related_post_query', $related_args,$event_id);
|
149 |
+
|
150 |
+
$query = new WP_Query($related_args);
|
151 |
+
|
152 |
+
if ( $query->have_posts() ):
|
153 |
+
?>
|
154 |
+
<div class="row mec-related-events-wrap">
|
155 |
+
<h3 class="mec-rec-events-title"><?php echo __('Related Events' ,'modern-events-calendar-lite'); ?></h3>
|
156 |
+
<div class="mec-related-events">
|
157 |
+
<?php while ( $query->have_posts() ): $query->the_post(); ?>
|
158 |
+
<article class="mec-related-event-post col-md-3 col-sm-3">
|
159 |
+
<figure>
|
160 |
+
<a href="<?php echo get_the_permalink(); ?>">
|
161 |
+
<?php
|
162 |
+
if ( get_the_post_thumbnail(get_the_ID(),'thumblist') ) :
|
163 |
+
echo get_the_post_thumbnail(get_the_ID(),'thumblist');
|
164 |
+
else :
|
165 |
+
echo '<img src="'. plugin_dir_url(__FILE__ ) .'../../assets/img/no-image.png'.'" />';
|
166 |
+
endif;
|
167 |
+
?>
|
168 |
+
</a>
|
169 |
+
</figure>
|
170 |
+
<div class="mec-related-event-content">
|
171 |
+
<h5><a class="mec-color-hover" href="<?php echo get_the_permalink(); ?>"><?php echo get_the_title(); ?></a></h5>
|
172 |
+
</div>
|
173 |
+
|
174 |
+
</article>
|
175 |
+
<?php endwhile; ?>
|
176 |
+
</div>
|
177 |
+
</div>
|
178 |
+
<?php
|
179 |
+
endif;
|
180 |
+
wp_reset_postdata();
|
181 |
+
}
|
182 |
+
|
183 |
+
/**
|
184 |
+
* Breadcrumbs in Single
|
185 |
* @author Webnus <info@webnus.biz>
|
186 |
*/
|
187 |
public function display_breadcrumb_widget($page_id)
|
app/skins/single/default.php
CHANGED
@@ -6,6 +6,7 @@ wp_enqueue_style('mec-lity-style', $this->main->asset('packages/lity/lity.min.cs
|
|
6 |
wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
|
7 |
?>
|
8 |
<div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
|
|
|
9 |
<article class="row mec-single-event">
|
10 |
<!-- start breadcrumbs -->
|
11 |
<?php
|
@@ -217,6 +218,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
217 |
<i class="mec-sl-sitemap"></i>
|
218 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
219 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
|
|
220 |
</dd>
|
221 |
<?php endif; ?>
|
222 |
</div>
|
@@ -395,7 +397,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
395 |
<?php
|
396 |
// Event Organizer
|
397 |
if(isset($event->data->organizers[$event->data->meta['mec_organizer_id']]) && !empty($event->data->organizers[$event->data->meta['mec_organizer_id']]) and $single->found_value('event_orgnizer', $settings) == 'on')
|
398 |
-
{
|
399 |
$organizer = $event->data->organizers[$event->data->meta['mec_organizer_id']];
|
400 |
?>
|
401 |
<div class="mec-single-event-organizer">
|
@@ -428,6 +430,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
428 |
<i class="mec-sl-sitemap"></i>
|
429 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
430 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
|
|
431 |
</dd>
|
432 |
<?php endif; ?>
|
433 |
</div>
|
@@ -476,9 +479,9 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
476 |
<?php dynamic_sidebar('mec-single-sidebar'); ?>
|
477 |
|
478 |
</div>
|
479 |
-
|
480 |
<?php endif; ?>
|
481 |
</article>
|
|
|
482 |
</div>
|
483 |
<?php
|
484 |
$speakers = '""';
|
6 |
wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
|
7 |
?>
|
8 |
<div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
|
9 |
+
<?php do_action('mec_top_single_event' , get_the_ID()); ?>
|
10 |
<article class="row mec-single-event">
|
11 |
<!-- start breadcrumbs -->
|
12 |
<?php
|
218 |
<i class="mec-sl-sitemap"></i>
|
219 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
220 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
221 |
+
<?php do_action( 'mec_single_default_organizer', $organizer ); ?>
|
222 |
</dd>
|
223 |
<?php endif; ?>
|
224 |
</div>
|
397 |
<?php
|
398 |
// Event Organizer
|
399 |
if(isset($event->data->organizers[$event->data->meta['mec_organizer_id']]) && !empty($event->data->organizers[$event->data->meta['mec_organizer_id']]) and $single->found_value('event_orgnizer', $settings) == 'on')
|
400 |
+
{
|
401 |
$organizer = $event->data->organizers[$event->data->meta['mec_organizer_id']];
|
402 |
?>
|
403 |
<div class="mec-single-event-organizer">
|
430 |
<i class="mec-sl-sitemap"></i>
|
431 |
<h6><?php _e('Website', 'modern-events-calendar-lite'); ?></h6>
|
432 |
<span><a href="<?php echo (strpos($organizer['url'], 'http') === false ? 'http://'.$organizer['url'] : $organizer['url']); ?>" class="mec-color-hover" target="_blank"><?php echo $organizer['url']; ?></a></span>
|
433 |
+
<?php do_action( 'mec_single_default_organizer', $organizer ); ?>
|
434 |
</dd>
|
435 |
<?php endif; ?>
|
436 |
</div>
|
479 |
<?php dynamic_sidebar('mec-single-sidebar'); ?>
|
480 |
|
481 |
</div>
|
|
|
482 |
<?php endif; ?>
|
483 |
</article>
|
484 |
+
<?php $this->display_related_posts_widget($event->ID); ?>
|
485 |
</div>
|
486 |
<?php
|
487 |
$speakers = '""';
|
app/skins/single/modern.php
CHANGED
@@ -67,7 +67,7 @@ defined('MECEXEC') or die();
|
|
67 |
<?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
|
68 |
<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>
|
69 |
<?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
|
70 |
-
<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')));
|
71 |
?></a>
|
72 |
<?php endif; ?>
|
73 |
</div>
|
@@ -268,6 +268,7 @@ defined('MECEXEC') or die();
|
|
268 |
|
269 |
</div>
|
270 |
</article>
|
|
|
271 |
</div>
|
272 |
<?php
|
273 |
$speakers = '""';
|
@@ -304,7 +305,7 @@ if(!empty($event->data->speakers))
|
|
304 |
<?php endif; ?>
|
305 |
"offers": {
|
306 |
"url": "<?php echo get_the_permalink(); ?>",
|
307 |
-
"price": "<?php echo $event->data->meta['mec_cost'] ?>",
|
308 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
309 |
},
|
310 |
"performer": <?php echo $speakers; ?>,
|
67 |
<?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
|
68 |
<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>
|
69 |
<?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
|
70 |
+
<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')));
|
71 |
?></a>
|
72 |
<?php endif; ?>
|
73 |
</div>
|
268 |
|
269 |
</div>
|
270 |
</article>
|
271 |
+
<?php $this->display_related_posts_widget($event->ID); ?>
|
272 |
</div>
|
273 |
<?php
|
274 |
$speakers = '""';
|
305 |
<?php endif; ?>
|
306 |
"offers": {
|
307 |
"url": "<?php echo get_the_permalink(); ?>",
|
308 |
+
"price": "<?php if ( !empty( $event->data->meta['mec_cost'] ) ) echo $event->data->meta['mec_cost']; ?>",
|
309 |
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
310 |
},
|
311 |
"performer": <?php echo $speakers; ?>,
|
app/skins/slider/render.php
CHANGED
@@ -14,7 +14,7 @@ $settings = $this->main->get_settings();
|
|
14 |
foreach($date as $event):
|
15 |
|
16 |
// Skip to next event if there is no image
|
17 |
-
if(empty($event->data->featured_image['large'])) continue;
|
18 |
|
19 |
// Featured Image
|
20 |
$src = $event->data->featured_image['large'];
|
14 |
foreach($date as $event):
|
15 |
|
16 |
// Skip to next event if there is no image
|
17 |
+
// if(empty($event->data->featured_image['large'])) continue;
|
18 |
|
19 |
// Featured Image
|
20 |
$src = $event->data->featured_image['large'];
|
app/skins/weekly_view.php
CHANGED
@@ -277,7 +277,8 @@ class MEC_skin_weekly_view extends MEC_skins
|
|
277 |
$this->sf = $this->request->getVar('sf', array());
|
278 |
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
279 |
$atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
|
280 |
-
|
|
|
281 |
// Initialize the skin
|
282 |
$this->initialize($atts);
|
283 |
|
@@ -332,10 +333,8 @@ class MEC_skin_weekly_view extends MEC_skins
|
|
332 |
$this->fetch();
|
333 |
|
334 |
// Break the loop if not resault
|
335 |
-
if($break)
|
336 |
-
|
337 |
-
break;
|
338 |
-
}
|
339 |
|
340 |
$c++;
|
341 |
}
|
277 |
$this->sf = $this->request->getVar('sf', array());
|
278 |
$apply_sf_date = $this->request->getVar('apply_sf_date', 1);
|
279 |
$atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
|
280 |
+
$navigator_click = $this->request->getVar('navigator_click', false);
|
281 |
+
|
282 |
// Initialize the skin
|
283 |
$this->initialize($atts);
|
284 |
|
333 |
$this->fetch();
|
334 |
|
335 |
// Break the loop if not resault
|
336 |
+
if($break) break;
|
337 |
+
if($navigator_click) break;
|
|
|
|
|
338 |
|
339 |
$c++;
|
340 |
}
|
app/skins/weekly_view/render.php
CHANGED
@@ -22,6 +22,31 @@ $settings = $this->main->get_settings();
|
|
22 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
23 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
24 |
$label_style = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
if ( !empty($event->data->labels) ):
|
26 |
foreach( $event->data->labels as $label)
|
27 |
{
|
@@ -80,7 +105,11 @@ $settings = $this->main->get_settings();
|
|
80 |
<div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
|
81 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
82 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
83 |
-
|
|
|
|
|
|
|
|
|
84 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
85 |
</article>
|
86 |
<?php endforeach; ?>
|
22 |
$end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
|
23 |
$event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
|
24 |
$label_style = '';
|
25 |
+
|
26 |
+
// Check for sold out event tickets if sold out is shown sold out label
|
27 |
+
$event_id = (isset($event->ID)) ? intval($event->ID) : 0;
|
28 |
+
$startDate = !empty($event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
|
29 |
+
$endDate = !empty($event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
|
30 |
+
$event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
|
31 |
+
$event_end_date = !empty($event->date['end']['date']) ? $event->date['end']['date'] : '';
|
32 |
+
$is_soldout = $this->main->is_soldout($event_id, $event_start_date);
|
33 |
+
$dynamic_period = $this->main->date_diff($event_start_date, $event_end_date)->d;
|
34 |
+
|
35 |
+
if($dynamic_period >= 0)
|
36 |
+
{
|
37 |
+
$static_period = (!isset($static_period)) ? $this->main->date_diff($startDate, $endDate)->d : $static_period;
|
38 |
+
|
39 |
+
// For events no multiple days but repeating is multiple days
|
40 |
+
$static_period = ($dynamic_period > $static_period) ? $dynamic_period : $static_period;
|
41 |
+
|
42 |
+
// For compare next days of start point events
|
43 |
+
$level = abs($static_period - $dynamic_period);
|
44 |
+
|
45 |
+
// For events multiple days repeating
|
46 |
+
if(($dynamic_period < ($static_period)) and (($dynamic_period) >= 0) and $this->main->is_soldout($event_id,
|
47 |
+
date('Y-m-d',strtotime("- {$level}day", strtotime($event_start_date))))) $is_soldout = true;
|
48 |
+
}
|
49 |
+
|
50 |
if ( !empty($event->data->labels) ):
|
51 |
foreach( $event->data->labels as $label)
|
52 |
{
|
105 |
<div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
|
106 |
<div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
|
107 |
<?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
|
108 |
+
<?php
|
109 |
+
$sold_out_css_class = ($is_soldout) ? ' mec-event-title-soldout' : '';
|
110 |
+
$sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
|
111 |
+
?>
|
112 |
+
<h4 class="mec-event-title <?php echo $sold_out_css_class; ?>"><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 $sold_out.$event_color; ?></h4>
|
113 |
<div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
|
114 |
</article>
|
115 |
<?php endforeach; ?>
|
assets/css/backend.css
CHANGED
@@ -4593,3 +4593,168 @@ body.rtl .wns-be-container .wns-be-group-tab h4:before {
|
|
4593 |
body.rtl #mec_gateways_form .mec-tooltip {
|
4594 |
float: left;
|
4595 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4593 |
body.rtl #mec_gateways_form .mec-tooltip {
|
4594 |
float: left;
|
4595 |
}
|
4596 |
+
|
4597 |
+
/* Details Page */
|
4598 |
+
div#plugin-information-content .section {
|
4599 |
+
margin-top: -600px;
|
4600 |
+
}
|
4601 |
+
|
4602 |
+
.mec-details-addons-container {
|
4603 |
+
margin-top: 20px;
|
4604 |
+
}
|
4605 |
+
|
4606 |
+
.mec-details-addons-wrap img {
|
4607 |
+
float: left;
|
4608 |
+
width: 19%;
|
4609 |
+
margin-right: 17px;
|
4610 |
+
}
|
4611 |
+
|
4612 |
+
.mec-details-addons-wrap {
|
4613 |
+
clear: both;
|
4614 |
+
margin-bottom: 80px;
|
4615 |
+
display: block;
|
4616 |
+
position: relative;
|
4617 |
+
}
|
4618 |
+
|
4619 |
+
.mec-details-addons-wrap a {
|
4620 |
+
text-decoration: none;
|
4621 |
+
}
|
4622 |
+
|
4623 |
+
.mec-details-addons-wrap p {
|
4624 |
+
float: left;
|
4625 |
+
width: 340px;
|
4626 |
+
margin-top: 0;
|
4627 |
+
margin-bottom: 30px;
|
4628 |
+
}
|
4629 |
+
|
4630 |
+
.mec-details-addons-title {
|
4631 |
+
font-weight: bold;
|
4632 |
+
}
|
4633 |
+
|
4634 |
+
.mec-details-addons-title a {
|
4635 |
+
color: #444;
|
4636 |
+
}
|
4637 |
+
|
4638 |
+
/* crisp chat */
|
4639 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx {
|
4640 |
+
border-radius: 10px !important;
|
4641 |
+
box-shadow: 0px 4px 38px rgba(0, 0, 0, 0.14) !important;
|
4642 |
+
}
|
4643 |
+
|
4644 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,
|
4645 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *,
|
4646 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,
|
4647 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl * {
|
4648 |
+
font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", "Catamaran", sans-serif !important;
|
4649 |
+
}
|
4650 |
+
|
4651 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,
|
4652 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover {
|
4653 |
+
background-color: #fff !important;
|
4654 |
+
}
|
4655 |
+
|
4656 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-14u434g {
|
4657 |
+
border-color: #e7e8e9 !important;
|
4658 |
+
}
|
4659 |
+
|
4660 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq {
|
4661 |
+
font-size: 20px !important;
|
4662 |
+
width: 14px !important;
|
4663 |
+
height: 19px !important;
|
4664 |
+
opacity: 0.85;
|
4665 |
+
}
|
4666 |
+
|
4667 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover {
|
4668 |
+
opacity: 0.99;
|
4669 |
+
}
|
4670 |
+
|
4671 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a {
|
4672 |
+
font-size: 13px !important;
|
4673 |
+
}
|
4674 |
+
|
4675 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder {
|
4676 |
+
color: #717273 !important;
|
4677 |
+
}
|
4678 |
+
|
4679 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf {
|
4680 |
+
background-color: #008aff !important;
|
4681 |
+
color: #fff !important;
|
4682 |
+
box-shadow: none !important;
|
4683 |
+
border-radius: 5px !important;
|
4684 |
+
padding: 15px 25px 15px !important;
|
4685 |
+
}
|
4686 |
+
|
4687 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc {
|
4688 |
+
color: #fff !important;
|
4689 |
+
font-size: 13px !important;
|
4690 |
+
letter-spacing: 0.3px !important;
|
4691 |
+
}
|
4692 |
+
|
4693 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf {
|
4694 |
+
background-color: #f1f2f3 !important;
|
4695 |
+
border-radius: 5px !important;
|
4696 |
+
padding: 15px 25px 15px !important;
|
4697 |
+
box-shadow: none !important;
|
4698 |
+
color: #121314 !important;
|
4699 |
+
}
|
4700 |
+
|
4701 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type="audio"] .crisp-z89v5n .crisp-162m9xf {
|
4702 |
+
background-color: #d1d7dc !important;
|
4703 |
+
}
|
4704 |
+
|
4705 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc {
|
4706 |
+
color: #121314 !important;
|
4707 |
+
-webkit-text-fill-color: #121314 !important;
|
4708 |
+
font-size: 13px !important;
|
4709 |
+
letter-spacing: 0.3px !important;
|
4710 |
+
}
|
4711 |
+
|
4712 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb {
|
4713 |
+
opacity: 0.4;
|
4714 |
+
margin-right: 5px !important;
|
4715 |
+
}
|
4716 |
+
|
4717 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw {
|
4718 |
+
opacity: 0.68;
|
4719 |
+
font-size: 12px !important;
|
4720 |
+
}
|
4721 |
+
|
4722 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg {
|
4723 |
+
background-image: linear-gradient(125deg, #008aff -10%, #0066b1 100%) !important;
|
4724 |
+
height: 110px !important;
|
4725 |
+
padding-top: 35px !important;
|
4726 |
+
}
|
4727 |
+
|
4728 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6,
|
4729 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,
|
4730 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,
|
4731 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6 {
|
4732 |
+
font-size: 17px !important;
|
4733 |
+
line-height: 28px !important;
|
4734 |
+
padding-top: 10px !important;
|
4735 |
+
}
|
4736 |
+
|
4737 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 {
|
4738 |
+
background-color: #008aff !important;
|
4739 |
+
background-image: linear-gradient(125deg, #008aff -10%, #008af0 100%) !important;
|
4740 |
+
box-shadow: 0 5px 34px -6px #008aff !important;
|
4741 |
+
}
|
4742 |
+
|
4743 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4 {
|
4744 |
+
background-color: transparent !important;
|
4745 |
+
}
|
4746 |
+
|
4747 |
+
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj {
|
4748 |
+
margin-top: -10px !important;
|
4749 |
+
}
|
4750 |
+
|
4751 |
+
body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false] {
|
4752 |
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K) !important;
|
4753 |
+
height: 31px !important;
|
4754 |
+
top: 16px !important;
|
4755 |
+
left: 14px !important;
|
4756 |
+
}
|
4757 |
+
|
4758 |
+
body .csh-category-item a h6 {
|
4759 |
+
text-align: left;
|
4760 |
+
}
|
assets/css/backend.min.css
CHANGED
@@ -2,4 +2,4 @@
|
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:20px 30px 27px;margin-bottom:0}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:20px 30px 27px;margin-bottom:0}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}div#plugin-information-content .section{margin-top:-600px}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}
|
assets/css/frontend.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*----------------------------------
|
2 |
Plug-in Name: Modern Events Calendar
|
3 |
Author: WEBNUS
|
4 |
Author URI: http://codecanyon.net/user/WEBNUS
|
@@ -911,6 +911,47 @@
|
|
911 |
}
|
912 |
}
|
913 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
914 |
|
915 |
/* MEC Events Grid Modern Colorful
|
916 |
------------------------------------ */
|
@@ -4297,7 +4338,7 @@ address.mec-events-address {
|
|
4297 |
}
|
4298 |
|
4299 |
.mec-calendar.mec-event-calendar-classic dl dt {
|
4300 |
-
width:
|
4301 |
height: 136px;
|
4302 |
line-height: 1.2;
|
4303 |
text-align: left;
|
@@ -5626,6 +5667,244 @@ li.mec-no-event-found .mec-event-title {
|
|
5626 |
margin-left: 0;
|
5627 |
}
|
5628 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5629 |
|
5630 |
@media only screen and (min-width: 961px) {
|
5631 |
|
@@ -12006,5 +12285,73 @@ ul.mec-weekly-view-dates-events article:before,
|
|
12006 |
.mec-search-bar-wrap input#mec-search-bar-input:hover {
|
12007 |
background: #000;
|
12008 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12009 |
|
12010 |
/* --------------------- */
|
1 |
+
.mec-event-grid-colorful .mec-event-article/*----------------------------------
|
2 |
Plug-in Name: Modern Events Calendar
|
3 |
Author: WEBNUS
|
4 |
Author URI: http://codecanyon.net/user/WEBNUS
|
911 |
}
|
912 |
}
|
913 |
|
914 |
+
/* MEC Events Sold Out
|
915 |
+
------------------------------------ */
|
916 |
+
.mec-event-title-soldout .soldout {
|
917 |
+
background: #de3120;
|
918 |
+
padding: 4px 5px;
|
919 |
+
color: #fff;
|
920 |
+
}
|
921 |
+
|
922 |
+
.mec-event-title-soldout .soldout {
|
923 |
+
background: #de3120;
|
924 |
+
position: relative;
|
925 |
+
top: -2px;
|
926 |
+
border-radius: 10px 0 0 20px;
|
927 |
+
padding: 2px 4px 2px 10px;
|
928 |
+
color: #fff;
|
929 |
+
}
|
930 |
+
|
931 |
+
.mec-event-title-soldout .soldout:before {
|
932 |
+
content: ' ';
|
933 |
+
position: absolute;
|
934 |
+
width: 0;
|
935 |
+
height: 0;
|
936 |
+
border-top: 10px solid #de3120;
|
937 |
+
border-bottom: 10px solid #de3120;
|
938 |
+
right: -10px;
|
939 |
+
border-right: 10px solid transparent;
|
940 |
+
border-left: 10px solid transparent;
|
941 |
+
top: 0px;
|
942 |
+
}
|
943 |
+
|
944 |
+
.mec-event-title-soldout .soldout:after {
|
945 |
+
content: ' ';
|
946 |
+
position: absolute;
|
947 |
+
width: 6px;
|
948 |
+
height: 6px;
|
949 |
+
background: #de3120;
|
950 |
+
border-radius: 50%;
|
951 |
+
left: 3px;
|
952 |
+
top: 4px;
|
953 |
+
border: 2px dashed #fff;
|
954 |
+
}
|
955 |
|
956 |
/* MEC Events Grid Modern Colorful
|
957 |
------------------------------------ */
|
4338 |
}
|
4339 |
|
4340 |
.mec-calendar.mec-event-calendar-classic dl dt {
|
4341 |
+
width: 15%;
|
4342 |
height: 136px;
|
4343 |
line-height: 1.2;
|
4344 |
text-align: left;
|
5667 |
margin-left: 0;
|
5668 |
}
|
5669 |
|
5670 |
+
.mec-fes-form.mec-fes-form .mec-tooltip {
|
5671 |
+
display: inline;
|
5672 |
+
}
|
5673 |
+
|
5674 |
+
.mec-fes-form-cntt .dashicons-editor-help {
|
5675 |
+
display: block;
|
5676 |
+
}
|
5677 |
+
|
5678 |
+
.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before {
|
5679 |
+
display: none
|
5680 |
+
}
|
5681 |
+
|
5682 |
+
.mec-fes-form.mec-fes-form .mec-tooltip {
|
5683 |
+
display: inline-flex;
|
5684 |
+
bottom: 7px
|
5685 |
+
}
|
5686 |
+
|
5687 |
+
.mec-fes-form .mec-tooltip .box {
|
5688 |
+
min-width: 300px;
|
5689 |
+
max-width: 600px;
|
5690 |
+
display: inline-block;
|
5691 |
+
left: 26px;
|
5692 |
+
top: 50%;
|
5693 |
+
transform: translateY(-50%);
|
5694 |
+
padding: 0;
|
5695 |
+
margin-top: 8px;
|
5696 |
+
background-color: #535a61;
|
5697 |
+
color: #fff;
|
5698 |
+
font-weight: 300;
|
5699 |
+
font-size: 14px;
|
5700 |
+
letter-spacing: .5px;
|
5701 |
+
line-height: 1.3;
|
5702 |
+
position: absolute;
|
5703 |
+
z-index: 9999999;
|
5704 |
+
box-sizing: border-box;
|
5705 |
+
border-radius: 6px;
|
5706 |
+
box-shadow: 0 4px 45px -8px #444b50;
|
5707 |
+
visibility: hidden;
|
5708 |
+
opacity: 0;
|
5709 |
+
transition: opacity .23s
|
5710 |
+
}
|
5711 |
+
|
5712 |
+
#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p {
|
5713 |
+
color: #fff;
|
5714 |
+
font-size: 14px;
|
5715 |
+
line-height: 1.3;
|
5716 |
+
margin: 0
|
5717 |
+
}
|
5718 |
+
|
5719 |
+
.mec-fes-form .mec-tooltip:hover .box {
|
5720 |
+
visibility: visible;
|
5721 |
+
opacity: 1
|
5722 |
+
}
|
5723 |
+
|
5724 |
+
.mec-fes-form .mec-tooltip:hover .box {
|
5725 |
+
padding: 20px;
|
5726 |
+
border-radius: 8px
|
5727 |
+
}
|
5728 |
+
|
5729 |
+
.mec-fes-form .mec-tooltip .box h5 {
|
5730 |
+
color: #fff;
|
5731 |
+
font-size: 17px;
|
5732 |
+
font-weight: 600;
|
5733 |
+
margin: -30px -20px;
|
5734 |
+
padding: 20px 0;
|
5735 |
+
text-align: center;
|
5736 |
+
margin-bottom: 10px;
|
5737 |
+
background: #3a3f44;
|
5738 |
+
border-bottom: 1px solid #32363a;
|
5739 |
+
border-radius: 6px 6px 0 0;
|
5740 |
+
z-index: 9999
|
5741 |
+
}
|
5742 |
+
|
5743 |
+
#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a {
|
5744 |
+
color: #40d9f1;
|
5745 |
+
margin-top: 10px;
|
5746 |
+
margin-left: 0;
|
5747 |
+
font-weight: 400;
|
5748 |
+
position: relative;
|
5749 |
+
text-decoration: none;
|
5750 |
+
display: block;
|
5751 |
+
width: max-content
|
5752 |
+
}
|
5753 |
+
|
5754 |
+
.mec-fes-form .mec-tooltip .box a:hover {
|
5755 |
+
color: #f90
|
5756 |
+
}
|
5757 |
+
|
5758 |
+
.mec-fes-form .mec-tooltip .box:after {
|
5759 |
+
display: block;
|
5760 |
+
position: absolute!important;
|
5761 |
+
top: 100%!important;
|
5762 |
+
right: 50%!important;
|
5763 |
+
margin-top: -6px!important;
|
5764 |
+
margin-right: -6px!important;
|
5765 |
+
width: 12px!important;
|
5766 |
+
height: 24px!important;
|
5767 |
+
overflow: hidden!important;
|
5768 |
+
transform: rotate(-90deg)!important
|
5769 |
+
}
|
5770 |
+
|
5771 |
+
.mec-fes-form .mec-tooltip .box:before {
|
5772 |
+
display: block;
|
5773 |
+
content: ''!important;
|
5774 |
+
position: absolute!important;
|
5775 |
+
width: 12px;
|
5776 |
+
height: 12px;
|
5777 |
+
left: -10px!important;
|
5778 |
+
top: 50%!important;
|
5779 |
+
transform: translate(50%,-50%) rotate(-45deg)!important;
|
5780 |
+
background-color: #535a61!important;
|
5781 |
+
box-shadow: 0 8px 9px -4px #535a61!important;
|
5782 |
+
z-index: 0!important
|
5783 |
+
}
|
5784 |
+
|
5785 |
+
.mec-fes-form .mec-tooltip .box.top {
|
5786 |
+
left: 50%;
|
5787 |
+
top: 0;
|
5788 |
+
transform: translate(-50%,-100%);
|
5789 |
+
margin-top: 0;
|
5790 |
+
margin-left: -10px
|
5791 |
+
}
|
5792 |
+
|
5793 |
+
.mec-fes-form .mec-tooltip .box.top:after {
|
5794 |
+
top: 50%!important;
|
5795 |
+
right: 100%!important
|
5796 |
+
}
|
5797 |
+
|
5798 |
+
.mec-fes-form .mec-tooltip .box.top:before {
|
5799 |
+
left: 50%!important;
|
5800 |
+
top: 100%!important
|
5801 |
+
}
|
5802 |
+
|
5803 |
+
.mec-fes-form .mec-tooltip .box.bottom {
|
5804 |
+
left: 50%;
|
5805 |
+
top: auto;
|
5806 |
+
bottom: 0;
|
5807 |
+
transform: translate(-50%,100%);
|
5808 |
+
margin-bottom: -20px;
|
5809 |
+
margin-left: -10px
|
5810 |
+
}
|
5811 |
+
|
5812 |
+
.mec-fes-form .mec-tooltip .box.bottom:after {
|
5813 |
+
top: 0!important;
|
5814 |
+
right: 50%!important;
|
5815 |
+
background-color: #3a3f44!important
|
5816 |
+
}
|
5817 |
+
|
5818 |
+
.mec-fes-form .mec-tooltip .box.bottom:before {
|
5819 |
+
left: 50%!important;
|
5820 |
+
top: -7px!important;
|
5821 |
+
transform: translateX(-50%);
|
5822 |
+
background-color: #3a3f44!important
|
5823 |
+
}
|
5824 |
+
|
5825 |
+
.mec-fes-form .mec-tooltip .box.left {
|
5826 |
+
left: auto;
|
5827 |
+
right: 26px;
|
5828 |
+
top: 50%;
|
5829 |
+
transform: translateY(-50%)
|
5830 |
+
}
|
5831 |
+
|
5832 |
+
.mec-fes-form .mec-tooltip .box.left:before {
|
5833 |
+
right: 0!important;
|
5834 |
+
left: auto!important;
|
5835 |
+
top: 50%!important
|
5836 |
+
}
|
5837 |
+
|
5838 |
+
.mec-fes-form .mec-tooltip {
|
5839 |
+
display: inline-block;
|
5840 |
+
position: relative;
|
5841 |
+
margin-right: 10px;
|
5842 |
+
cursor: help;
|
5843 |
+
bottom: 5px;
|
5844 |
+
left: 3px;
|
5845 |
+
}
|
5846 |
+
|
5847 |
+
.mec-fes-form .mec-tooltip:last-child {
|
5848 |
+
margin-right: 0
|
5849 |
+
}
|
5850 |
+
|
5851 |
+
.mec-fes-form .mec-tooltip:hover:after {
|
5852 |
+
background: #313130;
|
5853 |
+
border-radius: 5px;
|
5854 |
+
bottom: 24px;
|
5855 |
+
color: #fff;
|
5856 |
+
content: attr(title);
|
5857 |
+
left: -75px;
|
5858 |
+
padding: 10px;
|
5859 |
+
position: absolute;
|
5860 |
+
z-index: 98;
|
5861 |
+
width: 240px
|
5862 |
+
}
|
5863 |
+
|
5864 |
+
.mec-fes-form .mec-tooltip:hover:before {
|
5865 |
+
border: solid;
|
5866 |
+
border-color: #313130 transparent;
|
5867 |
+
border-width: 6px 6px 0;
|
5868 |
+
bottom: 18px;
|
5869 |
+
content: "";
|
5870 |
+
left: 30%;
|
5871 |
+
position: absolute;
|
5872 |
+
z-index: 99
|
5873 |
+
}
|
5874 |
+
|
5875 |
+
.mec-fes-form .mec-tooltip .dashicons-before:before {
|
5876 |
+
font-size: 24px;
|
5877 |
+
color: #008aff;
|
5878 |
+
line-height: 37px
|
5879 |
+
}
|
5880 |
+
|
5881 |
+
.mec-fes-form .mec-tooltip a:focus {
|
5882 |
+
box-shadow: none
|
5883 |
+
}
|
5884 |
+
|
5885 |
+
.mec-form-row .bootstrap_unvalid {
|
5886 |
+
display: block;
|
5887 |
+
border: 2px solid red;
|
5888 |
+
position: relative;
|
5889 |
+
display: inline-block;
|
5890 |
+
border-bottom: 1px dotted #000
|
5891 |
+
}
|
5892 |
+
|
5893 |
+
.mec-fes-form .mec-tooltiptext {
|
5894 |
+
visibility: hidden;
|
5895 |
+
width: 120px;
|
5896 |
+
background-color: red;
|
5897 |
+
color: #fff;
|
5898 |
+
text-align: center;
|
5899 |
+
border-radius: 6px;
|
5900 |
+
padding: 5px 0;
|
5901 |
+
position: absolute;
|
5902 |
+
z-index: 1
|
5903 |
+
}
|
5904 |
+
|
5905 |
+
.mec-fes-form .mec-tooltip .content p a {
|
5906 |
+
display: none;
|
5907 |
+
}
|
5908 |
|
5909 |
@media only screen and (min-width: 961px) {
|
5910 |
|
12285 |
.mec-search-bar-wrap input#mec-search-bar-input:hover {
|
12286 |
background: #000;
|
12287 |
}
|
12288 |
+
|
12289 |
+
/* Related Events */
|
12290 |
+
.mec-related-events-wrap {
|
12291 |
+
margin-top: 50px;
|
12292 |
+
}
|
12293 |
+
.mec-related-events-wrap h3.mec-rec-events-title:before {
|
12294 |
+
content: "";
|
12295 |
+
background: #2c2f34;
|
12296 |
+
width: 46px;
|
12297 |
+
height: 4px;
|
12298 |
+
position: absolute;
|
12299 |
+
top: 59px;
|
12300 |
+
left: 0;
|
12301 |
+
}
|
12302 |
+
.mec-related-events-wrap h3.mec-rec-events-title {
|
12303 |
+
font-size: 21px;
|
12304 |
+
font-weight: 600;
|
12305 |
+
padding: 17px 0;
|
12306 |
+
margin-bottom: 28px;
|
12307 |
+
text-transform: uppercase;
|
12308 |
+
border-bottom: 1px solid #e8e8e8;
|
12309 |
+
position: relative;
|
12310 |
+
}
|
12311 |
+
.mec-related-event-post figure {
|
12312 |
+
margin: 0;
|
12313 |
+
}
|
12314 |
+
.mec-related-event-post figure img {
|
12315 |
+
width: 100%;
|
12316 |
+
}
|
12317 |
+
.mec-related-event-content {
|
12318 |
+
background-color: #fff;
|
12319 |
+
margin: -27px 30px 15px;
|
12320 |
+
position: relative;
|
12321 |
+
max-width: 90%;
|
12322 |
+
padding: 13px 21px 16px 19px;
|
12323 |
+
}
|
12324 |
+
.mec-related-event-content h5 a {
|
12325 |
+
font-size: 16px;
|
12326 |
+
color: #121212;
|
12327 |
+
font-weight: 600;
|
12328 |
+
transition: all 0.3s ease;
|
12329 |
+
}
|
12330 |
+
|
12331 |
+
/* Fronrend Organizer Payment */
|
12332 |
+
.mec-fes-form-cntt #mec-organizer-payments ul {
|
12333 |
+
list-style: none;
|
12334 |
+
background: transparent;
|
12335 |
+
}
|
12336 |
+
|
12337 |
+
.mec-fes-form-cntt #mec-organizer-payments ul li h4 {
|
12338 |
+
background: transparent;
|
12339 |
+
letter-spacing: 0;
|
12340 |
+
border-bottom: 1px solid #e8e8e8;
|
12341 |
+
display: inline-block;
|
12342 |
+
padding-left: 0 !important;
|
12343 |
+
padding-bottom: 10px !important;
|
12344 |
+
margin: 0;
|
12345 |
+
margin-bottom: 20px;
|
12346 |
+
letter-spacing: 1px;
|
12347 |
+
text-transform: capitalize;
|
12348 |
+
}
|
12349 |
+
|
12350 |
+
.mec-fes-form-cntt #mec-organizer-payments ul>li {
|
12351 |
+
width: 33%;
|
12352 |
+
display: inline-block;
|
12353 |
+
vertical-align: top;
|
12354 |
+
padding: 0 30px;
|
12355 |
+
}
|
12356 |
|
12357 |
/* --------------------- */
|
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}.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}
|
1 |
+
.lity-container,.mec-event-grid-colorful .mec-event-article .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-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.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:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-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}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding: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}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:0;border-bottom:1px solid #e8e8e8;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:20px;letter-spacing:1px;text-transform:capitalize}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:33%;display:inline-block;vertical-align:top;padding:0 30px}
|
assets/img/no-image.png
ADDED
Binary file
|
assets/js/backend.js
CHANGED
@@ -107,7 +107,8 @@ jQuery(document).ready(function($)
|
|
107 |
});
|
108 |
|
109 |
// Initialize WP Color Picker
|
110 |
-
|
|
|
111 |
|
112 |
// Initialize MEC Skin Switcher
|
113 |
$('#mec_skin').on('change', function()
|
@@ -382,36 +383,36 @@ function mec_skin_style_changed(skin, style)
|
|
382 |
}
|
383 |
|
384 |
// TinyMce Plugins
|
385 |
-
|
386 |
-
var menu = new Array();
|
387 |
-
if(items && typeof tinymce !== 'undefined')
|
388 |
{
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
{
|
393 |
-
|
394 |
-
|
395 |
-
text: items.shortcodes[i]['PN'].replace(/-/g, ' '),
|
396 |
-
id: items.shortcodes[i]['ID'],
|
397 |
-
classes: 'mec-mce-items',
|
398 |
-
onselect: function(e)
|
399 |
{
|
400 |
-
|
401 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
});
|
403 |
});
|
404 |
-
|
405 |
-
editor.addButton('mec_mce_buttons',
|
406 |
-
{
|
407 |
-
text: items.mce_title,
|
408 |
-
icon: false,
|
409 |
-
type: 'menubutton',
|
410 |
-
menu: menu
|
411 |
-
});
|
412 |
-
});
|
413 |
}
|
414 |
|
|
|
415 |
(function(wp, $)
|
416 |
{
|
417 |
// Block Editor
|
107 |
});
|
108 |
|
109 |
// Initialize WP Color Picker
|
110 |
+
if ($.fn.wpColorPicker) jQuery('.mec-color-picker').wpColorPicker();
|
111 |
+
|
112 |
|
113 |
// Initialize MEC Skin Switcher
|
114 |
$('#mec_skin').on('change', function()
|
383 |
}
|
384 |
|
385 |
// TinyMce Plugins
|
386 |
+
if (jQuery('.mec-fes-form').length < 1)
|
|
|
|
|
387 |
{
|
388 |
+
var items = JSON.parse(mec_admin_localize.mce_items);
|
389 |
+
var menu = new Array();
|
390 |
+
if (items && typeof tinymce !== 'undefined') {
|
391 |
+
tinymce.PluginManager.add('mec_mce_buttons', function (editor, url) {
|
392 |
+
items.shortcodes.forEach(function (e, i) {
|
393 |
+
menu.push(
|
|
|
|
|
|
|
|
|
394 |
{
|
395 |
+
text: items.shortcodes[i]['PN'].replace(/-/g, ' '),
|
396 |
+
id: items.shortcodes[i]['ID'],
|
397 |
+
classes: 'mec-mce-items',
|
398 |
+
onselect: function (e) {
|
399 |
+
editor.insertContent(`[MEC id="${e.control.settings.id}"]`);
|
400 |
+
}
|
401 |
+
});
|
402 |
+
});
|
403 |
+
// Add menu button
|
404 |
+
editor.addButton('mec_mce_buttons',
|
405 |
+
{
|
406 |
+
text: items.mce_title,
|
407 |
+
icon: false,
|
408 |
+
type: 'menubutton',
|
409 |
+
menu: menu
|
410 |
});
|
411 |
});
|
412 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
}
|
414 |
|
415 |
+
|
416 |
(function(wp, $)
|
417 |
{
|
418 |
// Block Editor
|
assets/js/frontend.js
CHANGED
@@ -861,7 +861,7 @@ var mecSingleEventDisplayer = {
|
|
861 |
var year = $(this).data("mec-year");
|
862 |
var month = $(this).data("mec-month");
|
863 |
|
864 |
-
setMonth(year, month);
|
865 |
});
|
866 |
}
|
867 |
|
@@ -910,9 +910,10 @@ var mecSingleEventDisplayer = {
|
|
910 |
});
|
911 |
}
|
912 |
|
913 |
-
function setMonth(year, month, do_in_background)
|
914 |
{
|
915 |
if(typeof do_in_background === "undefined") do_in_background = false;
|
|
|
916 |
var month_id = year+""+month;
|
917 |
|
918 |
if(!do_in_background)
|
@@ -940,7 +941,7 @@ var mecSingleEventDisplayer = {
|
|
940 |
$.ajax(
|
941 |
{
|
942 |
url: settings.ajax_url,
|
943 |
-
data: "action=mec_monthly_view_load_month&mec_year="+year+"&mec_month="+month+"&"+settings.atts+"&apply_sf_date=0",
|
944 |
dataType: "json",
|
945 |
type: "post",
|
946 |
success: function(response)
|
@@ -979,6 +980,16 @@ var mecSingleEventDisplayer = {
|
|
979 |
$("#mec_month_navigator_"+settings.id+"_"+response.current_month.id).hide();
|
980 |
$("#mec_month_side_"+settings.id+"_"+response.current_month.id).hide();
|
981 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
982 |
},
|
983 |
error: function()
|
984 |
{
|
@@ -1231,11 +1242,11 @@ var mecSingleEventDisplayer = {
|
|
1231 |
var year = $(this).data('mec-year');
|
1232 |
var month = $(this).data('mec-month');
|
1233 |
|
1234 |
-
setMonth(year, month, active_week);
|
1235 |
});
|
1236 |
}
|
1237 |
|
1238 |
-
function search(year, month, week)
|
1239 |
{
|
1240 |
var week_number = (String(week).slice(-1));
|
1241 |
|
@@ -1275,14 +1286,15 @@ var mecSingleEventDisplayer = {
|
|
1275 |
});
|
1276 |
}
|
1277 |
|
1278 |
-
function setMonth(year, month, week)
|
1279 |
{
|
1280 |
var month_id = ''+year+month;
|
1281 |
var week_number = (String(week).slice(-1));
|
1282 |
|
1283 |
active_month = month;
|
1284 |
active_year = year;
|
1285 |
-
|
|
|
1286 |
// Month exists so we just show it
|
1287 |
if($("#mec_weekly_view_month_"+settings.id+"_"+month_id).length)
|
1288 |
{
|
@@ -1301,7 +1313,7 @@ var mecSingleEventDisplayer = {
|
|
1301 |
$.ajax(
|
1302 |
{
|
1303 |
url: settings.ajax_url,
|
1304 |
-
data: "action=mec_weekly_view_load_month&mec_year="+year+"&mec_month="+month+"&mec_week="+week_number+"&"+settings.atts+"&apply_sf_date=0",
|
1305 |
dataType: "json",
|
1306 |
type: "post",
|
1307 |
success: function(response)
|
@@ -1474,7 +1486,7 @@ var mecSingleEventDisplayer = {
|
|
1474 |
var year = $(this).data('mec-year');
|
1475 |
var month = $(this).data('mec-month');
|
1476 |
|
1477 |
-
setMonth(year, month, current_monthday);
|
1478 |
});
|
1479 |
}
|
1480 |
|
@@ -1581,14 +1593,15 @@ var mecSingleEventDisplayer = {
|
|
1581 |
});
|
1582 |
}
|
1583 |
|
1584 |
-
function setMonth(year, month, day)
|
1585 |
{
|
1586 |
var month_id = '' + year + month;
|
1587 |
|
1588 |
active_month = month;
|
1589 |
active_year = year;
|
1590 |
active_day = day;
|
1591 |
-
|
|
|
1592 |
// Month exists so we just show it
|
1593 |
if($("#mec_daily_view_month_"+settings.id+"_"+month_id).length)
|
1594 |
{
|
@@ -1607,7 +1620,7 @@ var mecSingleEventDisplayer = {
|
|
1607 |
$.ajax(
|
1608 |
{
|
1609 |
url: settings.ajax_url,
|
1610 |
-
data: "action=mec_daily_view_load_month&mec_year="+year+"&mec_month="+month+"&mec_day="+day+"&"+settings.atts+"&apply_sf_date=0",
|
1611 |
dataType: "json",
|
1612 |
type: "post",
|
1613 |
success: function(response)
|
@@ -2288,6 +2301,7 @@ var mecSingleEventDisplayer = {
|
|
2288 |
current_month_divider: '',
|
2289 |
end_date: '',
|
2290 |
offset: 0,
|
|
|
2291 |
}, options);
|
2292 |
|
2293 |
// Set onclick Listeners
|
@@ -2413,6 +2427,7 @@ var mecSingleEventDisplayer = {
|
|
2413 |
|
2414 |
mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
|
2415 |
});
|
|
|
2416 |
$("#mec_skin_"+settings.id+" .mec-event-image a img").off('click').on('click', function(e)
|
2417 |
{
|
2418 |
e.preventDefault();
|
@@ -2438,7 +2453,7 @@ var mecSingleEventDisplayer = {
|
|
2438 |
type: "post",
|
2439 |
success: function(response)
|
2440 |
{
|
2441 |
-
if(response.count ==
|
2442 |
{
|
2443 |
// Remove loading Class
|
2444 |
$("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
|
@@ -3419,5 +3434,39 @@ function mec_focus_week(id)
|
|
3419 |
$(this).text($(this).data('imperial'));
|
3420 |
}
|
3421 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3422 |
});
|
3423 |
})(jQuery);
|
861 |
var year = $(this).data("mec-year");
|
862 |
var month = $(this).data("mec-month");
|
863 |
|
864 |
+
setMonth(year, month, false, true);
|
865 |
});
|
866 |
}
|
867 |
|
910 |
});
|
911 |
}
|
912 |
|
913 |
+
function setMonth(year, month, do_in_background, navigator_click)
|
914 |
{
|
915 |
if(typeof do_in_background === "undefined") do_in_background = false;
|
916 |
+
navigator_click = navigator_click || false;
|
917 |
var month_id = year+""+month;
|
918 |
|
919 |
if(!do_in_background)
|
941 |
$.ajax(
|
942 |
{
|
943 |
url: settings.ajax_url,
|
944 |
+
data: "action=mec_monthly_view_load_month&mec_year="+year+"&mec_month="+month+"&"+settings.atts+"&apply_sf_date=0"+"&navigator_click="+navigator_click,
|
945 |
dataType: "json",
|
946 |
type: "post",
|
947 |
success: function(response)
|
980 |
$("#mec_month_navigator_"+settings.id+"_"+response.current_month.id).hide();
|
981 |
$("#mec_month_side_"+settings.id+"_"+response.current_month.id).hide();
|
982 |
}
|
983 |
+
if (typeof custom_month != undefined)
|
984 |
+
{
|
985 |
+
if (custom_month == 'true')
|
986 |
+
{
|
987 |
+
$(".mec-month-container .mec-calendar-day").removeClass('mec-has-event');
|
988 |
+
$(".mec-month-container .mec-calendar-day").removeClass('mec-selected-day');
|
989 |
+
$('.mec-calendar-day').unbind('click');
|
990 |
+
}
|
991 |
+
}
|
992 |
+
|
993 |
},
|
994 |
error: function()
|
995 |
{
|
1242 |
var year = $(this).data('mec-year');
|
1243 |
var month = $(this).data('mec-month');
|
1244 |
|
1245 |
+
setMonth(year, month, active_week, true);
|
1246 |
});
|
1247 |
}
|
1248 |
|
1249 |
+
function search(year, month, week, navigation_click)
|
1250 |
{
|
1251 |
var week_number = (String(week).slice(-1));
|
1252 |
|
1286 |
});
|
1287 |
}
|
1288 |
|
1289 |
+
function setMonth(year, month, week, navigation_click)
|
1290 |
{
|
1291 |
var month_id = ''+year+month;
|
1292 |
var week_number = (String(week).slice(-1));
|
1293 |
|
1294 |
active_month = month;
|
1295 |
active_year = year;
|
1296 |
+
navigation_click = navigation_click || false;
|
1297 |
+
|
1298 |
// Month exists so we just show it
|
1299 |
if($("#mec_weekly_view_month_"+settings.id+"_"+month_id).length)
|
1300 |
{
|
1313 |
$.ajax(
|
1314 |
{
|
1315 |
url: settings.ajax_url,
|
1316 |
+
data: "action=mec_weekly_view_load_month&mec_year="+year+"&mec_month="+month+"&mec_week="+week_number+"&"+settings.atts+"&apply_sf_date=0"+"&navigator_click="+navigation_click,
|
1317 |
dataType: "json",
|
1318 |
type: "post",
|
1319 |
success: function(response)
|
1486 |
var year = $(this).data('mec-year');
|
1487 |
var month = $(this).data('mec-month');
|
1488 |
|
1489 |
+
setMonth(year, month, current_monthday, true);
|
1490 |
});
|
1491 |
}
|
1492 |
|
1593 |
});
|
1594 |
}
|
1595 |
|
1596 |
+
function setMonth(year, month, day, navigation_click)
|
1597 |
{
|
1598 |
var month_id = '' + year + month;
|
1599 |
|
1600 |
active_month = month;
|
1601 |
active_year = year;
|
1602 |
active_day = day;
|
1603 |
+
navigation_click = navigation_click || false;
|
1604 |
+
|
1605 |
// Month exists so we just show it
|
1606 |
if($("#mec_daily_view_month_"+settings.id+"_"+month_id).length)
|
1607 |
{
|
1620 |
$.ajax(
|
1621 |
{
|
1622 |
url: settings.ajax_url,
|
1623 |
+
data: "action=mec_daily_view_load_month&mec_year="+year+"&mec_month="+month+"&mec_day="+day+"&"+settings.atts+"&apply_sf_date=0"+"&navigator_click="+navigation_click,
|
1624 |
dataType: "json",
|
1625 |
type: "post",
|
1626 |
success: function(response)
|
2301 |
current_month_divider: '',
|
2302 |
end_date: '',
|
2303 |
offset: 0,
|
2304 |
+
limit: 0
|
2305 |
}, options);
|
2306 |
|
2307 |
// Set onclick Listeners
|
2427 |
|
2428 |
mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
|
2429 |
});
|
2430 |
+
|
2431 |
$("#mec_skin_"+settings.id+" .mec-event-image a img").off('click').on('click', function(e)
|
2432 |
{
|
2433 |
e.preventDefault();
|
2453 |
type: "post",
|
2454 |
success: function(response)
|
2455 |
{
|
2456 |
+
if(response.count == '0')
|
2457 |
{
|
2458 |
// Remove loading Class
|
2459 |
$("#mec_skin_"+settings.id+" .mec-load-more-button").removeClass("mec-load-more-loading");
|
3434 |
$(this).text($(this).data('imperial'));
|
3435 |
}
|
3436 |
});
|
3437 |
+
|
3438 |
+
// FES Speakers Adding
|
3439 |
+
$('#mec_add_speaker_button').on('click', function()
|
3440 |
+
{
|
3441 |
+
let $this = this;
|
3442 |
+
let content = $($this).parent().find('input');
|
3443 |
+
let list = $('#mec-fes-speakers-list');
|
3444 |
+
let key = list.find('.mec-error').length;
|
3445 |
+
|
3446 |
+
$($this).prop("disabled", true).css('cursor', 'wait');
|
3447 |
+
$.post(ajaxurl,
|
3448 |
+
{
|
3449 |
+
action: "speaker_adding",
|
3450 |
+
content: content.val(),
|
3451 |
+
key: key
|
3452 |
+
})
|
3453 |
+
.done(function(data)
|
3454 |
+
{
|
3455 |
+
if($(data).hasClass('mec-error'))
|
3456 |
+
{
|
3457 |
+
list.prepend(data);
|
3458 |
+
setTimeout(function()
|
3459 |
+
{
|
3460 |
+
$(`#mec-speaker-error-${key}`).remove();
|
3461 |
+
}, 1500);
|
3462 |
+
}
|
3463 |
+
else
|
3464 |
+
{
|
3465 |
+
list.html(data);
|
3466 |
+
content.val('');
|
3467 |
+
}
|
3468 |
+
$($this).prop("disabled", false).css('cursor', 'pointer');
|
3469 |
+
});
|
3470 |
+
});
|
3471 |
});
|
3472 |
})(jQuery);
|
changelog.txt
CHANGED
@@ -1,4 +1,21 @@
|
|
1 |
-
v 4.4.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Added: Search bar shortcode
|
3 |
- Added: Organizer payment options
|
4 |
- Added: MEC shortcode element for the Divi builder
|
1 |
+
v 4.4.5 - 3 August 2019
|
2 |
+
- Added: Stripe Connect gateway to divide the booking payment between organizer and site owner
|
3 |
+
- Added: Ability to insert new speakers from "Frontend Event Submission"
|
4 |
+
- Improved: Only the role of administrators can see the license
|
5 |
+
- Fixed: Agreement field type
|
6 |
+
- Fixed: Booking Limit per user email option
|
7 |
+
- Fixed: General search function in WordPress Media, Pages, Posts and all custom post types caused by Search Bar feature
|
8 |
+
- Fixed: Show "Sold Out" badge in monthly skin when an occurence is sold out completely
|
9 |
+
- Fixed "Load More" button at the bottom of the events page
|
10 |
+
- Fixed: Import from EventOn (when organizer "tel" field contains an email)
|
11 |
+
- Fixed: The mec_button and tiny_mce in FES form (JS error)
|
12 |
+
- Fixed: Popup image src on some of the themes
|
13 |
+
- Fixed: Back to Taxonomy Items when editing items (Organizers, Labels, Locations, Speaker)
|
14 |
+
- Fixed: Unclickable settings menus
|
15 |
+
- Fixed: Slider and Carousel view when events don't have featured images
|
16 |
+
- Fixed: Some minor issues
|
17 |
+
|
18 |
+
v 4.4.0 - 15 July 2019
|
19 |
- Added: Search bar shortcode
|
20 |
- Added: Organizer payment options
|
21 |
- Added: MEC shortcode element for the Divi builder
|
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-
|
6 |
-
"PO-Revision-Date: 2019-
|
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:
|
27 |
msgid "Content"
|
28 |
msgstr "Inhalt"
|
29 |
|
@@ -68,7 +68,7 @@ msgid "Select Type"
|
|
68 |
msgstr "Alles Auswählen"
|
69 |
|
70 |
#: app/features/colors.php:50 app/features/fes/form.php:794
|
71 |
-
#: app/features/mec/settings.php:
|
72 |
msgid "Event Color"
|
73 |
msgstr "Farbe der Veranstaltung"
|
74 |
|
@@ -83,13 +83,13 @@ msgstr "Farbe der Veranstaltung"
|
|
83 |
msgid "Settings"
|
84 |
msgstr "Einstellungen"
|
85 |
|
86 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
87 |
-
#: app/features/mec/booking.php:
|
88 |
-
#: app/features/mec/ie.php:
|
89 |
-
#: app/features/mec/modules.php:
|
90 |
-
#: app/features/mec/regform.php:
|
91 |
-
#: app/features/mec/settings.php:
|
92 |
-
#: app/features/mec/styles.php:
|
93 |
#: app/features/mec/support.php:29
|
94 |
msgid "Booking Form"
|
95 |
msgstr "Buchungsformular"
|
@@ -108,13 +108,13 @@ msgstr ""
|
|
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:
|
112 |
-
#: app/features/mec/gateways.php:
|
113 |
-
#: app/features/mec/ie.php:
|
114 |
-
#: app/features/mec/modules.php:
|
115 |
-
#: app/features/mec/regform.php:
|
116 |
-
#: app/features/mec/single.php:
|
117 |
-
#: app/features/mec/styling.php:
|
118 |
msgid "Payment Gateways"
|
119 |
msgstr "Zahlungs-Gateways"
|
120 |
|
@@ -128,12 +128,12 @@ msgstr ""
|
|
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:
|
132 |
-
#: app/features/mec/gateways.php:
|
133 |
-
#: app/features/mec/messages.php:
|
134 |
-
#: app/features/mec/notifications.php:
|
135 |
-
#: app/features/mec/settings.php:
|
136 |
-
#: app/features/mec/styles.php:
|
137 |
#: app/features/mec/support.php:45
|
138 |
msgid "Notifications"
|
139 |
msgstr "Benachrichtigungen"
|
@@ -217,7 +217,7 @@ msgstr ""
|
|
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:
|
221 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
222 |
#: app/features/mec/styling.php:50
|
223 |
msgid "General Options"
|
@@ -227,7 +227,7 @@ msgstr "Allgemeine Einstellungen"
|
|
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:
|
231 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
232 |
#: app/features/mec/styling.php:52
|
233 |
msgid "Slugs/Permalinks"
|
@@ -241,19 +241,19 @@ msgstr "Event Details / Einzelveranstaltungsseite"
|
|
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:
|
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:
|
251 |
-
#: app/features/mec/gateways.php:
|
252 |
-
#: app/features/mec/messages.php:
|
253 |
-
#: app/features/mec/modules.php:
|
254 |
-
#: app/features/mec/notifications.php:
|
255 |
-
#: app/features/mec/settings.php:
|
256 |
-
#: app/features/mec/styles.php:
|
257 |
msgid "Google Maps Options"
|
258 |
msgstr "Google Maps Einstellungen"
|
259 |
|
@@ -261,7 +261,7 @@ msgstr "Google Maps Einstellungen"
|
|
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:
|
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"
|
@@ -272,18 +272,18 @@ msgstr "Google Recaptcha Einstellungen"
|
|
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:
|
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:
|
281 |
-
#: app/features/mec/gateways.php:
|
282 |
-
#: app/features/mec/messages.php:
|
283 |
-
#: app/features/mec/modules.php:
|
284 |
-
#: app/features/mec/regform.php:
|
285 |
-
#: app/features/mec/single.php:
|
286 |
-
#: app/features/mec/styling.php:
|
287 |
msgid "Social Networks"
|
288 |
msgstr "Soziale Netzwerke"
|
289 |
|
@@ -295,7 +295,7 @@ msgstr "Nächstes Veranstaltung Modul"
|
|
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:
|
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"
|
@@ -312,44 +312,44 @@ 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:
|
316 |
-
#: app/features/mec/booking.php:
|
317 |
-
#: app/features/mec/gateways.php:
|
318 |
-
#: app/features/mec/gateways.php:
|
319 |
-
#: app/features/mec/ie.php:
|
320 |
-
#: app/features/mec/messages.php:
|
321 |
-
#: app/features/mec/messages.php:
|
322 |
-
#: app/features/mec/modules.php:
|
323 |
-
#: app/features/mec/notifications.php:
|
324 |
-
#: app/features/mec/notifications.php:
|
325 |
-
#: app/features/mec/notifications.php:
|
326 |
-
#: app/features/mec/regform.php:
|
327 |
-
#: app/features/mec/settings.php:
|
328 |
-
#: app/features/mec/settings.php:
|
329 |
-
#: app/features/mec/single.php:
|
330 |
-
#: app/features/mec/styles.php:
|
331 |
-
#: app/features/mec/styles.php:
|
332 |
-
#: app/features/mec/styling.php:
|
333 |
msgid "Booking"
|
334 |
msgstr "Buchung / Reservierung"
|
335 |
|
336 |
-
#: app/features/contextual.php:318 app/features/mec/booking.php:
|
337 |
-
#: app/features/mec/booking.php:
|
338 |
-
#: app/features/mec/ie.php:
|
339 |
-
#: app/features/mec/modules.php:
|
340 |
-
#: app/features/mec/regform.php:
|
341 |
-
#: app/features/mec/single.php:
|
342 |
-
#: app/features/mec/styling.php:
|
343 |
msgid "Coupons"
|
344 |
msgstr "Gutscheine"
|
345 |
|
346 |
-
#: app/features/contextual.php:326 app/features/mec/booking.php:
|
347 |
-
#: app/features/mec/gateways.php:
|
348 |
-
#: app/features/mec/messages.php:
|
349 |
-
#: app/features/mec/modules.php:
|
350 |
-
#: app/features/mec/regform.php:
|
351 |
-
#: app/features/mec/single.php:
|
352 |
-
#: app/features/mec/styling.php:
|
353 |
msgid "BuddyPress Integration"
|
354 |
msgstr "Buddy Press Integration"
|
355 |
|
@@ -357,7 +357,7 @@ msgstr "Buddy Press Integration"
|
|
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:
|
361 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
362 |
#: app/features/mec/styling.php:59
|
363 |
msgid "Mailchimp Integration"
|
@@ -368,7 +368,7 @@ msgid "MEC Activation"
|
|
368 |
msgstr "MEC Aktivierung"
|
369 |
|
370 |
#: app/features/events.php:137 app/features/ix/export.php:34
|
371 |
-
#: app/features/mec/dashboard.php:
|
372 |
#: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
|
373 |
msgid "Events"
|
374 |
msgstr "Veranstaltungen"
|
@@ -415,80 +415,80 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
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:
|
419 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
420 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
421 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
422 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
423 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
424 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
425 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
426 |
-
#: app/features/mec/settings.php:
|
427 |
-
#: app/libraries/
|
428 |
-
#: app/skins/single
|
429 |
-
#: app/skins/single/
|
430 |
-
#: app/skins/single/modern.php:110
|
431 |
msgid "Category"
|
432 |
msgstr "Kategorie"
|
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:
|
437 |
msgid "Categories"
|
438 |
msgstr "Kategorien"
|
439 |
|
440 |
#: app/features/events.php:173 app/features/labels.php:71
|
441 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
442 |
-
#: app/features/speakers.php:
|
443 |
#, php-format
|
444 |
msgid "All %s"
|
445 |
msgstr "Alle %s"
|
446 |
|
447 |
#: app/features/events.php:174 app/features/labels.php:72
|
448 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
449 |
-
#: app/features/speakers.php:
|
450 |
#, php-format
|
451 |
msgid "Edit %s"
|
452 |
msgstr "Bearbeiten %s"
|
453 |
|
454 |
#: app/features/events.php:175 app/features/labels.php:73
|
455 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
456 |
-
#: app/features/speakers.php:
|
457 |
#, php-format
|
458 |
msgid "View %s"
|
459 |
msgstr "Ansicht %s"
|
460 |
|
461 |
#: app/features/events.php:176 app/features/labels.php:74
|
462 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
463 |
-
#: app/features/speakers.php:
|
464 |
#, php-format
|
465 |
msgid "Update %s"
|
466 |
msgstr "Update %s"
|
467 |
|
468 |
#: app/features/events.php:177 app/features/labels.php:75
|
469 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
470 |
-
#: app/features/speakers.php:
|
471 |
#, php-format
|
472 |
msgid "Add New %s"
|
473 |
msgstr "Neu hinzufügen%s"
|
474 |
|
475 |
#: app/features/events.php:178 app/features/labels.php:76
|
476 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
477 |
-
#: app/features/speakers.php:
|
478 |
#, php-format
|
479 |
msgid "New %s Name"
|
480 |
msgstr "Neuer %s Name"
|
481 |
|
482 |
#: app/features/events.php:179 app/features/labels.php:77
|
483 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
484 |
-
#: app/features/speakers.php:
|
485 |
#, php-format
|
486 |
msgid "Popular %s"
|
487 |
msgstr "Beliebt %s"
|
488 |
|
489 |
#: app/features/events.php:180 app/features/labels.php:78
|
490 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
491 |
-
#: app/features/speakers.php:
|
492 |
#, php-format
|
493 |
msgid "Search %s"
|
494 |
msgstr "Suche %s"
|
@@ -505,18 +505,18 @@ msgstr "Wählen Sie ein Symbol"
|
|
505 |
msgid "Event Details"
|
506 |
msgstr "Veranstaltungsdetails"
|
507 |
|
508 |
-
#: app/features/events.php:322 app/features/events.php:
|
509 |
-
#: app/features/events.php:
|
510 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
511 |
-
#: app/features/mec/settings.php:
|
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:
|
519 |
-
#: app/skins/single/default.php:
|
520 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
521 |
msgid "Cost"
|
522 |
msgstr " Preis"
|
@@ -529,25 +529,25 @@ msgstr "Zusätzliche Anmerkungen zum Event "
|
|
529 |
msgid "Guest Data"
|
530 |
msgstr "Gäste Daten"
|
531 |
|
532 |
-
#: app/features/events.php:432 app/features/events.php:
|
533 |
-
#: app/features/fes/form.php:668 app/features/labels.php:
|
534 |
-
#: app/features/mec/regform.php:27 app/features/organizers.php:
|
535 |
#: app/features/profile/profile.php:90 app/libraries/notifications.php:673
|
536 |
-
#: app/modules/booking/steps/form.php:
|
537 |
msgid "Name"
|
538 |
msgstr "Name"
|
539 |
|
540 |
-
#: app/features/events.php:433 app/features/events.php:
|
541 |
-
#: app/features/events.php:
|
542 |
-
#: app/features/mec/regform.php:39 app/features/mec/regform.php:
|
543 |
-
#: app/features/organizers.php:
|
544 |
-
#: app/features/profile/profile.php:93 app/features/speakers.php:
|
545 |
-
#: app/features/speakers.php:
|
546 |
-
#: app/libraries/main.php:
|
547 |
-
#: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:
|
548 |
-
#: app/modules/booking/steps/form.php:
|
549 |
-
#: app/skins/single.php:
|
550 |
-
#: app/skins/single/default.php:
|
551 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
552 |
msgid "Email"
|
553 |
msgstr "Email"
|
@@ -557,11 +557,11 @@ 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:
|
561 |
-
#: app/features/events.php:
|
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:
|
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
|
@@ -579,25 +579,25 @@ msgid "Start Date"
|
|
579 |
msgstr "Start Datum"
|
580 |
|
581 |
#: app/features/events.php:519 app/features/events.php:611
|
582 |
-
#: app/features/events.php:
|
583 |
-
#: app/features/events.php:
|
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:
|
590 |
-
#: app/features/events.php:
|
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:
|
597 |
-
#: app/features/events.php:
|
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:
|
601 |
msgid "End Date"
|
602 |
msgstr "Ende Datum"
|
603 |
|
@@ -632,18 +632,18 @@ msgstr ""
|
|
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:
|
636 |
-
#: app/features/events.php:
|
637 |
-
#: app/features/events.php:
|
638 |
-
#: app/features/events.php:
|
639 |
-
#: app/features/events.php:
|
640 |
-
#: app/features/events.php:
|
641 |
-
#: app/features/fes/form.php:630 app/features/locations.php:
|
642 |
-
#: app/features/mec/booking.php:
|
643 |
-
#: app/features/mec/booking.php:
|
644 |
-
#: app/features/mec/booking.php:
|
645 |
-
#: app/features/mec/booking.php:
|
646 |
-
#: app/features/mec/booking.php:
|
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
|
@@ -674,32 +674,33 @@ msgstr ""
|
|
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:
|
678 |
-
#: app/features/mec/modules.php:
|
679 |
-
#: app/features/mec/modules.php:
|
680 |
-
#: app/features/mec/notifications.php:
|
681 |
-
#: app/features/mec/notifications.php:
|
682 |
-
#: app/features/mec/notifications.php:
|
683 |
-
#: app/features/mec/notifications.php:
|
684 |
-
#: app/features/mec/notifications.php:
|
685 |
-
#: app/features/mec/notifications.php:
|
686 |
-
#: app/features/mec/notifications.php:
|
687 |
-
#: app/features/mec/
|
688 |
-
#: app/features/mec/settings.php:
|
689 |
-
#: app/features/mec/settings.php:
|
690 |
-
#: app/features/mec/settings.php:
|
691 |
-
#: app/features/mec/settings.php:
|
692 |
-
#: app/features/mec/settings.php:
|
693 |
-
#: app/features/mec/settings.php:
|
694 |
-
#: app/features/mec/settings.php:
|
695 |
-
#: app/features/mec/settings.php:
|
696 |
-
#: app/features/mec/
|
697 |
-
#: app/features/mec/single.php:
|
698 |
-
#: app/features/mec/single.php:
|
699 |
-
#: app/features/mec/single.php:
|
700 |
-
#: app/features/mec/
|
701 |
-
#: app/features/
|
702 |
-
#: app/
|
|
|
703 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
704 |
#: app/skins/single/modern.php:133
|
705 |
msgid "Read More"
|
@@ -714,7 +715,7 @@ msgid "Repeats"
|
|
714 |
msgstr "Wiederholend"
|
715 |
|
716 |
#: app/features/events.php:692 app/features/fes/form.php:338
|
717 |
-
#: app/features/mec/dashboard.php:
|
718 |
msgid "Daily"
|
719 |
msgstr "Täglich"
|
720 |
|
@@ -731,17 +732,17 @@ 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:
|
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:
|
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:
|
745 |
msgid "Yearly"
|
746 |
msgstr "Jährlich"
|
747 |
|
@@ -809,16 +810,16 @@ msgstr "Samstag"
|
|
809 |
msgid "Sunday"
|
810 |
msgstr "Sonntag"
|
811 |
|
812 |
-
#: app/features/events.php:786 app/features/events.php:
|
813 |
-
#: app/features/events.php:
|
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:
|
821 |
-
#: app/features/events.php:
|
822 |
#: app/features/fes/form.php:367
|
823 |
#, fuzzy
|
824 |
#| msgid "Enabled"
|
@@ -827,9 +828,10 @@ 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:
|
831 |
-
#: app/features/events.php:
|
832 |
-
#: app/features/events.php:
|
|
|
833 |
msgid "Add"
|
834 |
msgstr "Hinzufügen"
|
835 |
|
@@ -907,12 +909,12 @@ msgstr ""
|
|
907 |
msgid "Exclude certain days"
|
908 |
msgstr "Ausschluss bestimmter Tage"
|
909 |
|
910 |
-
#: app/features/events.php:1130 app/features/events.php:
|
911 |
-
#: app/features/mec/regform.php:
|
912 |
-
#: app/libraries/main.php:
|
913 |
#: app/modules/booking/steps/tickets.php:22
|
914 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
915 |
-
#: app/skins/single/default.php:
|
916 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
917 |
msgid "Date"
|
918 |
msgstr "Datum"
|
@@ -924,12 +926,12 @@ msgid ""
|
|
924 |
"multiple day occurrences."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: app/features/events.php:1190 app/libraries/render.php:
|
928 |
msgid "Day 1"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: app/features/events.php:1212 app/features/mec/settings.php:
|
932 |
-
#: app/skins/single.php:
|
933 |
msgid "Hourly Schedule"
|
934 |
msgstr "Stundenplan"
|
935 |
|
@@ -950,32 +952,32 @@ 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:
|
954 |
-
#: app/features/events.php:
|
955 |
-
#: app/features/events.php:
|
956 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
957 |
-
#: app/features/ix.php:2781 app/features/mec/booking.php:
|
958 |
-
#: app/features/mec/booking.php:
|
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:
|
965 |
-
#: app/features/events.php:
|
966 |
-
#: app/features/events.php:
|
967 |
-
#: app/features/events.php:
|
968 |
-
#: app/features/events.php:
|
969 |
-
#: app/features/fes/list.php:78 app/features/mec/booking.php:
|
970 |
-
#: app/features/mec/booking.php:
|
971 |
-
#: app/features/mec/booking.php:
|
972 |
-
#: app/libraries/main.php:
|
973 |
-
#: app/libraries/main.php:
|
974 |
-
#: app/libraries/main.php:
|
975 |
-
#: app/libraries/main.php:
|
976 |
-
#: app/libraries/main.php:
|
977 |
-
#: app/libraries/main.php:
|
978 |
-
#: app/libraries/main.php:
|
979 |
msgid "Remove"
|
980 |
msgstr "Entfernen"
|
981 |
|
@@ -994,21 +996,22 @@ 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:
|
998 |
-
#: app/features/events.php:
|
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:
|
1004 |
-
#: app/features/mec.php:340 app/features/mec/booking.php:
|
1005 |
-
#: app/features/mec/gateways.php:
|
1006 |
-
#: app/features/mec/messages.php:
|
1007 |
-
#: app/features/mec/
|
1008 |
-
#: app/features/mec/
|
1009 |
-
#: app/features/mec/
|
1010 |
-
#: app/features/mec/
|
1011 |
-
#: app/
|
|
|
1012 |
msgid "Speakers"
|
1013 |
msgstr ""
|
1014 |
|
@@ -1019,12 +1022,12 @@ 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:
|
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:
|
1028 |
msgid "Event Link"
|
1029 |
msgstr "Veranstaltungslink"
|
1030 |
|
@@ -1052,9 +1055,9 @@ 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:
|
1056 |
-
#: app/skins/single.php:
|
1057 |
-
#: app/skins/single/default.php:
|
1058 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1059 |
#: app/widgets/single.php:107
|
1060 |
msgid "More Info"
|
@@ -1083,135 +1086,146 @@ msgstr ""
|
|
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:
|
1087 |
msgid "Total booking limits"
|
1088 |
msgstr "Gesamt Verfügbare Plätze"
|
1089 |
|
1090 |
-
#: app/features/events.php:
|
1091 |
-
#: app/features/events.php:
|
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:
|
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:
|
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:
|
1114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1115 |
msgid "Tickets"
|
1116 |
msgstr "Tickets"
|
1117 |
|
1118 |
-
#: app/features/events.php:
|
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:
|
1126 |
msgid "Ticket Name"
|
1127 |
msgstr "Ticket Name"
|
1128 |
|
1129 |
-
#: app/features/events.php:
|
1130 |
-
#: app/features/events.php:
|
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:
|
1136 |
-
#: app/features/events.php:
|
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:
|
1142 |
-
#: app/features/events.php:
|
1143 |
-
#: app/features/events.php:
|
1144 |
-
#: app/features/events.php:
|
1145 |
-
#: app/features/events.php:
|
1146 |
-
#: app/features/events.php:
|
1147 |
-
#: app/features/mec/booking.php:
|
1148 |
-
#: app/features/mec/booking.php:
|
1149 |
msgid "Price"
|
1150 |
msgstr "Preis"
|
1151 |
|
1152 |
-
#: app/features/events.php:
|
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:
|
1157 |
-
#: app/features/events.php:
|
1158 |
msgid "Price Label"
|
1159 |
msgstr "Preisschild"
|
1160 |
|
1161 |
-
#: app/features/events.php:
|
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:
|
1166 |
msgid "Available Tickets"
|
1167 |
msgstr "Verfügbare Tickets: %s "
|
1168 |
|
1169 |
-
#: app/features/events.php:
|
1170 |
#, fuzzy
|
1171 |
#| msgid "Price Label"
|
1172 |
msgid "Price per Date"
|
1173 |
msgstr "Preisschild"
|
1174 |
|
1175 |
-
#: app/features/events.php:
|
1176 |
-
#: app/features/events.php:
|
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:
|
1181 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1182 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1183 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1184 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1185 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1186 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1187 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1188 |
-
#: app/features/mec/settings.php:
|
|
|
1189 |
msgid "Label"
|
1190 |
msgstr "Label"
|
1191 |
|
1192 |
-
#: app/features/events.php:
|
1193 |
msgid "Fees"
|
1194 |
msgstr "Gebühren"
|
1195 |
|
1196 |
-
#: app/features/events.php:
|
1197 |
-
#: app/features/events.php:
|
1198 |
msgid "Inherit from global options"
|
1199 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1200 |
|
1201 |
-
#: app/features/events.php:
|
1202 |
-
#: app/features/mec/booking.php:
|
1203 |
msgid "Fee Title"
|
1204 |
msgstr "Gebühren Name"
|
1205 |
|
1206 |
-
#: app/features/events.php:
|
1207 |
-
#: app/features/events.php:
|
1208 |
-
#: app/features/mec/booking.php:
|
1209 |
-
#: app/features/mec/booking.php:
|
1210 |
msgid "Amount"
|
1211 |
msgstr "Betrag"
|
1212 |
|
1213 |
-
#: app/features/events.php:
|
1214 |
-
#: app/features/mec/booking.php:
|
1215 |
msgid ""
|
1216 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1217 |
"otherwise considered as percentage"
|
@@ -1219,93 +1233,93 @@ msgstr ""
|
|
1219 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1220 |
"sonst als Prozentsatz"
|
1221 |
|
1222 |
-
#: app/features/events.php:
|
1223 |
-
#: app/features/mec/booking.php:
|
1224 |
msgid "Percent"
|
1225 |
msgstr "Prozent"
|
1226 |
|
1227 |
-
#: app/features/events.php:
|
1228 |
-
#: app/features/mec/booking.php:
|
1229 |
msgid "Amount (Per Ticket)"
|
1230 |
msgstr "Betrag (pro Ticket)"
|
1231 |
|
1232 |
-
#: app/features/events.php:
|
1233 |
-
#: app/features/mec/booking.php:
|
1234 |
msgid "Amount (Per Booking)"
|
1235 |
msgstr "Betrag (pro Buchung)"
|
1236 |
|
1237 |
-
#: app/features/events.php:
|
1238 |
msgid "Ticket Variations / Options"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: app/features/events.php:
|
1242 |
-
#: app/features/mec/booking.php:
|
1243 |
#, fuzzy
|
1244 |
#| msgid "Option"
|
1245 |
msgid "Option Price"
|
1246 |
msgstr "Option"
|
1247 |
|
1248 |
-
#: app/features/events.php:
|
1249 |
-
#: app/features/events.php:
|
1250 |
-
#: app/features/mec/booking.php:
|
1251 |
-
#: app/features/mec/booking.php:
|
1252 |
#, fuzzy
|
1253 |
#| msgid "Amount (Per Ticket)"
|
1254 |
msgid "Maximum Per Ticket"
|
1255 |
msgstr "Betrag (pro Ticket)"
|
1256 |
|
1257 |
-
#: app/features/events.php:
|
1258 |
-
#: app/features/mec/booking.php:
|
1259 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: app/features/events.php:
|
1263 |
-
#: app/libraries/main.php:
|
1264 |
#, fuzzy
|
1265 |
#| msgid "Name"
|
1266 |
msgid "MEC Name"
|
1267 |
msgstr "Name"
|
1268 |
|
1269 |
-
#: app/features/events.php:
|
1270 |
-
#: app/libraries/main.php:
|
1271 |
#, fuzzy
|
1272 |
#| msgid "Email"
|
1273 |
msgid "MEC Email"
|
1274 |
msgstr "Email"
|
1275 |
|
1276 |
-
#: app/features/events.php:
|
1277 |
-
#: app/libraries/main.php:
|
1278 |
msgid "Text"
|
1279 |
msgstr "Text"
|
1280 |
|
1281 |
-
#: app/features/events.php:
|
1282 |
-
#: app/features/organizers.php:
|
1283 |
-
#: app/features/speakers.php:
|
1284 |
-
#: app/features/speakers.php:
|
1285 |
msgid "Tel"
|
1286 |
msgstr "Tel"
|
1287 |
|
1288 |
-
#: app/features/events.php:
|
1289 |
-
#: app/libraries/main.php:
|
1290 |
msgid "File"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: app/features/events.php:
|
1294 |
-
#: app/libraries/main.php:
|
1295 |
msgid "Textarea"
|
1296 |
msgstr "Textbereich"
|
1297 |
|
1298 |
-
#: app/features/events.php:
|
1299 |
-
#: app/libraries/main.php:
|
1300 |
msgid "Checkboxes"
|
1301 |
msgstr "Checkboxes"
|
1302 |
|
1303 |
-
#: app/features/events.php:
|
1304 |
-
#: app/libraries/main.php:
|
1305 |
msgid "Radio Buttons"
|
1306 |
msgstr "Radio Buttons"
|
1307 |
|
1308 |
-
#: app/features/events.php:
|
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
|
@@ -1319,191 +1333,192 @@ msgstr "Radio Buttons"
|
|
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:
|
1323 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1324 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1325 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1326 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1327 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1328 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1329 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1330 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1331 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1332 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1333 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1334 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1335 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1336 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1337 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1338 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1339 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1340 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1341 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1342 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1343 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1344 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1345 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1346 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1347 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1348 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1349 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1350 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1351 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1352 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1353 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1354 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1355 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1356 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1357 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1358 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1359 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1360 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1361 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1362 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1363 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1364 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1365 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1366 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1367 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1368 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1369 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1370 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1371 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1372 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1373 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1374 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1375 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1376 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1377 |
-
#: app/features/mec/regform.php:
|
1378 |
msgid "Dropdown"
|
1379 |
msgstr "Dropdown"
|
1380 |
|
1381 |
-
#: app/features/events.php:
|
1382 |
-
#: app/libraries/main.php:
|
1383 |
msgid "Agreement"
|
1384 |
msgstr "Zustimmung"
|
1385 |
|
1386 |
-
#: app/features/events.php:
|
1387 |
-
#: app/libraries/main.php:
|
1388 |
msgid "Paragraph"
|
1389 |
msgstr "Absatz"
|
1390 |
|
1391 |
-
#: app/features/events.php:
|
1392 |
-
#: app/features/events.php:
|
1393 |
#, php-format
|
1394 |
msgid "Show all %s"
|
1395 |
msgstr "Zeige alle %s"
|
1396 |
|
1397 |
-
#: app/features/events.php:
|
1398 |
msgid "labels"
|
1399 |
msgstr "Labels + Eventstatus"
|
1400 |
|
1401 |
-
#: app/features/events.php:
|
1402 |
msgid "locations"
|
1403 |
msgstr "Orte"
|
1404 |
|
1405 |
-
#: app/features/events.php:
|
1406 |
msgid "organizers"
|
1407 |
msgstr "Veranstalter"
|
1408 |
|
1409 |
-
#: app/features/events.php:
|
1410 |
-
#: app/features/events.php:
|
1411 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1412 |
-
#: app/features/locations.php:
|
1413 |
-
#: app/features/locations.php:
|
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:
|
1418 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1419 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1420 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1421 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1422 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1423 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1424 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1425 |
-
#: app/features/mec/settings.php:
|
1426 |
-
#: app/libraries/main.php:
|
1427 |
-
#: app/skins
|
1428 |
-
#: app/skins/single
|
1429 |
-
#: app/skins/single/
|
1430 |
-
#: app/skins/single/modern.php:94
|
1431 |
msgid "Location"
|
1432 |
msgstr "Ort"
|
1433 |
|
1434 |
-
#: app/features/events.php:
|
1435 |
-
#: app/features/events.php:
|
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:
|
1440 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1441 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1442 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1443 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1444 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1445 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1446 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1447 |
-
#: app/features/mec/settings.php:
|
1448 |
-
#: app/features/organizers.php:
|
1449 |
-
#: app/features/organizers.php:
|
1450 |
-
#: app/
|
1451 |
-
#: app/skins
|
1452 |
-
#: app/skins/single/default.php:
|
1453 |
-
#: app/skins/single/
|
|
|
1454 |
msgid "Organizer"
|
1455 |
msgstr "Veranstalter"
|
1456 |
|
1457 |
-
#: app/features/events.php:
|
1458 |
msgid "Repeat"
|
1459 |
msgstr "Wiederholen"
|
1460 |
|
1461 |
-
#: app/features/events.php:
|
1462 |
msgid "Author"
|
1463 |
msgstr "Autor"
|
1464 |
|
1465 |
-
#: app/features/events.php:
|
1466 |
msgid "iCal Export"
|
1467 |
msgstr "ical Export"
|
1468 |
|
1469 |
-
#: app/features/events.php:
|
1470 |
msgid "CSV Export"
|
1471 |
msgstr "CSV Export"
|
1472 |
|
1473 |
-
#: app/features/events.php:
|
1474 |
msgid "MS Excel Export"
|
1475 |
msgstr "MS Excel Export"
|
1476 |
|
1477 |
-
#: app/features/events.php:
|
1478 |
msgid "XML Export"
|
1479 |
msgstr "XML Export"
|
1480 |
|
1481 |
-
#: app/features/events.php:
|
1482 |
msgid "JSON Export"
|
1483 |
msgstr "JSON Export"
|
1484 |
|
1485 |
-
#: app/features/events.php:
|
1486 |
msgid "Duplicate"
|
1487 |
msgstr "Kopie"
|
1488 |
|
1489 |
-
#: app/features/events.php:
|
1490 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1491 |
-
#: app/features/labels.php:
|
1492 |
-
#: app/features/organizers.php:
|
1493 |
msgid "ID"
|
1494 |
msgstr "ID"
|
1495 |
|
1496 |
-
#: app/features/events.php:
|
1497 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1498 |
msgid "Link"
|
1499 |
msgstr "Link"
|
1500 |
|
1501 |
-
#: app/features/events.php:
|
1502 |
#, php-format
|
1503 |
msgid "%s Tel"
|
1504 |
msgstr "%s Tel"
|
1505 |
|
1506 |
-
#: app/features/events.php:
|
1507 |
#, php-format
|
1508 |
msgid "%s Email"
|
1509 |
msgstr "%s Email"
|
@@ -1583,7 +1598,7 @@ msgstr "Benutzerdaten"
|
|
1583 |
msgid "eg. yourname@gmail.com"
|
1584 |
msgstr "z.B. IhrName@ihrewebseite.de"
|
1585 |
|
1586 |
-
#: app/features/fes/form.php:669 app/features/organizers.php:
|
1587 |
msgid "eg. John Smith"
|
1588 |
msgstr "z.B. Max Mustermann"
|
1589 |
|
@@ -1596,7 +1611,7 @@ msgstr ""
|
|
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:
|
1600 |
msgid "Featured Image"
|
1601 |
msgstr "Ausgewähltes Bild"
|
1602 |
|
@@ -1605,10 +1620,10 @@ msgid "Remove Image"
|
|
1605 |
msgstr "Bild entfernen"
|
1606 |
|
1607 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1608 |
-
#: app/features/labels.php:
|
1609 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1610 |
-
#: app/skins/single.php:
|
1611 |
-
#: app/skins/single/default.php:
|
1612 |
#: app/skins/single/modern.php:214
|
1613 |
msgid "Labels"
|
1614 |
msgstr "Labels"
|
@@ -1623,7 +1638,17 @@ msgid "Insert your desired tags, comma separated."
|
|
1623 |
msgstr ""
|
1624 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
1625 |
|
1626 |
-
#: app/features/fes/form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1627 |
msgid "Submit"
|
1628 |
msgstr "Buchung abschließen"
|
1629 |
|
@@ -1648,12 +1673,12 @@ msgstr "Keine Veranstaltungen gefunden! %s"
|
|
1648 |
msgid "MEC - Import / Export"
|
1649 |
msgstr "MEC - Import / Export"
|
1650 |
|
1651 |
-
#: app/features/ix.php:107 app/features/mec/booking.php:
|
1652 |
-
#: app/features/mec/gateways.php:
|
1653 |
-
#: app/features/mec/messages.php:
|
1654 |
-
#: app/features/mec/notifications.php:
|
1655 |
-
#: app/features/mec/settings.php:
|
1656 |
-
#: app/features/mec/styles.php:
|
1657 |
#: app/features/mec/support.php:73
|
1658 |
msgid "Import / Export"
|
1659 |
msgstr "Import / Export"
|
@@ -1796,7 +1821,7 @@ msgstr "Synchronisation"
|
|
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:
|
1800 |
msgid "Export"
|
1801 |
msgstr "Export"
|
1802 |
|
@@ -1807,7 +1832,7 @@ msgstr "Export"
|
|
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:
|
1811 |
msgid "Import"
|
1812 |
msgstr "Import"
|
1813 |
|
@@ -1830,7 +1855,7 @@ msgstr ""
|
|
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:
|
1834 |
msgid "iCal"
|
1835 |
msgstr "iCal"
|
1836 |
|
@@ -1933,16 +1958,16 @@ msgstr "Umschalten"
|
|
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:
|
1937 |
-
#: app/features/mec/notifications.php:
|
1938 |
-
#: app/features/mec/notifications.php:
|
1939 |
-
#: app/features/mec/notifications.php:
|
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:
|
1944 |
-
#: app/features/mec/modules.php:
|
1945 |
-
#: app/features/mec/settings.php:
|
1946 |
msgid "Checking ..."
|
1947 |
msgstr "Überprüfung"
|
1948 |
|
@@ -1986,17 +2011,17 @@ msgstr ""
|
|
1986 |
msgid "ICS Feed"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: app/features/ix/import.php:46 app/features/mec/booking.php:
|
1990 |
-
#: app/features/mec/booking.php:
|
1991 |
-
#: app/features/mec/booking.php:
|
1992 |
-
#: app/features/mec/modules.php:
|
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:
|
1999 |
-
#: app/features/mec/booking.php:
|
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
|
@@ -2004,8 +2029,8 @@ msgstr ""
|
|
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:
|
2008 |
-
#: app/features/mec/modules.php:
|
2009 |
msgid "Pro version of Modern Events Calendar"
|
2010 |
msgstr ""
|
2011 |
|
@@ -2198,7 +2223,7 @@ msgstr "Automatischer Google Calender Import"
|
|
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:
|
2202 |
msgid "Important Note"
|
2203 |
msgstr "Important Note"
|
2204 |
|
@@ -2318,16 +2343,22 @@ msgstr ""
|
|
2318 |
"Wir empfehlen Ihnen, die importierten Einträge nacheinander auf der MEC Edit "
|
2319 |
"Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
|
2320 |
|
2321 |
-
#: app/features/labels.php:
|
2322 |
-
#: app/features/
|
|
|
|
|
|
|
|
|
|
|
|
|
2323 |
msgid "Color"
|
2324 |
msgstr "Farbe"
|
2325 |
|
2326 |
-
#: app/features/labels.php:
|
2327 |
msgid "Select label color"
|
2328 |
msgstr "Wähle Label Farbe"
|
2329 |
|
2330 |
-
#: app/features/labels.php:
|
2331 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2332 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2333 |
#: app/features/mec/meta_boxes/display_options.php:301
|
@@ -2341,153 +2372,153 @@ msgstr "Wähle Label Farbe"
|
|
2341 |
msgid "Style"
|
2342 |
msgstr "Style"
|
2343 |
|
2344 |
-
#: app/features/labels.php:
|
2345 |
msgid "Normal"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: app/features/labels.php:
|
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:
|
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:
|
2354 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2355 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2356 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:136
|
2357 |
-
#: app/skins/weekly_view/render.php:
|
2358 |
#, fuzzy
|
2359 |
#| msgid "Featured Image"
|
2360 |
msgid "Featured"
|
2361 |
msgstr "Ausgewähltes Bild"
|
2362 |
|
2363 |
-
#: app/features/labels.php:
|
2364 |
-
#: app/libraries/main.php:
|
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:
|
2368 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2369 |
-
#: app/skins/monthly_view/calendar.php:
|
2370 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2371 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2372 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:137
|
2373 |
-
#: app/skins/weekly_view/render.php:
|
2374 |
msgid "Canceled"
|
2375 |
msgstr "Abgesagt"
|
2376 |
|
2377 |
-
#: app/features/labels.php:
|
2378 |
msgid "You can show featured and canceled events by a different style!"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: app/features/labels.php:
|
2382 |
-
#: app/features/organizers.php:
|
2383 |
#: app/modules/booking/steps/tickets.php:38
|
2384 |
msgid "Count"
|
2385 |
msgstr "Zähler"
|
2386 |
|
2387 |
-
#: app/features/labels.php:
|
2388 |
-
#: app/features/organizers.php:
|
2389 |
msgid "Slug"
|
2390 |
msgstr "Slug"
|
2391 |
|
2392 |
-
#: app/features/labels.php:
|
2393 |
#, php-format
|
2394 |
msgid "Event %s"
|
2395 |
msgstr "Event %s"
|
2396 |
|
2397 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2398 |
-
#: app/features/mec/dashboard.php:
|
2399 |
-
#: app/libraries/main.php:
|
2400 |
msgid "Locations"
|
2401 |
msgstr "Orte"
|
2402 |
|
2403 |
-
#: app/features/locations.php:
|
2404 |
-
#: app/features/locations.php:
|
2405 |
msgid "Address"
|
2406 |
msgstr "Adresse"
|
2407 |
|
2408 |
-
#: app/features/locations.php:
|
2409 |
msgid "Enter the location address"
|
2410 |
msgstr "Geben Sie die Veranstaltungsanschrift ein"
|
2411 |
|
2412 |
-
#: app/features/locations.php:
|
2413 |
-
#: app/features/locations.php:
|
2414 |
msgid "Latitude"
|
2415 |
msgstr "Breitengrad z.B. 49.0069646 "
|
2416 |
|
2417 |
-
#: app/features/locations.php:
|
2418 |
msgid "Geo latitude (Optional)"
|
2419 |
msgstr "Geologischer Breitengrad (Optional)"
|
2420 |
|
2421 |
-
#: app/features/locations.php:
|
2422 |
-
#: app/features/locations.php:
|
2423 |
msgid "Longitude"
|
2424 |
msgstr "Längengrad z.B. 8.4118636 "
|
2425 |
|
2426 |
-
#: app/features/locations.php:
|
2427 |
msgid "Geo longitude (Optional)"
|
2428 |
msgstr "Geologischer Längengrad (Optional)"
|
2429 |
|
2430 |
-
#: app/features/locations.php:
|
2431 |
-
#: app/features/organizers.php:
|
2432 |
-
#: app/features/speakers.php:
|
2433 |
msgid "Thumbnail"
|
2434 |
msgstr "Miniaturansicht"
|
2435 |
|
2436 |
-
#: app/features/locations.php:
|
2437 |
-
#: app/features/organizers.php:
|
2438 |
-
#: app/features/speakers.php:
|
2439 |
msgid "Upload/Add image"
|
2440 |
msgstr "Bild hochladen/hinzufügen"
|
2441 |
|
2442 |
-
#: app/features/locations.php:
|
2443 |
-
#: app/features/locations.php:
|
2444 |
-
#: app/features/organizers.php:
|
2445 |
-
#: app/features/organizers.php:
|
2446 |
-
#: app/features/speakers.php:
|
2447 |
msgid "Remove image"
|
2448 |
msgstr "Bild entfernen"
|
2449 |
|
2450 |
-
#: app/features/locations.php:
|
2451 |
msgid "Hide location"
|
2452 |
msgstr "Ort verbergen"
|
2453 |
|
2454 |
-
#: app/features/locations.php:
|
2455 |
msgid "Insert a new location"
|
2456 |
msgstr "Neuen Ort hinzufügen"
|
2457 |
|
2458 |
-
#: app/features/locations.php:
|
2459 |
msgid "Choose one of saved locations or insert new one below."
|
2460 |
msgstr ""
|
2461 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
2462 |
|
2463 |
-
#: app/features/locations.php:
|
2464 |
msgid "Location Name"
|
2465 |
msgstr "Name Veranstaltungsort"
|
2466 |
|
2467 |
-
#: app/features/locations.php:
|
2468 |
msgid "eg. City Hall"
|
2469 |
msgstr ""
|
2470 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
2471 |
"Westfalenhalle"
|
2472 |
|
2473 |
-
#: app/features/locations.php:
|
2474 |
#: app/widgets/single.php:115
|
2475 |
msgid "Event Location"
|
2476 |
msgstr "Veranstaltungsort"
|
2477 |
|
2478 |
-
#: app/features/locations.php:
|
2479 |
msgid "eg. City hall, Manhattan, New York"
|
2480 |
msgstr ""
|
2481 |
"z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
|
2482 |
"Ring 1, 76297 Stutensee"
|
2483 |
|
2484 |
-
#: app/features/locations.php:
|
2485 |
#, fuzzy
|
2486 |
#| msgid "Longitude"
|
2487 |
msgid "Latitude/Longitude"
|
2488 |
msgstr "Längengrad z.B. 8.4118636 "
|
2489 |
|
2490 |
-
#: app/features/locations.php:
|
2491 |
msgid ""
|
2492 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2493 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2496,25 +2527,25 @@ msgid ""
|
|
2496 |
"the location on the map to find lat long coordinates."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: app/features/locations.php:
|
2500 |
msgid "Get Latitude and Longitude"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: app/features/locations.php:
|
2504 |
msgid "Choose image"
|
2505 |
msgstr "Bild wählen"
|
2506 |
|
2507 |
-
#: app/features/locations.php:
|
2508 |
msgid "Don't show map in single event page"
|
2509 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2510 |
|
2511 |
-
#: app/features/locations.php:
|
2512 |
#, fuzzy
|
2513 |
#| msgid "Locations"
|
2514 |
msgid "Other Locations"
|
2515 |
msgstr "Orte"
|
2516 |
|
2517 |
-
#: app/features/locations.php:
|
2518 |
#, fuzzy
|
2519 |
#| msgid ""
|
2520 |
#| "You can select extra organizers in addition to main organizer if you like."
|
@@ -2563,14 +2594,14 @@ msgstr "Support"
|
|
2563 |
msgid "Support"
|
2564 |
msgstr "Support"
|
2565 |
|
2566 |
-
#: app/features/mec.php:335 app/features/mec/dashboard.php:
|
2567 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2568 |
-
#: app/libraries/main.php:
|
2569 |
msgid "Organizers"
|
2570 |
msgstr "Veranstalter"
|
2571 |
|
2572 |
#: app/features/mec.php:343 app/features/mec.php:363
|
2573 |
-
#: app/features/mec/dashboard.php:
|
2574 |
msgid "Shortcodes"
|
2575 |
msgstr "Shortcodes"
|
2576 |
|
@@ -2670,32 +2701,32 @@ msgid ""
|
|
2670 |
"your host provider in this regard."
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: app/features/mec/booking.php:24 app/features/mec/booking.php:
|
2674 |
-
#: app/features/mec/booking.php:
|
2675 |
-
#: app/features/mec/booking.php:
|
2676 |
-
#: app/features/mec/gateways.php:
|
2677 |
-
#: app/features/mec/gateways.php:
|
2678 |
-
#: app/features/mec/messages.php:11 app/features/mec/messages.php:
|
2679 |
-
#: app/features/mec/messages.php:
|
2680 |
-
#: app/features/mec/messages.php:
|
2681 |
-
#: app/features/mec/modules.php:
|
2682 |
-
#: app/features/mec/modules.php:
|
2683 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2684 |
-
#: app/features/mec/notifications.php:
|
2685 |
-
#: app/features/mec/notifications.php:
|
2686 |
-
#: app/features/mec/notifications.php:
|
2687 |
-
#: app/features/mec/regform.php:
|
2688 |
-
#: app/features/mec/regform.php:
|
2689 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2690 |
-
#: app/features/mec/settings.php:
|
2691 |
-
#: app/features/mec/settings.php:
|
2692 |
-
#: app/features/mec/single.php:
|
2693 |
-
#: app/features/mec/single.php:
|
2694 |
-
#: app/features/mec/styles.php:11 app/features/mec/styles.php:
|
2695 |
-
#: app/features/mec/styles.php:
|
2696 |
-
#: app/features/mec/styles.php:
|
2697 |
-
#: app/features/mec/styling.php:
|
2698 |
-
#: app/features/mec/styling.php:
|
2699 |
msgid "Save Changes"
|
2700 |
msgstr "Änderungen sichern"
|
2701 |
|
@@ -2703,7 +2734,7 @@ msgstr "Änderungen sichern"
|
|
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:
|
2707 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2708 |
msgid "Archive Pages"
|
2709 |
msgstr ""
|
@@ -2712,7 +2743,7 @@ msgstr ""
|
|
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:
|
2716 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2717 |
msgid "User Profile"
|
2718 |
msgstr ""
|
@@ -2721,7 +2752,7 @@ msgstr ""
|
|
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:
|
2725 |
#: app/features/mec/styles.php:35 app/features/mec/styling.php:57
|
2726 |
#, fuzzy
|
2727 |
#| msgid "Search Form"
|
@@ -2754,7 +2785,7 @@ msgstr "Single Event Stil"
|
|
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:
|
2758 |
#: app/features/mec/styles.php:51 app/features/mec/styling.php:73
|
2759 |
#, fuzzy
|
2760 |
#| msgid "Single Event Style"
|
@@ -2765,7 +2796,7 @@ msgstr "Single Event Stil"
|
|
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:
|
2769 |
#: app/features/mec/styles.php:54 app/features/mec/styling.php:76
|
2770 |
msgid "Additional Organizers"
|
2771 |
msgstr "Zusätzliche Organisatoren"
|
@@ -2781,193 +2812,205 @@ msgstr "Zusätzliche Organisatoren"
|
|
2781 |
msgid "Additional Locations"
|
2782 |
msgstr "Zusätzliche Organisatoren"
|
2783 |
|
2784 |
-
#: app/features/mec/booking.php:
|
2785 |
-
#: app/features/mec/
|
2786 |
-
#: app/features/mec/
|
2787 |
-
#: app/features/mec/
|
2788 |
-
#: app/features/mec/
|
2789 |
-
#: app/features/mec/styles.php:
|
2790 |
-
|
2791 |
-
|
|
|
|
|
|
|
2792 |
|
2793 |
-
#: app/features/mec/booking.php:
|
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:
|
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:
|
2803 |
-
#: app/features/mec/ie.php:
|
2804 |
-
#: app/features/mec/modules.php:
|
2805 |
-
#: app/features/mec/regform.php:
|
2806 |
-
#: app/features/mec/single.php:
|
2807 |
-
#: app/features/mec/styling.php:
|
2808 |
#, fuzzy
|
2809 |
#| msgid "Social Module : "
|
2810 |
msgid "Modules"
|
2811 |
msgstr "Social Modul:"
|
2812 |
|
2813 |
-
#: app/features/mec/booking.php:
|
2814 |
-
#: app/features/mec/ie.php:
|
2815 |
-
#: app/features/mec/modules.php:
|
2816 |
-
#: app/features/mec/notifications.php:
|
2817 |
-
#: app/features/mec/settings.php:
|
2818 |
-
#: app/features/mec/styles.php:
|
2819 |
#, fuzzy
|
2820 |
#| msgid "Import Options"
|
2821 |
msgid "Export Options"
|
2822 |
msgstr "Import Optionen"
|
2823 |
|
2824 |
-
#: app/features/mec/booking.php:
|
2825 |
-
#: app/features/mec/ie.php:
|
2826 |
-
#: app/features/mec/modules.php:
|
2827 |
-
#: app/features/mec/notifications.php:
|
2828 |
-
#: app/features/mec/settings.php:
|
2829 |
-
#: app/features/mec/styles.php:
|
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:
|
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:
|
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:
|
2855 |
-
#: app/features/mec/ie.php:
|
2856 |
-
#: app/features/mec/modules.php:
|
2857 |
-
#: app/features/mec/notifications.php:
|
2858 |
-
#: app/features/mec/settings.php:
|
2859 |
-
#: app/features/mec/styles.php:
|
2860 |
#: app/modules/next-event/details.php:82
|
2861 |
msgid "Next Event"
|
2862 |
msgstr "Nächstes Event"
|
2863 |
|
2864 |
-
#: app/features/mec/booking.php:
|
2865 |
-
#: app/features/mec/ie.php:
|
2866 |
-
#: app/features/mec/modules.php:
|
2867 |
-
#: app/features/mec/notifications.php:
|
2868 |
-
#: app/features/mec/settings.php:
|
2869 |
-
#: app/features/mec/styles.php:
|
2870 |
msgid "Booking Verification"
|
2871 |
msgstr "Verifizierung der Buchung"
|
2872 |
|
2873 |
-
#: app/features/mec/booking.php:
|
2874 |
-
#: app/features/mec/gateways.php:
|
2875 |
-
#: app/features/mec/messages.php:
|
2876 |
-
#: app/features/mec/notifications.php:
|
2877 |
-
#: app/features/mec/notifications.php:
|
2878 |
-
#: app/features/mec/settings.php:
|
2879 |
-
#: app/features/mec/styles.php:
|
2880 |
msgid "Booking Confirmation"
|
2881 |
msgstr "Buchungsbestätigung"
|
2882 |
|
2883 |
-
#: app/features/mec/booking.php:
|
2884 |
-
#: app/features/mec/ie.php:
|
2885 |
-
#: app/features/mec/modules.php:
|
2886 |
-
#: app/features/mec/notifications.php:
|
2887 |
-
#: app/features/mec/settings.php:
|
2888 |
-
#: app/features/mec/styles.php:
|
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:
|
2906 |
-
#: app/features/mec/notifications.php:
|
2907 |
-
#: app/features/mec/settings.php:210 app/features/mec/single.php:
|
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:
|
2914 |
-
#: app/features/mec/ie.php:
|
2915 |
-
#: app/features/mec/modules.php:
|
2916 |
-
#: app/features/mec/notifications.php:
|
2917 |
-
#: app/features/mec/settings.php:
|
2918 |
-
#: app/features/mec/styles.php:
|
2919 |
#: app/features/mec/support-page.php:80
|
2920 |
msgid "New Event"
|
2921 |
msgstr "Neue Veranstaltung"
|
2922 |
|
2923 |
-
#: app/features/mec/booking.php:
|
2924 |
-
#: app/features/mec/ie.php:
|
2925 |
-
#: app/features/mec/modules.php:
|
2926 |
-
#: app/features/mec/regform.php:
|
2927 |
-
#: app/features/mec/single.php:
|
2928 |
-
#: app/features/mec/styling.php:
|
2929 |
msgid "Styling Options"
|
2930 |
msgstr "Styling-Optionen"
|
2931 |
|
2932 |
-
#: app/features/mec/booking.php:
|
2933 |
-
#: app/features/mec/ie.php:
|
2934 |
-
#: app/features/mec/modules.php:
|
2935 |
-
#: app/features/mec/regform.php:
|
2936 |
-
#: app/features/mec/single.php:
|
2937 |
-
#: app/features/mec/styling.php:
|
2938 |
msgid "Custom CSS"
|
2939 |
msgstr "Custom CSS"
|
2940 |
|
2941 |
-
#: app/features/mec/booking.php:
|
2942 |
-
#: app/features/mec/ie.php:
|
2943 |
-
#: app/features/mec/messages.php:
|
2944 |
-
#: app/features/mec/notifications.php:
|
2945 |
-
#: app/features/mec/settings.php:
|
2946 |
-
#: app/features/mec/styles.php:
|
2947 |
#: app/features/mec/support.php:66
|
2948 |
msgid "Messages"
|
2949 |
msgstr "Nachrichten"
|
2950 |
|
2951 |
-
#: app/features/mec/booking.php:
|
2952 |
msgid "Enable booking module"
|
2953 |
msgstr "Buchungsmodul aktivieren"
|
2954 |
|
2955 |
-
#: app/features/mec/booking.php:
|
2956 |
msgid ""
|
2957 |
-
"After
|
2958 |
-
"settings and
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: app/features/mec/booking.php:
|
2962 |
-
#: app/features/mec/modules.php:
|
2963 |
msgid "Date Format"
|
2964 |
msgstr "Datumsformat"
|
2965 |
|
2966 |
-
#: app/features/mec/booking.php:
|
2967 |
msgid "Default is Y-m-d"
|
2968 |
msgstr "Voreinstellung ist J-M-T"
|
2969 |
|
2970 |
-
#: app/features/mec/booking.php:
|
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
|
@@ -2977,37 +3020,37 @@ msgstr "Voreinstellung ist J-M-T"
|
|
2977 |
msgid "Limit"
|
2978 |
msgstr "Limit"
|
2979 |
|
2980 |
-
#: app/features/mec/booking.php:
|
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:
|
2987 |
#, fuzzy
|
2988 |
#| msgid "Booking Form"
|
2989 |
msgid "Booking Limit"
|
2990 |
msgstr "Buchungsformular"
|
2991 |
|
2992 |
-
#: app/features/mec/booking.php:
|
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:
|
2999 |
msgid "Maximum Dates"
|
3000 |
msgstr "Maximale Anzahl von Daten"
|
3001 |
|
3002 |
-
#: app/features/mec/booking.php:
|
3003 |
msgid "Default is 6"
|
3004 |
msgstr "Die Voreinstellung ist 6"
|
3005 |
|
3006 |
-
#: app/features/mec/booking.php:
|
3007 |
msgid "Thank You Page"
|
3008 |
msgstr "Danke Seite"
|
3009 |
|
3010 |
-
#: app/features/mec/booking.php:
|
3011 |
msgid ""
|
3012 |
"User redirects to this page after booking. Leave it empty if you want to "
|
3013 |
"disable it."
|
@@ -3015,15 +3058,15 @@ msgstr ""
|
|
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:
|
3019 |
msgid "Enable Express Attendees Form"
|
3020 |
msgstr "Aktivieren Sie das Express-Teilnehmerformular"
|
3021 |
|
3022 |
-
#: app/features/mec/booking.php:
|
3023 |
msgid "Attendees Form"
|
3024 |
msgstr "Teilnahmeformular"
|
3025 |
|
3026 |
-
#: app/features/mec/booking.php:
|
3027 |
msgid ""
|
3028 |
"Users are able to apply first attendee information for other attendees in "
|
3029 |
"the booking form."
|
@@ -3031,88 +3074,88 @@ msgstr ""
|
|
3031 |
"Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
|
3032 |
"Buchungsformular anwenden."
|
3033 |
|
3034 |
-
#: app/features/mec/booking.php:
|
3035 |
#, fuzzy
|
3036 |
#| msgid "Download Invoice"
|
3037 |
msgid "Enable Invoice"
|
3038 |
msgstr "Download Rechnung"
|
3039 |
|
3040 |
-
#: app/features/mec/booking.php:
|
3041 |
msgid "Email verification"
|
3042 |
msgstr "Email-Verifizierung"
|
3043 |
|
3044 |
-
#: app/features/mec/booking.php:
|
3045 |
msgid "Auto verification for free bookings"
|
3046 |
msgstr "Automatische Verifizierung für kostenlose Buchungen"
|
3047 |
|
3048 |
-
#: app/features/mec/booking.php:
|
3049 |
msgid "Auto verification for paid bookings"
|
3050 |
msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
|
3051 |
|
3052 |
-
#: app/features/mec/booking.php:
|
3053 |
msgid "Auto confirmation for free bookings"
|
3054 |
msgstr "Automatische Bestätigung für kostenlose Buchungen"
|
3055 |
|
3056 |
-
#: app/features/mec/booking.php:
|
3057 |
msgid "Auto confirmation for paid bookings"
|
3058 |
msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
3059 |
|
3060 |
-
#: app/features/mec/booking.php:
|
3061 |
msgid "Enable coupons module"
|
3062 |
msgstr "Gutscheinmodul aktivieren"
|
3063 |
|
3064 |
-
#: app/features/mec/booking.php:
|
3065 |
msgid ""
|
3066 |
-
"After
|
3067 |
-
"Dashboard > Booking"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: app/features/mec/booking.php:
|
3071 |
msgid "Enable taxes / fees module"
|
3072 |
msgstr "Modul für Gebühren/Steuern aktivieren"
|
3073 |
|
3074 |
-
#: app/features/mec/booking.php:
|
3075 |
msgid "Add Fee"
|
3076 |
msgstr "Gebühr hinzufügen"
|
3077 |
|
3078 |
-
#: app/features/mec/booking.php:
|
3079 |
#, fuzzy
|
3080 |
#| msgid "Enable coupons module"
|
3081 |
msgid "Enable ticket options module"
|
3082 |
msgstr "Gutscheinmodul aktivieren"
|
3083 |
|
3084 |
-
#: app/features/mec/booking.php:
|
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:
|
3098 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3099 |
-
#: app/features/mec/settings.php:
|
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:
|
3105 |
-
#: app/features/mec/modules.php:
|
3106 |
-
#: app/features/mec/notifications.php:
|
3107 |
-
#: app/features/mec/notifications.php:
|
3108 |
-
#: app/features/mec/settings.php:
|
3109 |
-
#: app/features/mec/single.php:
|
3110 |
msgid "Verified"
|
3111 |
msgstr "Verifiziert"
|
3112 |
|
3113 |
-
#: app/features/mec/booking.php:
|
3114 |
-
#: app/features/mec/notifications.php:
|
3115 |
-
#: app/features/mec/single.php:
|
3116 |
msgid "Please Refresh Page"
|
3117 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3118 |
|
@@ -3177,112 +3220,116 @@ msgstr ""
|
|
3177 |
msgid "MEC Activate"
|
3178 |
msgstr "MEC Aktivierung"
|
3179 |
|
3180 |
-
#: app/features/mec/dashboard.php:
|
3181 |
msgid ""
|
3182 |
"In order to use all plugin features and options, please enter your purchase "
|
3183 |
"code."
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: app/features/mec/dashboard.php:
|
3187 |
#, fuzzy
|
3188 |
#| msgid "MEC Activation"
|
3189 |
msgid "Activate Addons"
|
3190 |
msgstr "MEC Aktivierung"
|
3191 |
|
3192 |
-
#: app/features/mec/dashboard.php:
|
|
|
|
|
|
|
|
|
3193 |
msgid "Upcoming Events"
|
3194 |
msgstr "Bevorstehende Events"
|
3195 |
|
3196 |
-
#: app/features/mec/dashboard.php:
|
3197 |
msgid "Popular Gateways"
|
3198 |
msgstr "Beliebte Zahlungsgateways"
|
3199 |
|
3200 |
-
#: app/features/mec/dashboard.php:
|
3201 |
msgid "Total Bookings"
|
3202 |
msgstr "Gesamte Buchungen"
|
3203 |
|
3204 |
-
#: app/features/mec/dashboard.php:
|
3205 |
msgid "This Month"
|
3206 |
msgstr "Diesen Monat"
|
3207 |
|
3208 |
-
#: app/features/mec/dashboard.php:
|
3209 |
msgid "Last Month"
|
3210 |
msgstr "Letzten Monat"
|
3211 |
|
3212 |
-
#: app/features/mec/dashboard.php:
|
3213 |
msgid "This Year"
|
3214 |
msgstr "Diese Jahr"
|
3215 |
|
3216 |
-
#: app/features/mec/dashboard.php:
|
3217 |
msgid "Last Year"
|
3218 |
msgstr "Letztes Jahr"
|
3219 |
|
3220 |
-
#: app/features/mec/dashboard.php:
|
3221 |
msgid "Bar"
|
3222 |
msgstr "Bar"
|
3223 |
|
3224 |
-
#: app/features/mec/dashboard.php:
|
3225 |
msgid "Line"
|
3226 |
msgstr "Linie"
|
3227 |
|
3228 |
-
#: app/features/mec/dashboard.php:
|
3229 |
msgid "Filter"
|
3230 |
msgstr "Filter"
|
3231 |
|
3232 |
-
#: app/features/mec/dashboard.php:
|
3233 |
#, php-format
|
3234 |
msgid "Total Sells (%s)"
|
3235 |
msgstr "Alle Verkäufe (%s)"
|
3236 |
|
3237 |
-
#: app/features/mec/dashboard.php:
|
3238 |
msgid "Change Log"
|
3239 |
msgstr "Änderungsprotokoll"
|
3240 |
|
3241 |
-
#: app/features/mec/gateways.php:
|
3242 |
msgid "Enable Organizer Payment Module"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: app/features/mec/gateways.php:
|
3246 |
#, fuzzy
|
3247 |
#| msgid "Organizer Tel"
|
3248 |
msgid "Organizer Payment"
|
3249 |
msgstr "Organisator Telefon"
|
3250 |
|
3251 |
-
#: app/features/mec/gateways.php:
|
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:
|
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:
|
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:
|
3270 |
msgid "Please paste your options here"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: app/features/mec/ie.php:
|
3274 |
#, fuzzy
|
3275 |
#| msgid "Import Options"
|
3276 |
msgid "Import Settings"
|
3277 |
msgstr "Import Optionen"
|
3278 |
|
3279 |
-
#: app/features/mec/ie.php:
|
3280 |
#, fuzzy
|
3281 |
#| msgid "Download Invoice"
|
3282 |
msgid "Download Settings"
|
3283 |
msgstr "Download Rechnung\n"
|
3284 |
|
3285 |
-
#: app/features/mec/messages.php:
|
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 "
|
@@ -3302,16 +3349,16 @@ msgstr "Skin"
|
|
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:
|
3306 |
-
#: app/features/mec/settings.php:
|
3307 |
-
#: app/features/mec/settings.php:
|
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:
|
3314 |
-
#: app/features/mec/settings.php:
|
3315 |
msgid "Minimal"
|
3316 |
msgstr "Minimal"
|
3317 |
|
@@ -3321,20 +3368,20 @@ msgstr "Minimal"
|
|
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:
|
3325 |
-
#: app/features/mec/settings.php:
|
3326 |
-
#: app/features/mec/settings.php:
|
3327 |
-
#: app/features/mec/settings.php:
|
3328 |
msgid "Modern"
|
3329 |
msgstr "Modern"
|
3330 |
|
3331 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3332 |
-
#: app/features/mec/settings.php:
|
3333 |
msgid "Standard"
|
3334 |
msgstr "Standard"
|
3335 |
|
3336 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3337 |
-
#: app/features/mec/settings.php:
|
3338 |
msgid "Accordion"
|
3339 |
msgstr "Accordion"
|
3340 |
|
@@ -3554,17 +3601,17 @@ msgstr "Zeige Monatsteilung"
|
|
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:
|
3558 |
-
#: app/features/mec/settings.php:
|
3559 |
-
#: app/features/mec/settings.php:
|
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:
|
3567 |
-
#: app/features/mec/settings.php:
|
3568 |
msgid "Simple"
|
3569 |
msgstr "Schlicht"
|
3570 |
|
@@ -3575,8 +3622,8 @@ msgstr "Farbenfroh"
|
|
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:
|
3579 |
-
#: app/features/mec/settings.php:
|
3580 |
msgid "Novel"
|
3581 |
msgstr ""
|
3582 |
|
@@ -3623,15 +3670,15 @@ msgstr "Standardansicht"
|
|
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:
|
3627 |
-
#: app/libraries/main.php:
|
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:
|
3634 |
-
#: app/libraries/main.php:
|
3635 |
msgid "Yearly View"
|
3636 |
msgstr "Jahresansicht"
|
3637 |
|
@@ -3642,15 +3689,15 @@ msgstr "Monatliche Kalenderansicht"
|
|
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:
|
3646 |
-
#: app/libraries/main.php:
|
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:
|
3653 |
-
#: app/libraries/main.php:
|
3654 |
msgid "Daily View"
|
3655 |
msgstr "Tagesansicht"
|
3656 |
|
@@ -3978,190 +4025,197 @@ msgstr "Such Formular anzeigen"
|
|
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:
|
3982 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3983 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3984 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3985 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3986 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3987 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
4120 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4121 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4122 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4123 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4124 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
4125 |
msgid "No Search Options"
|
4126 |
msgstr "Keine Suchoptionen"
|
4127 |
|
4128 |
-
#: app/features/mec/modules.php:
|
4129 |
#, fuzzy
|
4130 |
#| msgid "No Search Options"
|
4131 |
msgid "Speakers Options"
|
4132 |
msgstr "Keine Suchoptionen"
|
4133 |
|
4134 |
-
#: app/features/mec/modules.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
4141 |
msgid ""
|
4142 |
-
"After
|
4143 |
-
"Dashboard > MEC"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: app/features/mec/modules.php:
|
4147 |
msgid "Show Google Maps on event page"
|
4148 |
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
4149 |
|
4150 |
-
#: app/features/mec/modules.php:
|
4151 |
-
#: app/features/mec/settings.php:
|
4152 |
msgid "API Key"
|
4153 |
msgstr "API Schlüssel"
|
4154 |
|
4155 |
-
#: app/features/mec/modules.php:
|
4156 |
-
#: app/features/mec/settings.php:
|
4157 |
msgid "Required!"
|
4158 |
msgstr "Erforderlich (Pflichtfeld)"
|
4159 |
|
4160 |
-
#: app/features/mec/modules.php:
|
4161 |
msgid "Zoom level"
|
4162 |
msgstr "Zoom"
|
4163 |
|
4164 |
-
#: app/features/mec/modules.php:
|
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,221 +4224,212 @@ msgstr ""
|
|
4170 |
"es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
|
4171 |
"Angrenzungen"
|
4172 |
|
4173 |
-
#: app/features/mec/modules.php:
|
4174 |
msgid "Google Maps Style"
|
4175 |
msgstr "Google Maps Stil"
|
4176 |
|
4177 |
-
#: app/features/mec/modules.php:
|
4178 |
msgid "Default"
|
4179 |
msgstr "Standardeinstellung"
|
4180 |
|
4181 |
-
#: app/features/mec/modules.php:
|
4182 |
msgid "Direction on single event"
|
4183 |
msgstr "Richtung auf einzelne Veranstaltung"
|
4184 |
|
4185 |
-
#: app/features/mec/modules.php:
|
4186 |
msgid "Simple Method"
|
4187 |
msgstr "Einfache Methode"
|
4188 |
|
4189 |
-
#: app/features/mec/modules.php:
|
4190 |
msgid "Advanced Method"
|
4191 |
msgstr "Fortgeschrittene Methode"
|
4192 |
|
4193 |
-
#: app/features/mec/modules.php:
|
4194 |
msgid "Lightbox Date Format"
|
4195 |
msgstr "Leuchtkasten Datumsformat"
|
4196 |
|
4197 |
-
#: app/features/mec/modules.php:
|
4198 |
msgid "Default value is M d Y"
|
4199 |
msgstr "Standardwert ist M T J"
|
4200 |
|
4201 |
-
#: app/features/mec/modules.php:
|
4202 |
msgid "Google Maps API"
|
4203 |
msgstr "Google Maps API"
|
4204 |
|
4205 |
-
#: app/features/mec/modules.php:
|
4206 |
msgid "Don't load Google Maps API library"
|
4207 |
msgstr "Google Maps API Bibliothek nicht laden"
|
4208 |
|
4209 |
-
#: app/features/mec/modules.php:
|
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:
|
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:
|
4222 |
msgid "Google Calendar"
|
4223 |
msgstr "Google Calendar"
|
4224 |
|
4225 |
-
#: app/features/mec/modules.php:
|
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:
|
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:
|
4238 |
msgid "Show weather module on event page"
|
4239 |
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4240 |
|
4241 |
-
#: app/features/mec/modules.php:
|
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:
|
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:
|
4253 |
msgid "Show weather change units button"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: app/features/mec/modules.php:
|
4257 |
msgid "Show social network module"
|
4258 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
4259 |
|
4260 |
-
#: app/features/mec/modules.php:
|
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:
|
4265 |
msgid "Method"
|
4266 |
msgstr "Methode"
|
4267 |
|
4268 |
-
#: app/features/mec/modules.php:
|
4269 |
msgid "Next Occurrence of Current Event"
|
4270 |
msgstr "Nächstes Auftreten des aktuellen Events"
|
4271 |
|
4272 |
-
#: app/features/mec/modules.php:
|
4273 |
msgid "Next Occurrence of Other Events"
|
4274 |
msgstr "Nächstes Auftreten von anderen Events."
|
4275 |
|
4276 |
-
#: app/features/mec/modules.php:
|
4277 |
msgid "Default is M d Y"
|
4278 |
msgstr "Standardwert ist M-T-J"
|
4279 |
|
4280 |
-
#: app/features/mec/modules.php:
|
4281 |
msgid "Enable BuddyPress Integration"
|
4282 |
msgstr "Buddy Press Integration deaktivieren"
|
4283 |
|
4284 |
-
#: app/features/mec/modules.php:
|
4285 |
msgid "Show \"Attendees Module\" in event details page"
|
4286 |
msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
|
4287 |
|
4288 |
-
#: app/features/mec/modules.php:
|
4289 |
msgid "Attendees Limit"
|
4290 |
msgstr "Teilnehmer Limit, maximale Anzahl"
|
4291 |
|
4292 |
-
#: app/features/mec/modules.php:
|
4293 |
msgid "Add booking activity to user profile"
|
4294 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
4295 |
|
4296 |
-
#: app/features/mec/notifications.php:
|
4297 |
msgid "Enable booking notification"
|
4298 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
4299 |
|
4300 |
-
#: app/features/mec/notifications.php:
|
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:
|
4307 |
-
#: app/features/mec/notifications.php:
|
4308 |
-
#: app/features/mec/notifications.php:
|
4309 |
-
#: app/features/mec/notifications.php:
|
4310 |
-
#: app/features/mec/notifications.php:
|
4311 |
-
#: app/features/mec/notifications.php:
|
4312 |
-
#: app/features/mec/notifications.php:
|
4313 |
msgid "Email Subject"
|
4314 |
msgstr "Email Betreff"
|
4315 |
|
4316 |
-
#: app/features/mec/notifications.php:
|
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:
|
4346 |
-
#: app/features/mec/notifications.php:
|
4347 |
-
#: app/features/mec/notifications.php:
|
4348 |
msgid "Send the email to event organizer"
|
4349 |
msgstr "Sendet das Email zum Event Organisator"
|
4350 |
|
4351 |
-
#: app/features/mec/notifications.php:
|
4352 |
-
#: app/features/mec/notifications.php:
|
4353 |
-
#: app/features/mec/notifications.php:
|
4354 |
-
#: app/features/mec/notifications.php:
|
4355 |
-
#: app/features/mec/notifications.php:
|
4356 |
-
#: app/features/mec/notifications.php:
|
4357 |
-
#: app/features/mec/notifications.php:
|
4358 |
msgid "Email Content"
|
4359 |
msgstr "Email Inhalt"
|
4360 |
|
4361 |
-
#: app/features/mec/notifications.php:
|
4362 |
-
#: app/features/mec/notifications.php:
|
4363 |
-
#: app/features/mec/notifications.php:
|
4364 |
-
#: app/features/mec/notifications.php:
|
4365 |
-
#: app/features/mec/notifications.php:
|
4366 |
-
#: app/features/mec/notifications.php:
|
4367 |
-
#: app/features/mec/notifications.php:
|
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
|
4382 |
#: app/features/mec/notifications.php:366
|
4383 |
#: app/features/mec/notifications.php:437
|
4384 |
#: app/features/mec/notifications.php:497
|
4385 |
#: app/features/mec/notifications.php:567
|
4386 |
-
msgid "
|
4387 |
-
msgstr "
|
4388 |
|
4389 |
#: app/features/mec/notifications.php:262
|
4390 |
#: app/features/mec/notifications.php:315
|
@@ -4392,8 +4437,8 @@ msgstr "Nachname des Teilnehmers"
|
|
4392 |
#: app/features/mec/notifications.php:438
|
4393 |
#: app/features/mec/notifications.php:498
|
4394 |
#: app/features/mec/notifications.php:568
|
4395 |
-
msgid "
|
4396 |
-
msgstr "
|
4397 |
|
4398 |
#: app/features/mec/notifications.php:263
|
4399 |
#: app/features/mec/notifications.php:316
|
@@ -4401,8 +4446,8 @@ msgstr "Email des Teilnehmers"
|
|
4401 |
#: app/features/mec/notifications.php:439
|
4402 |
#: app/features/mec/notifications.php:499
|
4403 |
#: app/features/mec/notifications.php:569
|
4404 |
-
msgid "
|
4405 |
-
msgstr "
|
4406 |
|
4407 |
#: app/features/mec/notifications.php:264
|
4408 |
#: app/features/mec/notifications.php:317
|
@@ -4410,9 +4455,7 @@ msgstr "Gebuchtes Datum der Veranstaltung"
|
|
4410 |
#: app/features/mec/notifications.php:440
|
4411 |
#: app/features/mec/notifications.php:500
|
4412 |
#: app/features/mec/notifications.php:570
|
4413 |
-
|
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
|
@@ -4421,8 +4464,10 @@ msgstr "Gebuchtes Datum der Veranstaltung"
|
|
4421 |
#: app/features/mec/notifications.php:441
|
4422 |
#: app/features/mec/notifications.php:501
|
4423 |
#: app/features/mec/notifications.php:571
|
4424 |
-
|
4425 |
-
|
|
|
|
|
4426 |
|
4427 |
#: app/features/mec/notifications.php:266
|
4428 |
#: app/features/mec/notifications.php:319
|
@@ -4430,9 +4475,8 @@ msgstr "Buchungspreis"
|
|
4430 |
#: app/features/mec/notifications.php:442
|
4431 |
#: app/features/mec/notifications.php:502
|
4432 |
#: app/features/mec/notifications.php:572
|
4433 |
-
|
4434 |
-
|
4435 |
-
msgstr "Titel Ihrer Webseite"
|
4436 |
|
4437 |
#: app/features/mec/notifications.php:267
|
4438 |
#: app/features/mec/notifications.php:320
|
@@ -4441,8 +4485,8 @@ msgstr "Titel Ihrer Webseite"
|
|
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
|
4445 |
-
msgstr "
|
4446 |
|
4447 |
#: app/features/mec/notifications.php:268
|
4448 |
#: app/features/mec/notifications.php:321
|
@@ -4451,8 +4495,8 @@ msgstr "URL Ihrer Webseite"
|
|
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
|
4455 |
-
msgstr "
|
4456 |
|
4457 |
#: app/features/mec/notifications.php:269
|
4458 |
#: app/features/mec/notifications.php:322
|
@@ -4460,8 +4504,9 @@ msgstr "Beschreibung Ihrer Webseite"
|
|
4460 |
#: app/features/mec/notifications.php:445
|
4461 |
#: app/features/mec/notifications.php:505
|
4462 |
#: app/features/mec/notifications.php:575
|
4463 |
-
|
4464 |
-
|
|
|
4465 |
|
4466 |
#: app/features/mec/notifications.php:270
|
4467 |
#: app/features/mec/notifications.php:323
|
@@ -4469,10 +4514,8 @@ msgstr "Titel der Veranstaltung"
|
|
4469 |
#: app/features/mec/notifications.php:446
|
4470 |
#: app/features/mec/notifications.php:506
|
4471 |
#: app/features/mec/notifications.php:576
|
4472 |
-
|
4473 |
-
|
4474 |
-
msgid "Event link"
|
4475 |
-
msgstr "Veranstaltungslink"
|
4476 |
|
4477 |
#: app/features/mec/notifications.php:271
|
4478 |
#: app/features/mec/notifications.php:324
|
@@ -4481,9 +4524,9 @@ msgstr "Veranstaltungslink"
|
|
4481 |
#: app/features/mec/notifications.php:507
|
4482 |
#: app/features/mec/notifications.php:577
|
4483 |
#, fuzzy
|
4484 |
-
#| msgid "
|
4485 |
-
msgid "
|
4486 |
-
msgstr "
|
4487 |
|
4488 |
#: app/features/mec/notifications.php:272
|
4489 |
#: app/features/mec/notifications.php:325
|
@@ -4491,7 +4534,9 @@ msgstr "Name des Veranstalters des gebuchten Events"
|
|
4491 |
#: app/features/mec/notifications.php:448
|
4492 |
#: app/features/mec/notifications.php:508
|
4493 |
#: app/features/mec/notifications.php:578
|
4494 |
-
|
|
|
|
|
4495 |
msgstr "Name des Veranstalters des gebuchten Events"
|
4496 |
|
4497 |
#: app/features/mec/notifications.php:273
|
@@ -4500,8 +4545,8 @@ msgstr "Name des Veranstalters des gebuchten Events"
|
|
4500 |
#: app/features/mec/notifications.php:449
|
4501 |
#: app/features/mec/notifications.php:509
|
4502 |
#: app/features/mec/notifications.php:579
|
4503 |
-
msgid "Organizer
|
4504 |
-
msgstr "
|
4505 |
|
4506 |
#: app/features/mec/notifications.php:274
|
4507 |
#: app/features/mec/notifications.php:327
|
@@ -4509,8 +4554,8 @@ msgstr "Tel des Veranstalters"
|
|
4509 |
#: app/features/mec/notifications.php:450
|
4510 |
#: app/features/mec/notifications.php:510
|
4511 |
#: app/features/mec/notifications.php:580
|
4512 |
-
msgid "Organizer
|
4513 |
-
msgstr "
|
4514 |
|
4515 |
#: app/features/mec/notifications.php:275
|
4516 |
#: app/features/mec/notifications.php:328
|
@@ -4518,8 +4563,8 @@ msgstr "Email des Veranstalters des gebuchten events"
|
|
4518 |
#: app/features/mec/notifications.php:451
|
4519 |
#: app/features/mec/notifications.php:511
|
4520 |
#: app/features/mec/notifications.php:581
|
4521 |
-
msgid "
|
4522 |
-
msgstr "
|
4523 |
|
4524 |
#: app/features/mec/notifications.php:276
|
4525 |
#: app/features/mec/notifications.php:329
|
@@ -4527,40 +4572,40 @@ msgstr "Veranstaltungsort"
|
|
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:
|
4534 |
-
#: app/features/mec/notifications.php:
|
4535 |
-
#: app/features/mec/notifications.php:
|
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 "
|
4554 |
-
msgstr ""
|
4555 |
|
4556 |
#: app/features/mec/notifications.php:280
|
4557 |
#: app/features/mec/notifications.php:332
|
4558 |
#: app/features/mec/notifications.php:385
|
|
|
|
|
4559 |
#: app/features/mec/notifications.php:586
|
4560 |
-
|
4561 |
-
|
4562 |
-
msgid "Ticket name"
|
4563 |
-
msgstr "Ticket Name"
|
4564 |
|
4565 |
#: app/features/mec/notifications.php:281
|
4566 |
#: app/features/mec/notifications.php:333
|
@@ -4568,7 +4613,7 @@ msgstr "Ticket Name"
|
|
4568 |
#: app/features/mec/notifications.php:587
|
4569 |
#, fuzzy
|
4570 |
#| msgid "Ticket Name"
|
4571 |
-
msgid "Ticket
|
4572 |
msgstr "Ticket Name"
|
4573 |
|
4574 |
#: app/features/mec/notifications.php:282
|
@@ -4576,37 +4621,46 @@ msgstr "Ticket Name"
|
|
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:
|
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:
|
4590 |
msgid "Email/Booking verification link."
|
4591 |
msgstr "Bestätigungslink für Email/Buchung"
|
4592 |
|
4593 |
-
#: app/features/mec/notifications.php:
|
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:
|
4599 |
-
#: app/features/mec/notifications.php:
|
4600 |
msgid "Booking cancellation link."
|
4601 |
msgstr "Link zur Stornierung der Buchung"
|
4602 |
|
4603 |
-
#: app/features/mec/notifications.php:
|
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:
|
4610 |
#, fuzzy
|
4611 |
#| msgid "It sends to attendee after booking for notifying him/her."
|
4612 |
msgid ""
|
@@ -4616,40 +4670,40 @@ msgstr ""
|
|
4616 |
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
4617 |
"benachrichtigen."
|
4618 |
|
4619 |
-
#: app/features/mec/notifications.php:
|
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:
|
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:
|
4632 |
-
#: app/features/mec/notifications.php:
|
4633 |
msgid "Admin booking management link."
|
4634 |
msgstr "Admin-link zur Buchungsverwaltung"
|
4635 |
|
4636 |
-
#: app/features/mec/notifications.php:
|
4637 |
#, fuzzy
|
4638 |
#| msgid "Enable booking notification"
|
4639 |
msgid "Enable admin notification"
|
4640 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
4641 |
|
4642 |
-
#: app/features/mec/notifications.php:
|
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:
|
4649 |
msgid "Enable booking reminder notification"
|
4650 |
msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
|
4651 |
|
4652 |
-
#: app/features/mec/notifications.php:
|
4653 |
#, php-format
|
4654 |
msgid ""
|
4655 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
@@ -4661,19 +4715,19 @@ msgstr ""
|
|
4661 |
"Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
|
4662 |
"gesendet werden."
|
4663 |
|
4664 |
-
#: app/features/mec/notifications.php:
|
4665 |
msgid "only once per day"
|
4666 |
msgstr "nur einmal pro Tag"
|
4667 |
|
4668 |
-
#: app/features/mec/notifications.php:
|
4669 |
msgid "Days"
|
4670 |
msgstr "Tage"
|
4671 |
|
4672 |
-
#: app/features/mec/notifications.php:
|
4673 |
msgid "Enable new event notification"
|
4674 |
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
4675 |
|
4676 |
-
#: app/features/mec/notifications.php:
|
4677 |
msgid ""
|
4678 |
"It sends after adding a new event from frontend event submission or from "
|
4679 |
"website backend."
|
@@ -4681,73 +4735,73 @@ msgstr ""
|
|
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:
|
4685 |
msgid "Title of event"
|
4686 |
msgstr "Titel der Veranstaltung"
|
4687 |
|
4688 |
-
#: app/features/mec/notifications.php:
|
4689 |
#, fuzzy
|
4690 |
#| msgid "Title of event"
|
4691 |
msgid "Link of event"
|
4692 |
msgstr "Titel der Veranstaltung"
|
4693 |
|
4694 |
-
#: app/features/mec/notifications.php:
|
4695 |
msgid "Status of event"
|
4696 |
msgstr "Status der Veranstaltung"
|
4697 |
|
4698 |
-
#: app/features/mec/notifications.php:
|
4699 |
-
#: app/features/mec/settings.php:
|
4700 |
msgid "Event Note"
|
4701 |
msgstr "Veranstaltungsnotiz"
|
4702 |
|
4703 |
-
#: app/features/mec/notifications.php:
|
4704 |
msgid "Admin events management link."
|
4705 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
4706 |
|
4707 |
-
#: app/features/mec/settings.php:
|
4708 |
msgid "Hide Events"
|
4709 |
msgstr "Events verbergen"
|
4710 |
|
4711 |
-
#: app/features/mec/settings.php:
|
4712 |
msgid "On Event Start"
|
4713 |
msgstr "Am Event Start"
|
4714 |
|
4715 |
-
#: app/features/mec/settings.php:
|
4716 |
msgid "+1 Hour after start"
|
4717 |
msgstr "+1 Stunde nach dem Start"
|
4718 |
|
4719 |
-
#: app/features/mec/settings.php:
|
4720 |
msgid "+2 Hours after start"
|
4721 |
msgstr "+2 Stunden nach dem Start"
|
4722 |
|
4723 |
-
#: app/features/mec/settings.php:
|
4724 |
msgid "On Event End"
|
4725 |
msgstr "Am Event Ende"
|
4726 |
|
4727 |
-
#: app/features/mec/settings.php:
|
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:
|
4735 |
msgid "Multiple Day Events"
|
4736 |
msgstr "Mehrtagesveranstaltung"
|
4737 |
|
4738 |
-
#: app/features/mec/settings.php:
|
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:
|
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:
|
4747 |
msgid "Show all days"
|
4748 |
msgstr "Alle Tage anzeigen"
|
4749 |
|
4750 |
-
#: app/features/mec/settings.php:
|
4751 |
msgid ""
|
4752 |
"For showing all days of multiple day events on frontend or only show the "
|
4753 |
"first day."
|
@@ -4755,40 +4809,40 @@ msgstr ""
|
|
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:
|
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:
|
4763 |
msgid "Enabled"
|
4764 |
msgstr "Aktiviert"
|
4765 |
|
4766 |
-
#: app/features/mec/settings.php:
|
4767 |
msgid "Exclude Date Suffix"
|
4768 |
msgstr "Ausschlussdatum Suffix"
|
4769 |
|
4770 |
-
#: app/features/mec/settings.php:
|
4771 |
msgid "Remove suffix from calendars"
|
4772 |
msgstr "Suffix aus den Kalendern entfernen"
|
4773 |
|
4774 |
-
#: app/features/mec/settings.php:
|
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:
|
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:
|
4787 |
-
#: app/libraries/main.php:
|
4788 |
msgid "Weekdays"
|
4789 |
msgstr "Wochentage"
|
4790 |
|
4791 |
-
#: app/features/mec/settings.php:
|
4792 |
#, fuzzy
|
4793 |
#| msgid ""
|
4794 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
@@ -4801,105 +4855,105 @@ msgstr ""
|
|
4801 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
4802 |
"Donnerstag und Freitag gesetzt."
|
4803 |
|
4804 |
-
#: app/features/mec/settings.php:
|
4805 |
msgid "Weekends"
|
4806 |
msgstr "Wochenenden"
|
4807 |
|
4808 |
-
#: app/features/mec/settings.php:
|
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:
|
4816 |
msgid "Archive Page Title"
|
4817 |
msgstr "Titel der Archivseite"
|
4818 |
|
4819 |
-
#: app/features/mec/settings.php:
|
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:
|
4826 |
msgid "Archive Page Skin"
|
4827 |
msgstr "Skin Seite Archiv"
|
4828 |
|
4829 |
-
#: app/features/mec/settings.php:
|
4830 |
#, fuzzy
|
4831 |
#| msgid "Edit shortcodes"
|
4832 |
msgid "Put shortcode..."
|
4833 |
msgstr "Shortcode ändern"
|
4834 |
|
4835 |
-
#: app/features/mec/settings.php:
|
4836 |
-
#: app/features/mec/settings.php:
|
4837 |
-
#: app/features/mec/settings.php:
|
4838 |
-
#: app/features/mec/settings.php:
|
4839 |
-
#: app/features/mec/settings.php:
|
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:
|
4846 |
-
#: app/features/mec/single.php:
|
4847 |
msgid "Modern Style"
|
4848 |
msgstr "Moderner Stil"
|
4849 |
|
4850 |
-
#: app/features/mec/settings.php:
|
4851 |
#, fuzzy
|
4852 |
#| msgid "Colorful"
|
4853 |
msgid "colorful"
|
4854 |
msgstr "Farbenfroh"
|
4855 |
|
4856 |
-
#: app/features/mec/settings.php:
|
4857 |
#, fuzzy
|
4858 |
#| msgid "Plain Style"
|
4859 |
msgid "Clean Style"
|
4860 |
msgstr "Einfacher schlichter Stil"
|
4861 |
|
4862 |
-
#: app/features/mec/settings.php:
|
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:
|
4869 |
msgid "See Demo"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: app/features/mec/settings.php:
|
4873 |
msgid "Category Page Skin"
|
4874 |
msgstr "Kategorie Seiten Skin"
|
4875 |
|
4876 |
-
#: app/features/mec/settings.php:
|
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:
|
4883 |
msgid "Category Events Method"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
-
#: app/features/mec/settings.php:
|
4887 |
msgid "Expired Events"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
-
#: app/features/mec/settings.php:
|
4891 |
msgid "Default value is Upcoming Events"
|
4892 |
msgstr ""
|
4893 |
|
4894 |
-
#: app/features/mec/settings.php:
|
4895 |
msgid "Events Archive Status"
|
4896 |
msgstr "Events Archiv Status"
|
4897 |
|
4898 |
-
#: app/features/mec/settings.php:
|
4899 |
msgid "Enabled (Recommended)"
|
4900 |
msgstr "Ist aktiviert (empfohlen)"
|
4901 |
|
4902 |
-
#: app/features/mec/settings.php:
|
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,18 +4963,18 @@ msgstr ""
|
|
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:
|
4913 |
msgid "Main Slug"
|
4914 |
msgstr "Main Slug"
|
4915 |
|
4916 |
-
#: app/features/mec/settings.php:
|
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:
|
4924 |
#, fuzzy
|
4925 |
#| msgid ""
|
4926 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
@@ -4930,11 +4984,11 @@ msgstr ""
|
|
4930 |
"Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
|
4931 |
"und Zahlen."
|
4932 |
|
4933 |
-
#: app/features/mec/settings.php:
|
4934 |
msgid "Category Slug"
|
4935 |
msgstr "Category Slug"
|
4936 |
|
4937 |
-
#: app/features/mec/settings.php:
|
4938 |
#, fuzzy
|
4939 |
#| msgid ""
|
4940 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
@@ -4950,135 +5004,135 @@ msgstr ""
|
|
4950 |
"für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
|
4951 |
"category"
|
4952 |
|
4953 |
-
#: app/features/mec/settings.php:
|
4954 |
msgid "Currency"
|
4955 |
msgstr "Währung"
|
4956 |
|
4957 |
-
#: app/features/mec/settings.php:
|
4958 |
msgid "Currency Sign"
|
4959 |
msgstr "Währungssymbol"
|
4960 |
|
4961 |
-
#: app/features/mec/settings.php:
|
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:
|
4966 |
msgid "Currency Position"
|
4967 |
msgstr "Position des Währungssymbols"
|
4968 |
|
4969 |
-
#: app/features/mec/settings.php:
|
4970 |
msgid "Before $10"
|
4971 |
msgstr "Vor $10"
|
4972 |
|
4973 |
-
#: app/features/mec/settings.php:
|
4974 |
msgid "After 10$"
|
4975 |
msgstr "Nach 10$"
|
4976 |
|
4977 |
-
#: app/features/mec/settings.php:
|
4978 |
msgid "Thousand Separator"
|
4979 |
msgstr "Tausendertrennzeichen"
|
4980 |
|
4981 |
-
#: app/features/mec/settings.php:
|
4982 |
msgid "Decimal Separator"
|
4983 |
msgstr "Dezimaltrennzeichen"
|
4984 |
|
4985 |
-
#: app/features/mec/settings.php:
|
4986 |
msgid "No decimal"
|
4987 |
msgstr "Keine Dezimale"
|
4988 |
|
4989 |
-
#: app/features/mec/settings.php:
|
4990 |
msgid "Enable Google Recaptcha"
|
4991 |
msgstr "Google Recaptcha aktivieren"
|
4992 |
|
4993 |
-
#: app/features/mec/settings.php:
|
4994 |
msgid "Enable on booking form"
|
4995 |
msgstr "Auf dem Buchungsformular aktivieren"
|
4996 |
|
4997 |
-
#: app/features/mec/settings.php:
|
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:
|
5004 |
msgid "Site Key"
|
5005 |
msgstr "Site Key (Seitenschlüssel)"
|
5006 |
|
5007 |
-
#: app/features/mec/settings.php:
|
5008 |
msgid "Secret Key"
|
5009 |
msgstr "Geheimschlüssel"
|
5010 |
|
5011 |
-
#: app/features/mec/settings.php:
|
5012 |
msgid "Time Format"
|
5013 |
msgstr "Zeitformat"
|
5014 |
|
5015 |
-
#: app/features/mec/settings.php:
|
5016 |
msgid "12 hours format with AM/PM"
|
5017 |
msgstr "12-Stunden-Format mit AM/FM"
|
5018 |
|
5019 |
-
#: app/features/mec/settings.php:
|
5020 |
msgid "24 hours format"
|
5021 |
msgstr "24-Stunden-Format"
|
5022 |
|
5023 |
-
#: app/features/mec/settings.php:
|
5024 |
msgid "This option, affects the selection of Start/End time."
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
#: app/features/mec/settings.php:
|
5028 |
msgid "Events List Page"
|
5029 |
msgstr "Seite Liste der Veranstaltungen"
|
5030 |
|
5031 |
-
#: app/features/mec/settings.php:
|
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:
|
5037 |
msgid "Add/Edit Events Page"
|
5038 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
5039 |
|
5040 |
-
#: app/features/mec/settings.php:
|
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:
|
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:
|
5052 |
msgid "Frontend Event Submission Sections"
|
5053 |
msgstr "Frontend Veranstaltungen Einreichung Sektionen"
|
5054 |
|
5055 |
-
#: app/features/mec/settings.php:
|
5056 |
msgid "Event Categories"
|
5057 |
msgstr "Veranstaltungskategorien"
|
5058 |
|
5059 |
-
#: app/features/mec/settings.php:
|
5060 |
msgid "Event Labels"
|
5061 |
msgstr "Event Labels"
|
5062 |
|
5063 |
-
#: app/features/mec/settings.php:
|
5064 |
msgid "Event Tags"
|
5065 |
msgstr "Event Schlagworte"
|
5066 |
|
5067 |
-
#: app/features/mec/settings.php:
|
5068 |
msgid "Event Organizer"
|
5069 |
msgstr "Veranstaltungsmanager"
|
5070 |
|
5071 |
-
#: app/features/mec/settings.php:
|
5072 |
msgid "Booking Options"
|
5073 |
msgstr "Buchungsoptionen"
|
5074 |
|
5075 |
-
#: app/features/mec/settings.php:
|
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:
|
5082 |
#, php-format
|
5083 |
msgid ""
|
5084 |
"Users can put a note for editors while they're submitting the event. Also "
|
@@ -5090,64 +5144,64 @@ msgstr ""
|
|
5090 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
5091 |
"erhalten."
|
5092 |
|
5093 |
-
#: app/features/mec/settings.php:
|
5094 |
msgid "Visibility of Note"
|
5095 |
msgstr "Sichtbarkeit der Anmerkungen zum Event "
|
5096 |
|
5097 |
-
#: app/features/mec/settings.php:
|
5098 |
msgid "Always"
|
5099 |
msgstr "Immer"
|
5100 |
|
5101 |
-
#: app/features/mec/settings.php:
|
5102 |
msgid "While event is not published"
|
5103 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
5104 |
|
5105 |
-
#: app/features/mec/settings.php:
|
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:
|
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:
|
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:
|
5125 |
msgid "Text Field"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
-
#: app/features/mec/settings.php:
|
5129 |
msgid "Enable Mailchimp Integration"
|
5130 |
msgstr "Mailchimp Integration deaktivieren"
|
5131 |
|
5132 |
-
#: app/features/mec/settings.php:
|
5133 |
msgid "List ID"
|
5134 |
msgstr "List ID"
|
5135 |
|
5136 |
-
#: app/features/mec/settings.php:
|
5137 |
msgid "Subscription Status"
|
5138 |
msgstr "Buchungsstatus"
|
5139 |
|
5140 |
-
#: app/features/mec/settings.php:
|
5141 |
msgid "Subscribe automatically"
|
5142 |
msgstr "automatisch Anmelden/Abonnieren"
|
5143 |
|
5144 |
-
#: app/features/mec/settings.php:
|
5145 |
msgid "Subscribe by verification"
|
5146 |
msgstr ""
|
5147 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
5148 |
" "
|
5149 |
|
5150 |
-
#: app/features/mec/settings.php:
|
5151 |
msgid ""
|
5152 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5153 |
"by mailchimp for subscription verification."
|
@@ -5155,51 +5209,51 @@ msgstr ""
|
|
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:
|
5159 |
#, fuzzy
|
5160 |
#| msgid "Filter Options"
|
5161 |
msgid "Upload Field Options"
|
5162 |
msgstr "Filteroptionen"
|
5163 |
|
5164 |
-
#: app/features/mec/settings.php:
|
5165 |
msgid "Mime types"
|
5166 |
msgstr ""
|
5167 |
|
5168 |
-
#: app/features/mec/settings.php:
|
5169 |
msgid "Split mime types with \",\"."
|
5170 |
msgstr ""
|
5171 |
|
5172 |
-
#: app/features/mec/settings.php:
|
5173 |
msgid "Default: jpeg,jpg,png,pdf"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
-
#: app/features/mec/settings.php:
|
5177 |
#, fuzzy
|
5178 |
#| msgid "Amount (Per Ticket)"
|
5179 |
msgid "Maximum file size"
|
5180 |
msgstr "Betrag (pro Ticket)"
|
5181 |
|
5182 |
-
#: app/features/mec/settings.php:
|
5183 |
msgid "The unit is Megabyte \"MB\""
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: app/features/mec/single.php:
|
5187 |
msgid "Single Event Date Format"
|
5188 |
msgstr "Einzelveranstaltung Datumformat"
|
5189 |
|
5190 |
-
#: app/features/mec/single.php:
|
5191 |
msgid "Date Method"
|
5192 |
msgstr "Datum Methode"
|
5193 |
|
5194 |
-
#: app/features/mec/single.php:
|
5195 |
msgid "Next occurrence date"
|
5196 |
msgstr "Nächstes vorkommende Datum"
|
5197 |
|
5198 |
-
#: app/features/mec/single.php:
|
5199 |
msgid "Referred date"
|
5200 |
msgstr "Gewünschtes Datum"
|
5201 |
|
5202 |
-
#: app/features/mec/single.php:
|
5203 |
#, fuzzy
|
5204 |
#| msgid ""
|
5205 |
#| "\"Referred date\" shows the event date based on referred date in event "
|
@@ -5210,99 +5264,99 @@ msgstr ""
|
|
5210 |
"\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
|
5211 |
"Datum in der Eventliste an."
|
5212 |
|
5213 |
-
#: app/features/mec/single.php:
|
5214 |
msgid "Single Event Style"
|
5215 |
msgstr "Single Event Stil"
|
5216 |
|
5217 |
-
#: app/features/mec/single.php:
|
5218 |
msgid "Default Style"
|
5219 |
msgstr "Standardstil voreingestellt"
|
5220 |
|
5221 |
-
#: app/features/mec/single.php:
|
5222 |
#, fuzzy
|
5223 |
#| msgid "MEC Single Sidebar"
|
5224 |
msgid "Elementor Single Builder"
|
5225 |
msgstr "MEC Single Sidebar"
|
5226 |
|
5227 |
-
#: app/features/mec/single.php:
|
5228 |
msgid "Choose your single event style."
|
5229 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
5230 |
|
5231 |
-
#: app/features/mec/single.php:
|
5232 |
#, fuzzy
|
5233 |
#| msgid "Booking"
|
5234 |
msgid "Booking Style"
|
5235 |
msgstr "Buchung / Reservierung"
|
5236 |
|
5237 |
-
#: app/features/mec/single.php:
|
5238 |
#, fuzzy
|
5239 |
#| msgid "Modal 1"
|
5240 |
msgid "Modal"
|
5241 |
msgstr "Modal 1"
|
5242 |
|
5243 |
-
#: app/features/mec/single.php:
|
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:
|
5250 |
msgid "Disable Block Editor (Gutenberg)"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
-
#: app/features/mec/single.php:
|
5254 |
msgid "Disable Block Editor"
|
5255 |
msgstr ""
|
5256 |
|
5257 |
-
#: app/features/mec/single.php:
|
5258 |
msgid "Block Editor"
|
5259 |
msgstr ""
|
5260 |
|
5261 |
-
#: app/features/mec/single.php:
|
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:
|
5268 |
msgid "Breadcrumbs"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: app/features/mec/single.php:
|
5272 |
msgid "Enable Breadcrumbs."
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: app/features/mec/single.php:
|
5276 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: app/features/mec/single.php:
|
5280 |
msgid "Show countdown module on event page"
|
5281 |
msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
|
5282 |
|
5283 |
-
#: app/features/mec/single.php:
|
5284 |
msgid "Countdown Style"
|
5285 |
msgstr "Countdown Stil"
|
5286 |
|
5287 |
-
#: app/features/mec/single.php:
|
5288 |
msgid "Plain Style"
|
5289 |
msgstr "Einfacher schlichter Stil"
|
5290 |
|
5291 |
-
#: app/features/mec/single.php:
|
5292 |
msgid "Flip Style"
|
5293 |
msgstr "Flip Stil"
|
5294 |
|
5295 |
-
#: app/features/mec/single.php:
|
5296 |
msgid "Exceptional days"
|
5297 |
msgstr "Ausgesuchte ausnehmende Tage"
|
5298 |
|
5299 |
-
#: app/features/mec/single.php:
|
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:
|
5306 |
msgid ""
|
5307 |
"Using this option you can include/exclude certain days to/from event "
|
5308 |
"occurrence dates."
|
@@ -5310,7 +5364,7 @@ msgstr ""
|
|
5310 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
5311 |
"ausschließen."
|
5312 |
|
5313 |
-
#: app/features/mec/single.php:
|
5314 |
msgid ""
|
5315 |
"Show additional organizers option on Add/Edit events page and single event "
|
5316 |
"page."
|
@@ -5318,13 +5372,13 @@ msgstr ""
|
|
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:
|
5322 |
#, fuzzy
|
5323 |
#| msgid "Additional Organizers"
|
5324 |
msgid "Additional locations"
|
5325 |
msgstr "Zusätzliche Organisatoren"
|
5326 |
|
5327 |
-
#: app/features/mec/single.php:
|
5328 |
#, fuzzy
|
5329 |
#| msgid ""
|
5330 |
#| "Show additional organizers option on Add/Edit events page and single "
|
@@ -5336,11 +5390,21 @@ msgstr ""
|
|
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/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5340 |
msgid "Custom Styles"
|
5341 |
msgstr "Benutzerdefinierte Stile"
|
5342 |
|
5343 |
-
#: app/features/mec/styles.php:
|
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,78 +5415,78 @@ msgstr ""
|
|
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:
|
5355 |
-
#: app/features/mec/styling.php:
|
5356 |
msgid "Default Font"
|
5357 |
msgstr "Standardschriftart des Themas "
|
5358 |
|
5359 |
-
#: app/features/mec/styling.php:
|
5360 |
msgid "Styling Option"
|
5361 |
msgstr "Style Optionen"
|
5362 |
|
5363 |
-
#: app/features/mec/styling.php:
|
5364 |
msgid "Color Skin"
|
5365 |
msgstr "Farbe Skin"
|
5366 |
|
5367 |
-
#: app/features/mec/styling.php:
|
5368 |
msgid "Predefined Color Skin"
|
5369 |
msgstr "Vordefinierte Farbenoberfläche"
|
5370 |
|
5371 |
-
#: app/features/mec/styling.php:
|
5372 |
msgid "Custom Color Skin"
|
5373 |
msgstr "Benutzerdefinierte Farboberfläche"
|
5374 |
|
5375 |
-
#: app/features/mec/styling.php:
|
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:
|
5382 |
msgid "Advanced Color Options (shortcodes)"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: app/features/mec/styling.php:
|
5386 |
#, fuzzy
|
5387 |
#| msgid "Title of event"
|
5388 |
msgid "Title Hover"
|
5389 |
msgstr "Titel der Veranstaltung"
|
5390 |
|
5391 |
-
#: app/features/mec/styling.php:
|
5392 |
msgid "Typography"
|
5393 |
msgstr "Typographie"
|
5394 |
|
5395 |
-
#: app/features/mec/styling.php:
|
5396 |
msgid "Heading (Events Title) Font Family"
|
5397 |
msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
|
5398 |
|
5399 |
-
#: app/features/mec/styling.php:
|
5400 |
msgid "Paragraph Font Family"
|
5401 |
msgstr "Schriftart Absätze"
|
5402 |
|
5403 |
-
#: app/features/mec/styling.php:
|
5404 |
#, fuzzy
|
5405 |
#| msgid "Enable Google Recaptcha"
|
5406 |
msgid "Disable Google Fonts"
|
5407 |
msgstr "Google Recaptcha aktivieren"
|
5408 |
|
5409 |
-
#: app/features/mec/styling.php:
|
5410 |
msgid "To be GDPR compliant you may need to disable Google fonts!"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: app/features/mec/styling.php:
|
5414 |
msgid "Container Width"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: app/features/mec/styling.php:
|
5418 |
msgid "Desktop Normal Screens"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#: app/features/mec/styling.php:
|
5422 |
msgid "You can enter your theme container size in this field"
|
5423 |
msgstr ""
|
5424 |
|
5425 |
-
#: app/features/mec/styling.php:
|
5426 |
msgid "Desktop Large Screens"
|
5427 |
msgstr ""
|
5428 |
|
@@ -5833,84 +5897,78 @@ msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
|
|
5833 |
msgid "How to add/manage shortcodes?"
|
5834 |
msgstr "Wie kann man shortcodes hinzufügen / managen?"
|
5835 |
|
5836 |
-
#: app/features/
|
5837 |
-
|
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."
|
5845 |
msgstr "Veranstalter Telefonnummer einfügen"
|
5846 |
|
5847 |
-
#: app/features/organizers.php:
|
5848 |
-
#: app/features/speakers.php:
|
5849 |
msgid "Insert organizer email address."
|
5850 |
msgstr "Veranstalter Email-Adresse einfügen"
|
5851 |
|
5852 |
-
#: app/features/organizers.php:
|
5853 |
-
#: app/features/organizers.php:
|
5854 |
msgid "Link to organizer page"
|
5855 |
msgstr "Link zur Seite des Veranstalters"
|
5856 |
|
5857 |
-
#: app/features/organizers.php:
|
5858 |
msgid "Use this field to link organizer to other user profile pages"
|
5859 |
msgstr ""
|
5860 |
"Verwenden Sie dieses Feld, um den Organisator mit anderen "
|
5861 |
"Benutzerprofilseiten zu verknüpfen"
|
5862 |
|
5863 |
-
#: app/features/organizers.php:
|
5864 |
msgid "Contact info"
|
5865 |
msgstr "Kontaktdaten"
|
5866 |
|
5867 |
-
#: app/features/organizers.php:
|
5868 |
#, php-format
|
5869 |
msgid "Event Main %s"
|
5870 |
msgstr "Hauptevent % s"
|
5871 |
|
5872 |
-
#: app/features/organizers.php:
|
5873 |
msgid "Hide organizer"
|
5874 |
msgstr "Veranstalter verbergen"
|
5875 |
|
5876 |
-
#: app/features/organizers.php:
|
5877 |
msgid "Insert a new organizer"
|
5878 |
msgstr "Neuen Veranstalter einfügen"
|
5879 |
|
5880 |
-
#: app/features/organizers.php:
|
5881 |
msgid "Choose one of saved organizers or insert new one below."
|
5882 |
msgstr ""
|
5883 |
"Wählen Sie einen der gespeicherten Veranstalter aus oder legen Sie einen "
|
5884 |
"neuen Veranstalter an."
|
5885 |
|
5886 |
-
#: app/features/organizers.php:
|
5887 |
msgid "Phone number."
|
5888 |
msgstr "Telefon"
|
5889 |
|
5890 |
-
#: app/features/organizers.php:
|
5891 |
msgid "eg. +1 (234) 5678"
|
5892 |
msgstr "z.B. +49 (1234) 56789"
|
5893 |
|
5894 |
-
#: app/features/organizers.php:
|
5895 |
msgid "Email address."
|
5896 |
msgstr "Mailadresse"
|
5897 |
|
5898 |
-
#: app/features/organizers.php:
|
5899 |
msgid "eg. john@smith.com"
|
5900 |
msgstr "z.B.. max@mustermann.com"
|
5901 |
|
5902 |
-
#: app/features/organizers.php:
|
5903 |
#, fuzzy
|
5904 |
#| msgid "http://webnus.net"
|
5905 |
msgid "eg. https://webnus.net"
|
5906 |
msgstr "http://webnus.net"
|
5907 |
|
5908 |
-
#: app/features/organizers.php:
|
5909 |
-
#: app/skins/single.php:
|
5910 |
msgid "Other Organizers"
|
5911 |
msgstr "Andere Veranstalter"
|
5912 |
|
5913 |
-
#: app/features/organizers.php:
|
5914 |
msgid ""
|
5915 |
"You can select extra organizers in addition to main organizer if you like."
|
5916 |
msgstr ""
|
@@ -5927,11 +5985,11 @@ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
|
5927 |
msgid "#"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5931 |
msgid "Status"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
-
#: app/features/profile/profile.php:37 app/libraries/main.php:
|
5935 |
msgid "Attendees"
|
5936 |
msgstr "Teilnehmer"
|
5937 |
|
@@ -5946,8 +6004,8 @@ msgstr "% s Rechnung"
|
|
5946 |
msgid "<i class=\"mec-sl-eye\"></i> %s"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
-
#: app/features/profile/profile.php:96 app/libraries/main.php:
|
5950 |
-
#: app/libraries/main.php:
|
5951 |
msgid "Ticket"
|
5952 |
msgstr "Ticket"
|
5953 |
|
@@ -5961,63 +6019,73 @@ msgstr "Verifizierung"
|
|
5961 |
msgid "No bookings found!"
|
5962 |
msgstr "Keine Buchungen gefunden"
|
5963 |
|
5964 |
-
#: app/features/
|
5965 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
5966 |
#, fuzzy
|
5967 |
#| msgid "Title"
|
5968 |
msgid "Job Title"
|
5969 |
msgstr "Titel"
|
5970 |
|
5971 |
-
#: app/features/speakers.php:
|
5972 |
msgid "Insert speaker job title."
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: app/features/speakers.php:
|
5976 |
#, fuzzy
|
5977 |
#| msgid "Insert organizer phone number."
|
5978 |
msgid "Insert speaker phone number."
|
5979 |
msgstr "Veranstalter Telefonnummer einfügen"
|
5980 |
|
5981 |
-
#: app/features/speakers.php:
|
5982 |
#, fuzzy
|
5983 |
#| msgid "Insert organizer email address."
|
5984 |
msgid "Insert speaker email address."
|
5985 |
msgstr "Veranstalter Email-Adresse einfügen"
|
5986 |
|
5987 |
-
#: app/features/speakers.php:
|
5988 |
#, fuzzy
|
5989 |
#| msgid "Facebook Page Link"
|
5990 |
msgid "Facebook Page"
|
5991 |
msgstr "Facebook Seiten Link"
|
5992 |
|
5993 |
-
#: app/features/speakers.php:
|
5994 |
#, fuzzy
|
5995 |
#| msgid "Import from Facebook Calendar"
|
5996 |
msgid "Insert URL of Facebook Page"
|
5997 |
msgstr "Vom Facebook Kalender Importieren"
|
5998 |
|
5999 |
-
#: app/features/speakers.php:
|
6000 |
msgid "Instagram"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
-
#: app/features/speakers.php:
|
6004 |
#, fuzzy
|
6005 |
#| msgid "Insert -1 for unlimited usage"
|
6006 |
msgid "Insert URL of Instagram"
|
6007 |
msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
|
6008 |
|
6009 |
-
#: app/features/speakers.php:
|
6010 |
#, fuzzy
|
6011 |
#| msgid "Twitter"
|
6012 |
msgid "Twitter Page"
|
6013 |
msgstr "Twitter"
|
6014 |
|
6015 |
-
#: app/features/speakers.php:
|
6016 |
#, fuzzy
|
6017 |
#| msgid "Insert -1 for unlimited usage"
|
6018 |
msgid "Insert URL of Twitter Page"
|
6019 |
msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
|
6020 |
|
|
|
|
|
|
|
|
|
6021 |
#: app/libraries/book.php:60
|
6022 |
#, php-format
|
6023 |
msgid "%s Price"
|
@@ -6107,38 +6175,38 @@ msgstr ""
|
|
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:
|
6111 |
-
#: app/libraries/main.php:
|
6112 |
msgid "Grid View"
|
6113 |
msgstr "Rasterdarstellung"
|
6114 |
|
6115 |
-
#: app/libraries/main.php:331 app/libraries/main.php:
|
6116 |
-
#: app/libraries/main.php:
|
6117 |
msgid "Agenda View"
|
6118 |
msgstr "Agendaansicht"
|
6119 |
|
6120 |
-
#: app/libraries/main.php:332 app/libraries/main.php:
|
6121 |
-
#: app/libraries/main.php:
|
6122 |
msgid "Full Calendar"
|
6123 |
msgstr "Ganzer Kalender"
|
6124 |
|
6125 |
-
#: app/libraries/main.php:334 app/libraries/main.php:
|
6126 |
-
#: app/libraries/main.php:
|
6127 |
msgid "Calendar/Monthly View"
|
6128 |
msgstr "Kalender-/Monatsansicht"
|
6129 |
|
6130 |
-
#: app/libraries/main.php:337 app/libraries/main.php:
|
6131 |
-
#: app/libraries/main.php:
|
6132 |
msgid "Timetable View"
|
6133 |
msgstr "Stundenplan"
|
6134 |
|
6135 |
-
#: app/libraries/main.php:338 app/libraries/main.php:
|
6136 |
-
#: app/libraries/main.php:
|
6137 |
msgid "Masonry View"
|
6138 |
msgstr "Kachel Ansicht"
|
6139 |
|
6140 |
-
#: app/libraries/main.php:339 app/libraries/main.php:
|
6141 |
-
#: app/libraries/main.php:
|
6142 |
msgid "Map View"
|
6143 |
msgstr "Kartenansicht"
|
6144 |
|
@@ -6162,31 +6230,31 @@ msgstr "Karussellansicht"
|
|
6162 |
msgid "Slider View"
|
6163 |
msgstr "Slideransicht"
|
6164 |
|
6165 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6166 |
msgid "SU"
|
6167 |
msgstr "SO"
|
6168 |
|
6169 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6170 |
msgid "MO"
|
6171 |
msgstr "MO"
|
6172 |
|
6173 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6174 |
msgid "TU"
|
6175 |
msgstr "DI"
|
6176 |
|
6177 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6178 |
msgid "WE"
|
6179 |
msgstr "MI"
|
6180 |
|
6181 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6182 |
msgid "TH"
|
6183 |
msgstr "DO"
|
6184 |
|
6185 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6186 |
msgid "FR"
|
6187 |
msgstr "FR"
|
6188 |
|
6189 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6190 |
msgid "SA"
|
6191 |
msgstr "SA"
|
6192 |
|
@@ -6235,282 +6303,282 @@ msgstr "Veranstaltungen an diesem Ort "
|
|
6235 |
msgid "Event at this location"
|
6236 |
msgstr "Veranstaltung an diesem Ort "
|
6237 |
|
6238 |
-
#: app/libraries/main.php:
|
6239 |
msgid "Facebook"
|
6240 |
msgstr "Facebook"
|
6241 |
|
6242 |
-
#: app/libraries/main.php:
|
6243 |
msgid "Twitter"
|
6244 |
msgstr "Twitter"
|
6245 |
|
6246 |
-
#: app/libraries/main.php:
|
6247 |
msgid "Linkedin"
|
6248 |
msgstr "Linkedin"
|
6249 |
|
6250 |
-
#: app/libraries/main.php:
|
6251 |
msgid "VK"
|
6252 |
msgstr ""
|
6253 |
|
6254 |
-
#: app/libraries/main.php:
|
6255 |
msgid "Share on Facebook"
|
6256 |
msgstr "Teilen auf Facebook"
|
6257 |
|
6258 |
-
#: app/libraries/main.php:
|
6259 |
msgid "Tweet"
|
6260 |
msgstr "Tweet"
|
6261 |
|
6262 |
-
#: app/libraries/main.php:
|
6263 |
#, fuzzy
|
6264 |
#| msgid "Shortcode"
|
6265 |
msgid "Custom Shortcode"
|
6266 |
msgstr "Shortcode"
|
6267 |
|
6268 |
-
#: app/libraries/main.php:
|
6269 |
msgid "Your booking successfully verified."
|
6270 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6271 |
|
6272 |
-
#: app/libraries/main.php:
|
6273 |
msgid "Your booking cannot verify!"
|
6274 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
6275 |
|
6276 |
-
#: app/libraries/main.php:
|
6277 |
msgid "Your booking successfully canceled."
|
6278 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
6279 |
|
6280 |
-
#: app/libraries/main.php:
|
6281 |
msgid "Your booking cannot be canceled."
|
6282 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
6283 |
|
6284 |
-
#: app/libraries/main.php:
|
6285 |
msgid "You canceled the payment successfully."
|
6286 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
6287 |
|
6288 |
-
#: app/libraries/main.php:
|
6289 |
msgid "You returned from payment gateway successfully."
|
6290 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
6291 |
|
6292 |
-
#: app/libraries/main.php:
|
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:
|
6299 |
#, fuzzy
|
6300 |
#| msgid "Booking is invalid."
|
6301 |
msgid "Invoice is invalid."
|
6302 |
msgstr "Buchung ist ungültig."
|
6303 |
|
6304 |
-
#: app/libraries/main.php:
|
6305 |
msgid "Cannot find the booking!"
|
6306 |
msgstr "Kann die Buchung nicht finden!"
|
6307 |
|
6308 |
-
#: app/libraries/main.php:
|
6309 |
msgid "Booking is invalid."
|
6310 |
msgstr "Buchung ist ungültig."
|
6311 |
|
6312 |
-
#: app/libraries/main.php:
|
6313 |
#, php-format
|
6314 |
msgid "%s Invoice"
|
6315 |
msgstr "% s Rechnung"
|
6316 |
|
6317 |
-
#: app/libraries/main.php:
|
6318 |
msgid "Transaction ID"
|
6319 |
msgstr "Transaktions-ID"
|
6320 |
|
6321 |
-
#: app/libraries/main.php:
|
6322 |
msgid "Billing"
|
6323 |
msgstr "Abrechnung"
|
6324 |
|
6325 |
-
#: app/libraries/main.php:
|
6326 |
msgid "Total"
|
6327 |
msgstr "Gesamt"
|
6328 |
|
6329 |
-
#: app/libraries/main.php:
|
6330 |
msgid "Security nonce is not valid."
|
6331 |
msgstr "Sicherheits-Nonce ist ungültig."
|
6332 |
|
6333 |
-
#: app/libraries/main.php:
|
6334 |
msgid "iCal export stopped!"
|
6335 |
msgstr "iCal Export wurde unterbrochen!"
|
6336 |
|
6337 |
-
#: app/libraries/main.php:
|
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:
|
6344 |
-
#: app/libraries/main.php:
|
6345 |
-
#: app/libraries/main.php:
|
6346 |
-
#: app/libraries/main.php:
|
6347 |
-
#: app/libraries/main.php:
|
6348 |
-
#: app/libraries/main.php:
|
6349 |
-
#: app/libraries/main.php:
|
6350 |
msgid "Sort"
|
6351 |
msgstr "Sortieren"
|
6352 |
|
6353 |
-
#: app/libraries/main.php:
|
6354 |
-
#: app/libraries/main.php:
|
6355 |
-
#: app/libraries/main.php:
|
6356 |
-
#: app/libraries/main.php:
|
6357 |
-
#: app/libraries/main.php:
|
6358 |
-
#: app/libraries/main.php:
|
6359 |
msgid "Required Field"
|
6360 |
msgstr "Pflichtfeld"
|
6361 |
|
6362 |
-
#: app/libraries/main.php:
|
6363 |
-
#: app/libraries/main.php:
|
6364 |
-
#: app/libraries/main.php:
|
6365 |
-
#: app/libraries/main.php:
|
6366 |
-
#: app/libraries/main.php:
|
6367 |
-
#: app/libraries/main.php:
|
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:
|
6372 |
msgid "HTML and shortcode are allowed."
|
6373 |
msgstr "HTML und shortcodes sind erlaubt."
|
6374 |
|
6375 |
-
#: app/libraries/main.php:
|
6376 |
-
#: app/libraries/main.php:
|
6377 |
msgid "Option"
|
6378 |
msgstr "Option"
|
6379 |
|
6380 |
-
#: app/libraries/main.php:
|
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:
|
6386 |
msgid "Agreement Page"
|
6387 |
msgstr "Zustimmungsseite"
|
6388 |
|
6389 |
-
#: app/libraries/main.php:
|
6390 |
msgid "Checked by default"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: app/libraries/main.php:
|
6394 |
msgid "Unchecked by default"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
-
#: app/libraries/main.php:
|
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:
|
6402 |
msgid "Free"
|
6403 |
msgstr "kostenfrei"
|
6404 |
|
6405 |
-
#: app/libraries/main.php:
|
6406 |
#, fuzzy
|
6407 |
#| msgid "M.E. Calendar"
|
6408 |
msgid "M.E. Calender"
|
6409 |
msgstr "M.E. Calender"
|
6410 |
|
6411 |
-
#: app/libraries/main.php:
|
6412 |
#, php-format
|
6413 |
msgid "Copy of %s"
|
6414 |
msgstr "Kopie von %s"
|
6415 |
|
6416 |
-
#: app/libraries/main.php:
|
6417 |
msgid "Booked an event."
|
6418 |
msgstr "Eine Veranstaltung wurde gebucht."
|
6419 |
|
6420 |
-
#: app/libraries/main.php:
|
6421 |
#, php-format
|
6422 |
msgid "%s booked %s event."
|
6423 |
msgstr "%s gebuchtes %s Event"
|
6424 |
|
6425 |
-
#: app/libraries/main.php:
|
6426 |
msgid "Taxonomies"
|
6427 |
msgstr "Klassifizierung "
|
6428 |
|
6429 |
-
#: app/libraries/main.php:
|
6430 |
msgid "Category Plural Label"
|
6431 |
msgstr "Kategorien"
|
6432 |
|
6433 |
-
#: app/libraries/main.php:
|
6434 |
msgid "Category Singular Label"
|
6435 |
msgstr "Kategorie"
|
6436 |
|
6437 |
-
#: app/libraries/main.php:
|
6438 |
msgid "Label Plural Label"
|
6439 |
msgstr "Labels"
|
6440 |
|
6441 |
-
#: app/libraries/main.php:
|
6442 |
msgid "Label Singular Label"
|
6443 |
msgstr "Label"
|
6444 |
|
6445 |
-
#: app/libraries/main.php:
|
6446 |
msgid "label"
|
6447 |
msgstr "label"
|
6448 |
|
6449 |
-
#: app/libraries/main.php:
|
6450 |
msgid "Location Plural Label"
|
6451 |
msgstr "Veranstaltungsorte"
|
6452 |
|
6453 |
-
#: app/libraries/main.php:
|
6454 |
msgid "Location Singular Label"
|
6455 |
msgstr "Veranstaltungsort"
|
6456 |
|
6457 |
-
#: app/libraries/main.php:
|
6458 |
msgid "Organizer Plural Label"
|
6459 |
msgstr "Veranstalter"
|
6460 |
|
6461 |
-
#: app/libraries/main.php:
|
6462 |
msgid "Organizer Singular Label"
|
6463 |
msgstr "Veranstalter"
|
6464 |
|
6465 |
-
#: app/libraries/main.php:
|
6466 |
#, fuzzy
|
6467 |
#| msgid "Label Plural Label"
|
6468 |
msgid "Speaker Plural Label"
|
6469 |
msgstr "Labels"
|
6470 |
|
6471 |
-
#: app/libraries/main.php:
|
6472 |
#, fuzzy
|
6473 |
#| msgid "Label Singular Label"
|
6474 |
msgid "Speaker Singular Label"
|
6475 |
msgstr "Label"
|
6476 |
|
6477 |
-
#: app/libraries/main.php:
|
6478 |
msgid "Sunday abbreviation"
|
6479 |
msgstr "Sonntag Abkürzung"
|
6480 |
|
6481 |
-
#: app/libraries/main.php:
|
6482 |
msgid "Monday abbreviation"
|
6483 |
msgstr "Montag Abkürzung"
|
6484 |
|
6485 |
-
#: app/libraries/main.php:
|
6486 |
msgid "Tuesday abbreviation"
|
6487 |
msgstr "Dienstag Abkürzung"
|
6488 |
|
6489 |
-
#: app/libraries/main.php:
|
6490 |
msgid "Wednesday abbreviation"
|
6491 |
msgstr "Mittwoch Abkürzung"
|
6492 |
|
6493 |
-
#: app/libraries/main.php:
|
6494 |
msgid "Thursday abbreviation"
|
6495 |
msgstr "Donnerstag Abkürzung"
|
6496 |
|
6497 |
-
#: app/libraries/main.php:
|
6498 |
msgid "Friday abbreviation"
|
6499 |
msgstr "Freitag Abkürzung"
|
6500 |
|
6501 |
-
#: app/libraries/main.php:
|
6502 |
msgid "Saturday abbreviation"
|
6503 |
msgstr "Samstag Abkürzung "
|
6504 |
|
6505 |
-
#: app/libraries/main.php:
|
6506 |
msgid "Others"
|
6507 |
msgstr "Andere"
|
6508 |
|
6509 |
-
#: app/libraries/main.php:
|
6510 |
msgid "Booking Success Message"
|
6511 |
msgstr "Buchung erfolgreich Mitteilung"
|
6512 |
|
6513 |
-
#: app/libraries/main.php:
|
6514 |
msgid ""
|
6515 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6516 |
"needed, please check your email."
|
@@ -6518,19 +6586,19 @@ msgstr ""
|
|
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:
|
6522 |
msgid "Register Button"
|
6523 |
msgstr "Register Button"
|
6524 |
|
6525 |
-
#: app/libraries/main.php:
|
6526 |
-
#: app/skins/carousel/render.php:
|
6527 |
-
#: app/skins/grid/render.php:116 app/skins/grid/render.php:
|
6528 |
-
#: app/skins/grid/render.php:
|
6529 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6530 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6531 |
-
#: app/skins/single.php:
|
6532 |
-
#: app/skins/single/default.php:
|
6533 |
-
#: app/skins/single/default.php:
|
6534 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6535 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:68
|
6536 |
#: app/skins/single/modern.php:70 app/skins/slider/render.php:109
|
@@ -6539,14 +6607,14 @@ msgstr "Register Button"
|
|
6539 |
msgid "REGISTER"
|
6540 |
msgstr "ANMELDEN"
|
6541 |
|
6542 |
-
#: app/libraries/main.php:
|
6543 |
msgid "View Detail Button"
|
6544 |
msgstr "Ansicht Detail Button"
|
6545 |
|
6546 |
-
#: app/libraries/main.php:
|
6547 |
-
#: app/skins/carousel/render.php:
|
6548 |
-
#: app/skins/grid/render.php:
|
6549 |
-
#: app/skins/grid/render.php:
|
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,59 +6622,59 @@ msgstr "Ansicht Detail Button"
|
|
6554 |
msgid "View Detail"
|
6555 |
msgstr "Details "
|
6556 |
|
6557 |
-
#: app/libraries/main.php:
|
6558 |
msgid "Event Detail Button"
|
6559 |
msgstr "Event Detail Button"
|
6560 |
|
6561 |
-
#: app/libraries/main.php:
|
6562 |
msgid "Event Detail"
|
6563 |
msgstr "Veranstaltungsdetails"
|
6564 |
|
6565 |
-
#: app/libraries/main.php:
|
6566 |
msgid "More Info Link"
|
6567 |
msgstr "Link Mehr Informationen"
|
6568 |
|
6569 |
-
#: app/libraries/main.php:
|
6570 |
msgid "Ticket (Singular)"
|
6571 |
msgstr "Ticket"
|
6572 |
|
6573 |
-
#: app/libraries/main.php:
|
6574 |
msgid "Tickets (Plural)"
|
6575 |
msgstr "Tickets"
|
6576 |
|
6577 |
-
#: app/libraries/main.php:
|
6578 |
msgid "EventON"
|
6579 |
msgstr "EventON"
|
6580 |
|
6581 |
-
#: app/libraries/main.php:
|
6582 |
msgid "The Events Calendar"
|
6583 |
msgstr "The Events Calendar"
|
6584 |
|
6585 |
-
#: app/libraries/main.php:
|
6586 |
msgid "Events Schedule WP Plugin"
|
6587 |
msgstr "Event Zeitplan WP-Plugin"
|
6588 |
|
6589 |
-
#: app/libraries/main.php:
|
6590 |
msgid "Calendarize It"
|
6591 |
msgstr ""
|
6592 |
|
6593 |
-
#: app/libraries/main.php:
|
6594 |
msgid "Confirmed"
|
6595 |
msgstr "Bestätigt"
|
6596 |
|
6597 |
-
#: app/libraries/main.php:
|
6598 |
msgid "Rejected"
|
6599 |
msgstr "Abgelehnt"
|
6600 |
|
6601 |
-
#: app/libraries/main.php:
|
6602 |
msgid "Pending"
|
6603 |
msgstr "Ausstehend"
|
6604 |
|
6605 |
-
#: app/libraries/main.php:
|
6606 |
msgid "Waiting"
|
6607 |
msgstr "in Bearbeitung"
|
6608 |
|
6609 |
-
#: app/libraries/main.php:
|
6610 |
msgid "Skin controller does not exist."
|
6611 |
msgstr "Skin contoller existiert nicht."
|
6612 |
|
@@ -6636,10 +6704,10 @@ msgstr "Eine neue Buchung ist eingegangen."
|
|
6636 |
msgid "A new event is added."
|
6637 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
6638 |
|
6639 |
-
#: app/libraries/notifications.php:535 app/libraries/render.php:
|
6640 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6641 |
-
#: app/skins/single.php:
|
6642 |
-
#: app/skins/single/default.php:
|
6643 |
#: app/skins/single/modern.php:184
|
6644 |
msgid "All of the day"
|
6645 |
msgstr "Den ganzen Tag"
|
@@ -6664,7 +6732,7 @@ msgstr "Ja"
|
|
6664 |
msgid "No"
|
6665 |
msgstr "Nein"
|
6666 |
|
6667 |
-
#: app/libraries/skins.php:
|
6668 |
msgid "Ignore month and years"
|
6669 |
msgstr "Monat und Jahre ignorieren"
|
6670 |
|
@@ -6681,30 +6749,30 @@ msgstr "Keine Teilnehmer gefunden! Seien Sie der erste Teilnehmer der bucht!"
|
|
6681 |
msgid "%s tickets"
|
6682 |
msgstr "%s tickets"
|
6683 |
|
6684 |
-
#: app/modules/booking/steps/checkout.php:
|
6685 |
msgid "Checkout"
|
6686 |
msgstr "Zur Kasse gehen"
|
6687 |
|
6688 |
-
#: app/modules/booking/steps/checkout.php:
|
6689 |
msgid "Discount Coupon"
|
6690 |
msgstr "Rabattgutschein"
|
6691 |
|
6692 |
-
#: app/modules/booking/steps/checkout.php:
|
6693 |
msgid "Apply Coupon"
|
6694 |
msgstr "Gutschein verwenden"
|
6695 |
|
6696 |
-
#: app/modules/booking/steps/checkout.php:
|
6697 |
msgid "Free Booking"
|
6698 |
msgstr "Kostenlose Buchung"
|
6699 |
|
6700 |
-
#: app/modules/booking/steps/form.php:
|
6701 |
#, fuzzy
|
6702 |
#| msgid "Fill other attendees's information like the first form."
|
6703 |
msgid "Fill other attendees information like the first form."
|
6704 |
msgstr ""
|
6705 |
"Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
|
6706 |
|
6707 |
-
#: app/modules/booking/steps/form.php:
|
6708 |
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:119
|
6709 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:208
|
6710 |
msgid "Next"
|
@@ -6746,7 +6814,7 @@ msgstr "Adresse von..."
|
|
6746 |
msgid "Get Directions"
|
6747 |
msgstr "Wegbeschreibung"
|
6748 |
|
6749 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6750 |
msgid "Share this event"
|
6751 |
msgstr "Diese Veranstaltung teilen"
|
6752 |
|
@@ -6773,8 +6841,8 @@ msgstr "Nächstes Event"
|
|
6773 |
msgid "Go to occurrence page"
|
6774 |
msgstr "Zum Event"
|
6775 |
|
6776 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6777 |
-
#: app/skins/single/default.php:
|
6778 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6779 |
msgid "Time"
|
6780 |
msgstr "Uhrzeit"
|
@@ -6847,13 +6915,13 @@ msgstr "Weitere anzeigen"
|
|
6847 |
msgid "Available Spot(s):"
|
6848 |
msgstr "Verfügbare Spot (s):"
|
6849 |
|
6850 |
-
#: app/skins/carousel/render.php:
|
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:
|
6857 |
#, fuzzy
|
6858 |
#| msgid "All Events"
|
6859 |
msgid "View All Events"
|
@@ -6869,11 +6937,19 @@ msgstr "%s Kommendes Event"
|
|
6869 |
msgid "featured event"
|
6870 |
msgstr "Ausgewählte Veranstaltung"
|
6871 |
|
6872 |
-
#: app/skins/daily_view/render.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6873 |
msgid "No event"
|
6874 |
msgstr "Keine Veranstaltung"
|
6875 |
|
6876 |
-
#: app/skins/full_calendar/tpl.php:
|
6877 |
msgid "List"
|
6878 |
msgstr "Liste / Listenansicht"
|
6879 |
|
@@ -6882,50 +6958,50 @@ msgid "All"
|
|
6882 |
msgstr "Alle"
|
6883 |
|
6884 |
#: app/skins/monthly_view/calendar.php:68
|
6885 |
-
#: app/skins/monthly_view/calendar.php:
|
6886 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
6887 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
6888 |
#, php-format
|
6889 |
msgid "Events for %s"
|
6890 |
msgstr "Veranstaltungen für %s"
|
6891 |
|
6892 |
-
#: app/skins/monthly_view/calendar.php:
|
6893 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
6894 |
-
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:
|
6895 |
msgid "No Events"
|
6896 |
msgstr "Keine Veranstaltungen"
|
6897 |
|
6898 |
-
#: app/skins/single.php:
|
6899 |
msgid "Home"
|
6900 |
msgstr ""
|
6901 |
|
6902 |
-
#: app/skins/single.php:
|
6903 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6904 |
#: app/skins/single/modern.php:256
|
6905 |
msgid "Sold out!"
|
6906 |
msgstr "Ausverkauft!"
|
6907 |
|
6908 |
-
#: app/skins/single.php:
|
6909 |
-
#: app/skins/single/default.php:
|
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:
|
6916 |
-
#: app/skins/single/default.php:
|
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:
|
6923 |
#, fuzzy
|
6924 |
#| msgid "No Search Options"
|
6925 |
msgid "Speakers:"
|
6926 |
msgstr "Keine Suchoptionen"
|
6927 |
|
6928 |
-
#: app/skins/single/default.php:
|
6929 |
#: app/skins/single/m2.php:183 app/skins/single/modern.php:266
|
6930 |
msgid "Tags: "
|
6931 |
msgstr "Tags:"
|
@@ -7190,6 +7266,11 @@ msgstr "http://webnus.net"
|
|
7190 |
#~ msgid "Search Coupons"
|
7191 |
#~ msgstr "Gutscheine suchen"
|
7192 |
|
|
|
|
|
|
|
|
|
|
|
7193 |
#~ msgid "Discount Type"
|
7194 |
#~ msgstr "Rabatt-Art"
|
7195 |
|
@@ -7272,6 +7353,44 @@ msgstr "http://webnus.net"
|
|
7272 |
#~ msgid "Publishable Key"
|
7273 |
#~ msgstr "publizierbarer Schlüssel"
|
7274 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7275 |
#~ msgid "Pay Locally"
|
7276 |
#~ msgstr "Vor Ort bezahlen"
|
7277 |
|
@@ -7293,9 +7412,6 @@ msgstr "http://webnus.net"
|
|
7293 |
#~ msgid "Sandbox"
|
7294 |
#~ msgstr "Sandbox"
|
7295 |
|
7296 |
-
#~ msgid "Waiting for getting response from gateway."
|
7297 |
-
#~ msgstr "Warte auf Antwort des Gateways."
|
7298 |
-
|
7299 |
#~ msgid "Payment was invalid! Booking failed."
|
7300 |
#~ msgstr "Die Transaktion war ungültig. Die Buchung wurde nicht durchgeführt."
|
7301 |
|
@@ -7367,6 +7483,11 @@ msgstr "http://webnus.net"
|
|
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"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-08-03 17:08+0430\n"
|
6 |
+
"PO-Revision-Date: 2019-08-03 17:10+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:288
|
27 |
msgid "Content"
|
28 |
msgstr "Inhalt"
|
29 |
|
68 |
msgstr "Alles Auswählen"
|
69 |
|
70 |
#: app/features/colors.php:50 app/features/fes/form.php:794
|
71 |
+
#: app/features/mec/settings.php:792
|
72 |
msgid "Event Color"
|
73 |
msgstr "Farbe der Veranstaltung"
|
74 |
|
83 |
msgid "Settings"
|
84 |
msgstr "Einstellungen"
|
85 |
|
86 |
+
#: app/features/contextual.php:62 app/features/events.php:2268
|
87 |
+
#: app/features/mec/booking.php:148 app/features/mec/gateways.php:113
|
88 |
+
#: app/features/mec/ie.php:109 app/features/mec/messages.php:113
|
89 |
+
#: app/features/mec/modules.php:175 app/features/mec/notifications.php:112
|
90 |
+
#: app/features/mec/regform.php:149 app/features/mec/regform.php:218
|
91 |
+
#: app/features/mec/settings.php:185 app/features/mec/single.php:146
|
92 |
+
#: app/features/mec/styles.php:113 app/features/mec/styling.php:135
|
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:155
|
112 |
+
#: app/features/mec/gateways.php:120 app/features/mec/gateways.php:183
|
113 |
+
#: app/features/mec/ie.php:116 app/features/mec/messages.php:120
|
114 |
+
#: app/features/mec/modules.php:182 app/features/mec/notifications.php:119
|
115 |
+
#: app/features/mec/regform.php:156 app/features/mec/settings.php:192
|
116 |
+
#: app/features/mec/single.php:153 app/features/mec/styles.php:120
|
117 |
+
#: app/features/mec/styling.php:142 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:164
|
132 |
+
#: app/features/mec/gateways.php:129 app/features/mec/ie.php:125
|
133 |
+
#: app/features/mec/messages.php:129 app/features/mec/modules.php:191
|
134 |
+
#: app/features/mec/notifications.php:131 app/features/mec/regform.php:164
|
135 |
+
#: app/features/mec/settings.php:201 app/features/mec/single.php:162
|
136 |
+
#: app/features/mec/styles.php:129 app/features/mec/styling.php:151
|
137 |
#: app/features/mec/support.php:45
|
138 |
msgid "Notifications"
|
139 |
msgstr "Benachrichtigungen"
|
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:259
|
221 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
222 |
#: app/features/mec/styling.php:50
|
223 |
msgid "General Options"
|
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:576
|
231 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
232 |
#: app/features/mec/styling.php:52
|
233 |
msgid "Slugs/Permalinks"
|
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:608
|
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:126
|
251 |
+
#: app/features/mec/gateways.php:91 app/features/mec/ie.php:87
|
252 |
+
#: app/features/mec/messages.php:91 app/features/mec/modules.php:111
|
253 |
+
#: app/features/mec/modules.php:273 app/features/mec/modules.php:291
|
254 |
+
#: app/features/mec/notifications.php:90 app/features/mec/regform.php:128
|
255 |
+
#: app/features/mec/settings.php:163 app/features/mec/single.php:124
|
256 |
+
#: app/features/mec/styles.php:91 app/features/mec/styling.php:113
|
257 |
msgid "Google Maps Options"
|
258 |
msgstr "Google Maps Einstellungen"
|
259 |
|
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:665
|
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"
|
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:319 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:134
|
281 |
+
#: app/features/mec/gateways.php:99 app/features/mec/ie.php:95
|
282 |
+
#: app/features/mec/messages.php:99 app/features/mec/modules.php:147
|
283 |
+
#: app/features/mec/modules.php:469 app/features/mec/notifications.php:98
|
284 |
+
#: app/features/mec/regform.php:136 app/features/mec/settings.php:171
|
285 |
+
#: app/features/mec/single.php:132 app/features/mec/styles.php:99
|
286 |
+
#: app/features/mec/styling.php:121
|
287 |
msgid "Social Networks"
|
288 |
msgstr "Soziale Netzwerke"
|
289 |
|
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:701
|
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"
|
312 |
msgstr "Herausgenommene Tage "
|
313 |
|
314 |
#: app/features/contextual.php:308 app/features/events.php:285
|
315 |
+
#: app/features/mec/booking.php:79 app/features/mec/booking.php:86
|
316 |
+
#: app/features/mec/booking.php:169 app/features/mec/booking.php:221
|
317 |
+
#: app/features/mec/gateways.php:66 app/features/mec/gateways.php:70
|
318 |
+
#: app/features/mec/gateways.php:134 app/features/mec/ie.php:62
|
319 |
+
#: app/features/mec/ie.php:66 app/features/mec/ie.php:130
|
320 |
+
#: app/features/mec/messages.php:66 app/features/mec/messages.php:70
|
321 |
+
#: app/features/mec/messages.php:134 app/features/mec/modules.php:73
|
322 |
+
#: app/features/mec/modules.php:77 app/features/mec/modules.php:196
|
323 |
+
#: app/features/mec/notifications.php:65 app/features/mec/notifications.php:69
|
324 |
+
#: app/features/mec/notifications.php:138
|
325 |
+
#: app/features/mec/notifications.php:227 app/features/mec/regform.php:103
|
326 |
+
#: app/features/mec/regform.php:107 app/features/mec/regform.php:169
|
327 |
+
#: app/features/mec/settings.php:138 app/features/mec/settings.php:142
|
328 |
+
#: app/features/mec/settings.php:206 app/features/mec/single.php:99
|
329 |
+
#: app/features/mec/single.php:103 app/features/mec/single.php:167
|
330 |
+
#: app/features/mec/styles.php:66 app/features/mec/styles.php:70
|
331 |
+
#: app/features/mec/styles.php:134 app/features/mec/styling.php:88
|
332 |
+
#: app/features/mec/styling.php:92 app/features/mec/styling.php:156
|
333 |
msgid "Booking"
|
334 |
msgstr "Buchung / Reservierung"
|
335 |
|
336 |
+
#: app/features/contextual.php:318 app/features/mec/booking.php:94
|
337 |
+
#: app/features/mec/booking.php:356 app/features/mec/gateways.php:72
|
338 |
+
#: app/features/mec/ie.php:68 app/features/mec/messages.php:72
|
339 |
+
#: app/features/mec/modules.php:79 app/features/mec/notifications.php:71
|
340 |
+
#: app/features/mec/regform.php:109 app/features/mec/settings.php:144
|
341 |
+
#: app/features/mec/single.php:105 app/features/mec/styles.php:72
|
342 |
+
#: app/features/mec/styling.php:94
|
343 |
msgid "Coupons"
|
344 |
msgstr "Gutscheine"
|
345 |
|
346 |
+
#: app/features/contextual.php:326 app/features/mec/booking.php:137
|
347 |
+
#: app/features/mec/gateways.php:102 app/features/mec/ie.php:98
|
348 |
+
#: app/features/mec/messages.php:102 app/features/mec/modules.php:161
|
349 |
+
#: app/features/mec/modules.php:530 app/features/mec/notifications.php:101
|
350 |
+
#: app/features/mec/regform.php:139 app/features/mec/settings.php:174
|
351 |
+
#: app/features/mec/single.php:135 app/features/mec/styles.php:102
|
352 |
+
#: app/features/mec/styling.php:124
|
353 |
msgid "BuddyPress Integration"
|
354 |
msgstr "Buddy Press Integration"
|
355 |
|
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:937
|
361 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
362 |
#: app/features/mec/styling.php:59
|
363 |
msgid "Mailchimp Integration"
|
368 |
msgstr "MEC Aktivierung"
|
369 |
|
370 |
#: app/features/events.php:137 app/features/ix/export.php:34
|
371 |
+
#: app/features/mec/dashboard.php:202 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"
|
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:155
|
419 |
+
#: app/features/mec/meta_boxes/search_form.php:216
|
420 |
+
#: app/features/mec/meta_boxes/search_form.php:277
|
421 |
+
#: app/features/mec/meta_boxes/search_form.php:338
|
422 |
+
#: app/features/mec/meta_boxes/search_form.php:399
|
423 |
+
#: app/features/mec/meta_boxes/search_form.php:453
|
424 |
+
#: app/features/mec/meta_boxes/search_form.php:514
|
425 |
+
#: app/features/mec/meta_boxes/search_form.php:575
|
426 |
+
#: app/features/mec/settings.php:890 app/features/mec/single.php:390
|
427 |
+
#: app/libraries/main.php:4496 app/libraries/skins.php:813
|
428 |
+
#: app/skins/single.php:519 app/skins/single/default.php:170
|
429 |
+
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
430 |
+
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
431 |
msgid "Category"
|
432 |
msgstr "Kategorie"
|
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:4495
|
437 |
msgid "Categories"
|
438 |
msgstr "Kategorien"
|
439 |
|
440 |
#: app/features/events.php:173 app/features/labels.php:71
|
441 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
442 |
+
#: app/features/speakers.php:70
|
443 |
#, php-format
|
444 |
msgid "All %s"
|
445 |
msgstr "Alle %s"
|
446 |
|
447 |
#: app/features/events.php:174 app/features/labels.php:72
|
448 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
449 |
+
#: app/features/speakers.php:71
|
450 |
#, php-format
|
451 |
msgid "Edit %s"
|
452 |
msgstr "Bearbeiten %s"
|
453 |
|
454 |
#: app/features/events.php:175 app/features/labels.php:73
|
455 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
456 |
+
#: app/features/speakers.php:72
|
457 |
#, php-format
|
458 |
msgid "View %s"
|
459 |
msgstr "Ansicht %s"
|
460 |
|
461 |
#: app/features/events.php:176 app/features/labels.php:74
|
462 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
463 |
+
#: app/features/speakers.php:73
|
464 |
#, php-format
|
465 |
msgid "Update %s"
|
466 |
msgstr "Update %s"
|
467 |
|
468 |
#: app/features/events.php:177 app/features/labels.php:75
|
469 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
470 |
+
#: app/features/speakers.php:74
|
471 |
#, php-format
|
472 |
msgid "Add New %s"
|
473 |
msgstr "Neu hinzufügen%s"
|
474 |
|
475 |
#: app/features/events.php:178 app/features/labels.php:76
|
476 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
477 |
+
#: app/features/speakers.php:75
|
478 |
#, php-format
|
479 |
msgid "New %s Name"
|
480 |
msgstr "Neuer %s Name"
|
481 |
|
482 |
#: app/features/events.php:179 app/features/labels.php:77
|
483 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
484 |
+
#: app/features/speakers.php:76
|
485 |
#, php-format
|
486 |
msgid "Popular %s"
|
487 |
msgstr "Beliebt %s"
|
488 |
|
489 |
#: app/features/events.php:180 app/features/labels.php:78
|
490 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
491 |
+
#: app/features/speakers.php:77
|
492 |
#, php-format
|
493 |
msgid "Search %s"
|
494 |
msgstr "Suche %s"
|
505 |
msgid "Event Details"
|
506 |
msgstr "Veranstaltungsdetails"
|
507 |
|
508 |
+
#: app/features/events.php:322 app/features/events.php:3168
|
509 |
+
#: app/features/events.php:3210 app/features/fes/form.php:706
|
510 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
511 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4528
|
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:4529 app/skins/single.php:542
|
519 |
+
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
520 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
521 |
msgid "Cost"
|
522 |
msgstr " Preis"
|
529 |
msgid "Guest Data"
|
530 |
msgstr "Gäste Daten"
|
531 |
|
532 |
+
#: app/features/events.php:432 app/features/events.php:2250
|
533 |
+
#: app/features/fes/form.php:668 app/features/labels.php:178
|
534 |
+
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
535 |
#: app/features/profile/profile.php:90 app/libraries/notifications.php:673
|
536 |
+
#: app/modules/booking/steps/form.php:37
|
537 |
msgid "Name"
|
538 |
msgstr "Name"
|
539 |
|
540 |
+
#: app/features/events.php:433 app/features/events.php:2261
|
541 |
+
#: app/features/events.php:2339 app/features/fes/form.php:664
|
542 |
+
#: app/features/mec/regform.php:39 app/features/mec/regform.php:270
|
543 |
+
#: app/features/organizers.php:111 app/features/organizers.php:152
|
544 |
+
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
545 |
+
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
546 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2262
|
547 |
+
#: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:46
|
548 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:770
|
549 |
+
#: app/skins/single.php:825 app/skins/single/default.php:212
|
550 |
+
#: app/skins/single/default.php:424 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"
|
557 |
msgstr "Datum und Uhrzeit"
|
558 |
|
559 |
#: app/features/events.php:441 app/features/events.php:447
|
560 |
+
#: app/features/events.php:2986 app/features/events.php:3168
|
561 |
+
#: app/features/events.php:3210 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:346
|
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
|
579 |
msgstr "Start Datum"
|
580 |
|
581 |
#: app/features/events.php:519 app/features/events.php:611
|
582 |
+
#: app/features/events.php:1604 app/features/events.php:1646
|
583 |
+
#: app/features/events.php:1813 app/features/events.php:1837
|
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:1611 app/features/events.php:1653
|
590 |
+
#: app/features/events.php:1814 app/features/events.php:1838
|
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:2987 app/features/events.php:3168
|
597 |
+
#: app/features/events.php:3210 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:347
|
601 |
msgid "End Date"
|
602 |
msgstr "Ende Datum"
|
603 |
|
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:1496
|
636 |
+
#: app/features/events.php:1673 app/features/events.php:1688
|
637 |
+
#: app/features/events.php:1855 app/features/events.php:1868
|
638 |
+
#: app/features/events.php:1998 app/features/events.php:2034
|
639 |
+
#: app/features/events.php:2132 app/features/events.php:2147
|
640 |
+
#: app/features/events.php:2177 app/features/events.php:2190
|
641 |
+
#: app/features/fes/form.php:630 app/features/locations.php:299
|
642 |
+
#: app/features/mec/booking.php:241 app/features/mec/booking.php:278
|
643 |
+
#: app/features/mec/booking.php:294 app/features/mec/booking.php:401
|
644 |
+
#: app/features/mec/booking.php:430 app/features/mec/booking.php:478
|
645 |
+
#: app/features/mec/booking.php:488 app/features/mec/booking.php:510
|
646 |
+
#: app/features/mec/booking.php:520 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
|
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:259 app/features/mec/modules.php:292
|
678 |
+
#: app/features/mec/modules.php:309 app/features/mec/modules.php:344
|
679 |
+
#: app/features/mec/modules.php:360 app/features/mec/modules.php:518
|
680 |
+
#: app/features/mec/notifications.php:246
|
681 |
+
#: app/features/mec/notifications.php:303
|
682 |
+
#: app/features/mec/notifications.php:355
|
683 |
+
#: app/features/mec/notifications.php:414
|
684 |
+
#: app/features/mec/notifications.php:482
|
685 |
+
#: app/features/mec/notifications.php:545
|
686 |
+
#: app/features/mec/notifications.php:556
|
687 |
+
#: app/features/mec/notifications.php:618 app/features/mec/settings.php:273
|
688 |
+
#: app/features/mec/settings.php:292 app/features/mec/settings.php:319
|
689 |
+
#: app/features/mec/settings.php:339 app/features/mec/settings.php:360
|
690 |
+
#: app/features/mec/settings.php:380 app/features/mec/settings.php:457
|
691 |
+
#: app/features/mec/settings.php:531 app/features/mec/settings.php:548
|
692 |
+
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
693 |
+
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
694 |
+
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
695 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:952
|
696 |
+
#: app/features/mec/settings.php:965 app/features/mec/settings.php:981
|
697 |
+
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
698 |
+
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
699 |
+
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
700 |
+
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
701 |
+
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
702 |
+
#: app/features/organizers.php:272 app/skins/single.php:617
|
703 |
+
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
704 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
705 |
#: app/skins/single/modern.php:133
|
706 |
msgid "Read More"
|
715 |
msgstr "Wiederholend"
|
716 |
|
717 |
#: app/features/events.php:692 app/features/fes/form.php:338
|
718 |
+
#: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
|
719 |
msgid "Daily"
|
720 |
msgstr "Täglich"
|
721 |
|
732 |
msgstr "Bestimmte Wochentage"
|
733 |
|
734 |
#: app/features/events.php:720 app/features/fes/form.php:342
|
735 |
+
#: app/skins/full_calendar/tpl.php:108
|
736 |
msgid "Weekly"
|
737 |
msgstr "Wöchentlich"
|
738 |
|
739 |
#: app/features/events.php:727 app/features/fes/form.php:343
|
740 |
+
#: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
|
741 |
msgid "Monthly"
|
742 |
msgstr "Monatlich"
|
743 |
|
744 |
#: app/features/events.php:734 app/features/fes/form.php:344
|
745 |
+
#: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
|
746 |
msgid "Yearly"
|
747 |
msgstr "Jährlich"
|
748 |
|
810 |
msgid "Sunday"
|
811 |
msgstr "Sonntag"
|
812 |
|
813 |
+
#: app/features/events.php:786 app/features/events.php:1736
|
814 |
+
#: app/features/events.php:1764 app/features/events.php:1902
|
815 |
#: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
|
816 |
#: app/features/ix/import_g_calendar.php:51
|
817 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
818 |
msgid "Start"
|
819 |
msgstr "Start"
|
820 |
|
821 |
+
#: app/features/events.php:788 app/features/events.php:1740
|
822 |
+
#: app/features/events.php:1768 app/features/events.php:1906
|
823 |
#: app/features/fes/form.php:367
|
824 |
#, fuzzy
|
825 |
#| msgid "Enabled"
|
828 |
|
829 |
#: app/features/events.php:790 app/features/events.php:1132
|
830 |
#: app/features/events.php:1243 app/features/events.php:1348
|
831 |
+
#: app/features/events.php:1554 app/features/events.php:1719
|
832 |
+
#: app/features/events.php:1891 app/features/events.php:1971
|
833 |
+
#: app/features/events.php:2104 app/features/fes/form.php:368
|
834 |
+
#: app/features/fes/form.php:842
|
835 |
msgid "Add"
|
836 |
msgstr "Hinzufügen"
|
837 |
|
909 |
msgid "Exclude certain days"
|
910 |
msgstr "Ausschluss bestimmter Tage"
|
911 |
|
912 |
+
#: app/features/events.php:1130 app/features/events.php:2340
|
913 |
+
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
914 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2320
|
915 |
#: app/modules/booking/steps/tickets.php:22
|
916 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:597
|
917 |
+
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
918 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
919 |
msgid "Date"
|
920 |
msgstr "Datum"
|
926 |
"multiple day occurrences."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: app/features/events.php:1190 app/libraries/render.php:455
|
930 |
msgid "Day 1"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
934 |
+
#: app/skins/single.php:888
|
935 |
msgid "Hourly Schedule"
|
936 |
msgstr "Stundenplan"
|
937 |
|
952 |
|
953 |
#: app/features/events.php:1228 app/features/events.php:1267
|
954 |
#: app/features/events.php:1302 app/features/events.php:1334
|
955 |
+
#: app/features/events.php:1363 app/features/events.php:2119
|
956 |
+
#: app/features/events.php:2166 app/features/events.php:2983
|
957 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
958 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
959 |
+
#: app/features/ix.php:2781 app/features/mec/booking.php:470
|
960 |
+
#: app/features/mec/booking.php:502 app/features/mec/styling.php:270
|
961 |
msgid "Title"
|
962 |
msgstr "Titel"
|
963 |
|
964 |
#: app/features/events.php:1237 app/features/events.php:1274
|
965 |
#: app/features/events.php:1307 app/features/events.php:1342
|
966 |
+
#: app/features/events.php:1368 app/features/events.php:1712
|
967 |
+
#: app/features/events.php:1750 app/features/events.php:1776
|
968 |
+
#: app/features/events.php:1885 app/features/events.php:1912
|
969 |
+
#: app/features/events.php:2011 app/features/events.php:2047
|
970 |
+
#: app/features/events.php:2154 app/features/events.php:2196
|
971 |
+
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
972 |
+
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
973 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2181
|
974 |
+
#: app/libraries/main.php:2211 app/libraries/main.php:2240
|
975 |
+
#: app/libraries/main.php:2270 app/libraries/main.php:2299
|
976 |
+
#: app/libraries/main.php:2328 app/libraries/main.php:2357
|
977 |
+
#: app/libraries/main.php:2386 app/libraries/main.php:2408
|
978 |
+
#: app/libraries/main.php:2439 app/libraries/main.php:2483
|
979 |
+
#: app/libraries/main.php:2527 app/libraries/main.php:2574
|
980 |
+
#: app/libraries/main.php:2613
|
981 |
msgid "Remove"
|
982 |
msgstr "Entfernen"
|
983 |
|
996 |
msgstr "bis zum Beispiel 08:45 Uhr"
|
997 |
|
998 |
#: app/features/events.php:1271 app/features/events.php:1305
|
999 |
+
#: app/features/events.php:1366 app/features/events.php:1660
|
1000 |
+
#: app/features/events.php:1844
|
1001 |
msgid "Description"
|
1002 |
msgstr "Beschreibung"
|
1003 |
|
1004 |
#: app/features/events.php:1277 app/features/events.php:1310
|
1005 |
+
#: app/features/events.php:1371 app/features/fes/form.php:838
|
1006 |
+
#: app/features/mec.php:340 app/features/mec/booking.php:124
|
1007 |
+
#: app/features/mec/gateways.php:89 app/features/mec/ie.php:85
|
1008 |
+
#: app/features/mec/messages.php:89 app/features/mec/modules.php:103
|
1009 |
+
#: app/features/mec/modules.php:258 app/features/mec/notifications.php:88
|
1010 |
+
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
1011 |
+
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
1012 |
+
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
1013 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4503
|
1014 |
+
#: app/modules/speakers/details.php:18
|
1015 |
msgid "Speakers"
|
1016 |
msgstr ""
|
1017 |
|
1022 |
msgstr "Wochentage"
|
1023 |
|
1024 |
#: app/features/events.php:1402 app/features/fes/form.php:683
|
1025 |
+
#: app/features/mec/settings.php:762
|
1026 |
msgid "Event Links"
|
1027 |
msgstr "Veranstaltungslinks"
|
1028 |
|
1029 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1030 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4526
|
1031 |
msgid "Event Link"
|
1032 |
msgstr "Veranstaltungslink"
|
1033 |
|
1055 |
msgstr ""
|
1056 |
|
1057 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1058 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4527
|
1059 |
+
#: app/skins/single.php:616 app/skins/single/default.php:118
|
1060 |
+
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1061 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1062 |
#: app/widgets/single.php:107
|
1063 |
msgid "More Info"
|
1086 |
"Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
|
1087 |
"zur Anmeldung (z.B. bei Webinaren sinnvoll) "
|
1088 |
|
1089 |
+
#: app/features/events.php:1477 app/features/events.php:1492
|
1090 |
msgid "Total booking limits"
|
1091 |
msgstr "Gesamt Verfügbare Plätze"
|
1092 |
|
1093 |
+
#: app/features/events.php:1489 app/features/events.php:1522
|
1094 |
+
#: app/features/events.php:1709 app/features/events.php:1882
|
1095 |
+
#: app/modules/booking/default.php:85 app/modules/booking/steps/tickets.php:40
|
1096 |
#: app/skins/available_spot/tpl.php:140
|
1097 |
msgid "Unlimited"
|
1098 |
msgstr "Unlimitiert"
|
1099 |
|
1100 |
+
#: app/features/events.php:1495
|
|
|
|
|
|
|
|
|
1101 |
msgid ""
|
1102 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1103 |
"limitation number."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: app/features/events.php:1497
|
1107 |
#, fuzzy
|
1108 |
#| msgid "Choose your single event style."
|
1109 |
msgid "Read About A Booking System"
|
1110 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
1111 |
|
1112 |
+
#: app/features/events.php:1505
|
1113 |
+
msgid "100"
|
1114 |
+
msgstr "z.B. 100"
|
1115 |
+
|
1116 |
+
#: app/features/events.php:1510
|
1117 |
+
#, fuzzy
|
1118 |
+
#| msgid "Total booking limits"
|
1119 |
+
msgid "Total user booking limits"
|
1120 |
+
msgstr "Gesamt Verfügbare Plätze"
|
1121 |
+
|
1122 |
+
#: app/features/events.php:1525
|
1123 |
+
msgid "12"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: app/features/events.php:1546 app/libraries/book.php:60
|
1127 |
+
#: app/libraries/main.php:4531 app/modules/booking/steps/tickets.php:40
|
1128 |
msgid "Tickets"
|
1129 |
msgstr "Tickets"
|
1130 |
|
1131 |
+
#: app/features/events.php:1549
|
1132 |
msgid ""
|
1133 |
"You're translating an event so MEC will use the original event for tickets "
|
1134 |
"and booking. You can only translate the ticket name and description. Please "
|
1135 |
"define exact tickets that you defined in the original event here."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: app/features/events.php:1568 app/features/events.php:1790
|
1139 |
msgid "Ticket Name"
|
1140 |
msgstr "Ticket Name"
|
1141 |
|
1142 |
+
#: app/features/events.php:1573 app/features/events.php:1794
|
1143 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1144 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1145 |
msgid "Start Time"
|
1146 |
msgstr "Uhrzeit des Beginns"
|
1147 |
|
1148 |
+
#: app/features/events.php:1615 app/features/events.php:1818
|
1149 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1150 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1151 |
msgid "End Time"
|
1152 |
msgstr "Uhrzeit Ende"
|
1153 |
|
1154 |
+
#: app/features/events.php:1666 app/features/events.php:1670
|
1155 |
+
#: app/features/events.php:1744 app/features/events.php:1771
|
1156 |
+
#: app/features/events.php:1849 app/features/events.php:1852
|
1157 |
+
#: app/features/events.php:1908 app/features/events.php:2125
|
1158 |
+
#: app/features/events.php:2129 app/features/events.php:2171
|
1159 |
+
#: app/features/events.php:2174 app/features/mec/booking.php:474
|
1160 |
+
#: app/features/mec/booking.php:477 app/features/mec/booking.php:506
|
1161 |
+
#: app/features/mec/booking.php:509
|
1162 |
msgid "Price"
|
1163 |
msgstr "Preis"
|
1164 |
|
1165 |
+
#: app/features/events.php:1671 app/features/events.php:1853
|
1166 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1167 |
msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
|
1168 |
|
1169 |
+
#: app/features/events.php:1680 app/features/events.php:1685
|
1170 |
+
#: app/features/events.php:1862 app/features/events.php:1865
|
1171 |
msgid "Price Label"
|
1172 |
msgstr "Preisschild"
|
1173 |
|
1174 |
+
#: app/features/events.php:1686 app/features/events.php:1866
|
1175 |
msgid "For showing on website. e.g. $15"
|
1176 |
msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
|
1177 |
|
1178 |
+
#: app/features/events.php:1696 app/features/events.php:1876
|
1179 |
msgid "Available Tickets"
|
1180 |
msgstr "Verfügbare Tickets: %s "
|
1181 |
|
1182 |
+
#: app/features/events.php:1717 app/features/events.php:1889
|
1183 |
#, fuzzy
|
1184 |
#| msgid "Price Label"
|
1185 |
msgid "Price per Date"
|
1186 |
msgstr "Preisschild"
|
1187 |
|
1188 |
+
#: app/features/events.php:1748 app/features/events.php:1774
|
1189 |
+
#: app/features/events.php:1910 app/features/labels.php:60
|
1190 |
#: app/features/mec/meta_boxes/display_options.php:799
|
1191 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1192 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1193 |
+
#: app/features/mec/meta_boxes/search_form.php:190
|
1194 |
+
#: app/features/mec/meta_boxes/search_form.php:251
|
1195 |
+
#: app/features/mec/meta_boxes/search_form.php:312
|
1196 |
+
#: app/features/mec/meta_boxes/search_form.php:373
|
1197 |
+
#: app/features/mec/meta_boxes/search_form.php:434
|
1198 |
+
#: app/features/mec/meta_boxes/search_form.php:488
|
1199 |
+
#: app/features/mec/meta_boxes/search_form.php:549
|
1200 |
+
#: app/features/mec/meta_boxes/search_form.php:610
|
1201 |
+
#: app/features/mec/settings.php:922 app/features/mec/single.php:408
|
1202 |
+
#: app/libraries/skins.php:943
|
1203 |
msgid "Label"
|
1204 |
msgstr "Label"
|
1205 |
|
1206 |
+
#: app/features/events.php:1948
|
1207 |
msgid "Fees"
|
1208 |
msgstr "Gebühren"
|
1209 |
|
1210 |
+
#: app/features/events.php:1960 app/features/events.php:2092
|
1211 |
+
#: app/features/events.php:2280
|
1212 |
msgid "Inherit from global options"
|
1213 |
msgstr "Aus den globalen Einstellungen übernehmen"
|
1214 |
|
1215 |
+
#: app/features/events.php:1985 app/features/events.php:2023
|
1216 |
+
#: app/features/mec/booking.php:393 app/features/mec/booking.php:422
|
1217 |
msgid "Fee Title"
|
1218 |
msgstr "Gebühren Name"
|
1219 |
|
1220 |
+
#: app/features/events.php:1991 app/features/events.php:1995
|
1221 |
+
#: app/features/events.php:2028 app/features/events.php:2031
|
1222 |
+
#: app/features/mec/booking.php:397 app/features/mec/booking.php:400
|
1223 |
+
#: app/features/mec/booking.php:426 app/features/mec/booking.php:429
|
1224 |
msgid "Amount"
|
1225 |
msgstr "Betrag"
|
1226 |
|
1227 |
+
#: app/features/events.php:1996 app/features/events.php:2032
|
1228 |
+
#: app/features/mec/booking.php:401 app/features/mec/booking.php:430
|
1229 |
msgid ""
|
1230 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1231 |
"otherwise considered as percentage"
|
1233 |
"Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
|
1234 |
"sonst als Prozentsatz"
|
1235 |
|
1236 |
+
#: app/features/events.php:2005 app/features/events.php:2041
|
1237 |
+
#: app/features/mec/booking.php:408 app/features/mec/booking.php:437
|
1238 |
msgid "Percent"
|
1239 |
msgstr "Prozent"
|
1240 |
|
1241 |
+
#: app/features/events.php:2006 app/features/events.php:2042
|
1242 |
+
#: app/features/mec/booking.php:409 app/features/mec/booking.php:438
|
1243 |
msgid "Amount (Per Ticket)"
|
1244 |
msgstr "Betrag (pro Ticket)"
|
1245 |
|
1246 |
+
#: app/features/events.php:2007 app/features/events.php:2043
|
1247 |
+
#: app/features/mec/booking.php:410 app/features/mec/booking.php:439
|
1248 |
msgid "Amount (Per Booking)"
|
1249 |
msgstr "Betrag (pro Buchung)"
|
1250 |
|
1251 |
+
#: app/features/events.php:2080 app/features/mec/settings.php:840
|
1252 |
msgid "Ticket Variations / Options"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: app/features/events.php:2130 app/features/events.php:2175
|
1256 |
+
#: app/features/mec/booking.php:478 app/features/mec/booking.php:510
|
1257 |
#, fuzzy
|
1258 |
#| msgid "Option"
|
1259 |
msgid "Option Price"
|
1260 |
msgstr "Option"
|
1261 |
|
1262 |
+
#: app/features/events.php:2140 app/features/events.php:2144
|
1263 |
+
#: app/features/events.php:2184 app/features/events.php:2187
|
1264 |
+
#: app/features/mec/booking.php:484 app/features/mec/booking.php:487
|
1265 |
+
#: app/features/mec/booking.php:516 app/features/mec/booking.php:519
|
1266 |
#, fuzzy
|
1267 |
#| msgid "Amount (Per Ticket)"
|
1268 |
msgid "Maximum Per Ticket"
|
1269 |
msgstr "Betrag (pro Ticket)"
|
1270 |
|
1271 |
+
#: app/features/events.php:2145 app/features/events.php:2188
|
1272 |
+
#: app/features/mec/booking.php:488 app/features/mec/booking.php:520
|
1273 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1277 |
+
#: app/libraries/main.php:2203
|
1278 |
#, fuzzy
|
1279 |
#| msgid "Name"
|
1280 |
msgid "MEC Name"
|
1281 |
msgstr "Name"
|
1282 |
|
1283 |
+
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1284 |
+
#: app/libraries/main.php:2232
|
1285 |
#, fuzzy
|
1286 |
#| msgid "Email"
|
1287 |
msgid "MEC Email"
|
1288 |
msgstr "Email"
|
1289 |
|
1290 |
+
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1291 |
+
#: app/libraries/main.php:2173
|
1292 |
msgid "Text"
|
1293 |
msgstr "Text"
|
1294 |
|
1295 |
+
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1296 |
+
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1297 |
+
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1298 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2349
|
1299 |
msgid "Tel"
|
1300 |
msgstr "Tel"
|
1301 |
|
1302 |
+
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1303 |
+
#: app/libraries/main.php:2291
|
1304 |
msgid "File"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1308 |
+
#: app/libraries/main.php:2378
|
1309 |
msgid "Textarea"
|
1310 |
msgstr "Textbereich"
|
1311 |
|
1312 |
+
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1313 |
+
#: app/libraries/main.php:2431
|
1314 |
msgid "Checkboxes"
|
1315 |
msgstr "Checkboxes"
|
1316 |
|
1317 |
+
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1318 |
+
#: app/libraries/main.php:2475
|
1319 |
msgid "Radio Buttons"
|
1320 |
msgstr "Radio Buttons"
|
1321 |
|
1322 |
+
#: app/features/events.php:2349 app/features/mec/meta_boxes/search_form.php:34
|
1323 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1324 |
#: app/features/mec/meta_boxes/search_form.php:48
|
1325 |
#: app/features/mec/meta_boxes/search_form.php:55
|
1333 |
#: app/features/mec/meta_boxes/search_form.php:124
|
1334 |
#: app/features/mec/meta_boxes/search_form.php:131
|
1335 |
#: app/features/mec/meta_boxes/search_form.php:138
|
1336 |
+
#: app/features/mec/meta_boxes/search_form.php:158
|
1337 |
+
#: app/features/mec/meta_boxes/search_form.php:165
|
1338 |
+
#: app/features/mec/meta_boxes/search_form.php:172
|
1339 |
+
#: app/features/mec/meta_boxes/search_form.php:179
|
1340 |
+
#: app/features/mec/meta_boxes/search_form.php:186
|
1341 |
+
#: app/features/mec/meta_boxes/search_form.php:193
|
1342 |
+
#: app/features/mec/meta_boxes/search_form.php:200
|
1343 |
+
#: app/features/mec/meta_boxes/search_form.php:219
|
1344 |
+
#: app/features/mec/meta_boxes/search_form.php:226
|
1345 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
1346 |
+
#: app/features/mec/meta_boxes/search_form.php:240
|
1347 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
1348 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
1349 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
1350 |
+
#: app/features/mec/meta_boxes/search_form.php:280
|
1351 |
+
#: app/features/mec/meta_boxes/search_form.php:287
|
1352 |
+
#: app/features/mec/meta_boxes/search_form.php:294
|
1353 |
+
#: app/features/mec/meta_boxes/search_form.php:301
|
1354 |
+
#: app/features/mec/meta_boxes/search_form.php:308
|
1355 |
+
#: app/features/mec/meta_boxes/search_form.php:315
|
1356 |
+
#: app/features/mec/meta_boxes/search_form.php:322
|
1357 |
+
#: app/features/mec/meta_boxes/search_form.php:341
|
1358 |
+
#: app/features/mec/meta_boxes/search_form.php:348
|
1359 |
+
#: app/features/mec/meta_boxes/search_form.php:355
|
1360 |
+
#: app/features/mec/meta_boxes/search_form.php:362
|
1361 |
+
#: app/features/mec/meta_boxes/search_form.php:369
|
1362 |
+
#: app/features/mec/meta_boxes/search_form.php:376
|
1363 |
+
#: app/features/mec/meta_boxes/search_form.php:383
|
1364 |
+
#: app/features/mec/meta_boxes/search_form.php:402
|
1365 |
+
#: app/features/mec/meta_boxes/search_form.php:409
|
1366 |
+
#: app/features/mec/meta_boxes/search_form.php:416
|
1367 |
+
#: app/features/mec/meta_boxes/search_form.php:423
|
1368 |
+
#: app/features/mec/meta_boxes/search_form.php:430
|
1369 |
+
#: app/features/mec/meta_boxes/search_form.php:437
|
1370 |
+
#: app/features/mec/meta_boxes/search_form.php:456
|
1371 |
+
#: app/features/mec/meta_boxes/search_form.php:463
|
1372 |
+
#: app/features/mec/meta_boxes/search_form.php:470
|
1373 |
+
#: app/features/mec/meta_boxes/search_form.php:477
|
1374 |
+
#: app/features/mec/meta_boxes/search_form.php:484
|
1375 |
+
#: app/features/mec/meta_boxes/search_form.php:491
|
1376 |
+
#: app/features/mec/meta_boxes/search_form.php:498
|
1377 |
+
#: app/features/mec/meta_boxes/search_form.php:517
|
1378 |
+
#: app/features/mec/meta_boxes/search_form.php:524
|
1379 |
+
#: app/features/mec/meta_boxes/search_form.php:531
|
1380 |
+
#: app/features/mec/meta_boxes/search_form.php:538
|
1381 |
+
#: app/features/mec/meta_boxes/search_form.php:545
|
1382 |
+
#: app/features/mec/meta_boxes/search_form.php:552
|
1383 |
+
#: app/features/mec/meta_boxes/search_form.php:559
|
1384 |
+
#: app/features/mec/meta_boxes/search_form.php:578
|
1385 |
+
#: app/features/mec/meta_boxes/search_form.php:585
|
1386 |
+
#: app/features/mec/meta_boxes/search_form.php:592
|
1387 |
+
#: app/features/mec/meta_boxes/search_form.php:599
|
1388 |
+
#: app/features/mec/meta_boxes/search_form.php:606
|
1389 |
+
#: app/features/mec/meta_boxes/search_form.php:613
|
1390 |
+
#: app/features/mec/meta_boxes/search_form.php:620
|
1391 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2519
|
1392 |
msgid "Dropdown"
|
1393 |
msgstr "Dropdown"
|
1394 |
|
1395 |
+
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1396 |
+
#: app/libraries/main.php:2566
|
1397 |
msgid "Agreement"
|
1398 |
msgstr "Zustimmung"
|
1399 |
|
1400 |
+
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1401 |
+
#: app/libraries/main.php:2407
|
1402 |
msgid "Paragraph"
|
1403 |
msgstr "Absatz"
|
1404 |
|
1405 |
+
#: app/features/events.php:2921 app/features/events.php:2938
|
1406 |
+
#: app/features/events.php:2955
|
1407 |
#, php-format
|
1408 |
msgid "Show all %s"
|
1409 |
msgstr "Zeige alle %s"
|
1410 |
|
1411 |
+
#: app/features/events.php:2921
|
1412 |
msgid "labels"
|
1413 |
msgstr "Labels + Eventstatus"
|
1414 |
|
1415 |
+
#: app/features/events.php:2938
|
1416 |
msgid "locations"
|
1417 |
msgstr "Orte"
|
1418 |
|
1419 |
+
#: app/features/events.php:2955
|
1420 |
msgid "organizers"
|
1421 |
msgstr "Veranstalter"
|
1422 |
|
1423 |
+
#: app/features/events.php:2984 app/features/events.php:3168
|
1424 |
+
#: app/features/events.php:3210 app/features/ix.php:2740
|
1425 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1426 |
+
#: app/features/locations.php:230 app/features/locations.php:287
|
1427 |
+
#: app/features/locations.php:289 app/features/locations.php:298
|
1428 |
#: app/features/mec/meta_boxes/display_options.php:800
|
1429 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1430 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1431 |
+
#: app/features/mec/meta_boxes/search_form.php:162
|
1432 |
+
#: app/features/mec/meta_boxes/search_form.php:223
|
1433 |
+
#: app/features/mec/meta_boxes/search_form.php:284
|
1434 |
+
#: app/features/mec/meta_boxes/search_form.php:345
|
1435 |
+
#: app/features/mec/meta_boxes/search_form.php:406
|
1436 |
+
#: app/features/mec/meta_boxes/search_form.php:460
|
1437 |
+
#: app/features/mec/meta_boxes/search_form.php:521
|
1438 |
+
#: app/features/mec/meta_boxes/search_form.php:582
|
1439 |
+
#: app/features/mec/settings.php:896 app/features/mec/single.php:398
|
1440 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4500
|
1441 |
+
#: app/libraries/skins.php:839 app/skins/single.php:446
|
1442 |
+
#: app/skins/single.php:865 app/skins/single/default.php:154
|
1443 |
+
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1444 |
+
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1445 |
msgid "Location"
|
1446 |
msgstr "Ort"
|
1447 |
|
1448 |
+
#: app/features/events.php:2985 app/features/events.php:3168
|
1449 |
+
#: app/features/events.php:3210 app/features/ix.php:2740
|
1450 |
#: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
|
1451 |
#: app/features/mec/meta_boxes/search_form.php:45
|
1452 |
#: app/features/mec/meta_boxes/search_form.php:107
|
1453 |
+
#: app/features/mec/meta_boxes/search_form.php:169
|
1454 |
+
#: app/features/mec/meta_boxes/search_form.php:230
|
1455 |
+
#: app/features/mec/meta_boxes/search_form.php:291
|
1456 |
+
#: app/features/mec/meta_boxes/search_form.php:352
|
1457 |
+
#: app/features/mec/meta_boxes/search_form.php:413
|
1458 |
+
#: app/features/mec/meta_boxes/search_form.php:467
|
1459 |
+
#: app/features/mec/meta_boxes/search_form.php:528
|
1460 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
1461 |
+
#: app/features/mec/settings.php:902 app/features/mec/single.php:394
|
1462 |
+
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1463 |
+
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1464 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4502
|
1465 |
+
#: app/libraries/skins.php:865 app/skins/single.php:753
|
1466 |
+
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1467 |
+
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1468 |
+
#: app/skins/single/modern.php:31
|
1469 |
msgid "Organizer"
|
1470 |
msgstr "Veranstalter"
|
1471 |
|
1472 |
+
#: app/features/events.php:2989
|
1473 |
msgid "Repeat"
|
1474 |
msgstr "Wiederholen"
|
1475 |
|
1476 |
+
#: app/features/events.php:2990
|
1477 |
msgid "Author"
|
1478 |
msgstr "Autor"
|
1479 |
|
1480 |
+
#: app/features/events.php:3103 app/features/events.php:3104
|
1481 |
msgid "iCal Export"
|
1482 |
msgstr "ical Export"
|
1483 |
|
1484 |
+
#: app/features/events.php:3106 app/features/events.php:3107
|
1485 |
msgid "CSV Export"
|
1486 |
msgstr "CSV Export"
|
1487 |
|
1488 |
+
#: app/features/events.php:3109 app/features/events.php:3110
|
1489 |
msgid "MS Excel Export"
|
1490 |
msgstr "MS Excel Export"
|
1491 |
|
1492 |
+
#: app/features/events.php:3112 app/features/events.php:3113
|
1493 |
msgid "XML Export"
|
1494 |
msgstr "XML Export"
|
1495 |
|
1496 |
+
#: app/features/events.php:3115 app/features/events.php:3116
|
1497 |
msgid "JSON Export"
|
1498 |
msgstr "JSON Export"
|
1499 |
|
1500 |
+
#: app/features/events.php:3118 app/features/events.php:3119
|
1501 |
msgid "Duplicate"
|
1502 |
msgstr "Kopie"
|
1503 |
|
1504 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1505 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1506 |
+
#: app/features/labels.php:177 app/features/locations.php:229
|
1507 |
+
#: app/features/organizers.php:203 app/features/speakers.php:246
|
1508 |
msgid "ID"
|
1509 |
msgstr "ID"
|
1510 |
|
1511 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1512 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1513 |
msgid "Link"
|
1514 |
msgstr "Link"
|
1515 |
|
1516 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1517 |
#, php-format
|
1518 |
msgid "%s Tel"
|
1519 |
msgstr "%s Tel"
|
1520 |
|
1521 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1522 |
#, php-format
|
1523 |
msgid "%s Email"
|
1524 |
msgstr "%s Email"
|
1598 |
msgid "eg. yourname@gmail.com"
|
1599 |
msgstr "z.B. IhrName@ihrewebseite.de"
|
1600 |
|
1601 |
+
#: app/features/fes/form.php:669 app/features/organizers.php:280
|
1602 |
msgid "eg. John Smith"
|
1603 |
msgstr "z.B. Max Mustermann"
|
1604 |
|
1611 |
"dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
|
1612 |
"einschließlich http(s)://"
|
1613 |
|
1614 |
+
#: app/features/fes/form.php:723 app/features/mec/settings.php:774
|
1615 |
msgid "Featured Image"
|
1616 |
msgstr "Ausgewähltes Bild"
|
1617 |
|
1620 |
msgstr "Bild entfernen"
|
1621 |
|
1622 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1623 |
+
#: app/features/labels.php:221 app/features/mec.php:333
|
1624 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4497
|
1625 |
+
#: app/skins/single.php:645 app/skins/single/default.php:133
|
1626 |
+
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1627 |
#: app/skins/single/modern.php:214
|
1628 |
msgid "Labels"
|
1629 |
msgstr "Labels"
|
1638 |
msgstr ""
|
1639 |
"Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
|
1640 |
|
1641 |
+
#: app/features/fes/form.php:840
|
1642 |
+
#, fuzzy
|
1643 |
+
#| msgid "No Search Options"
|
1644 |
+
msgid "Speakers Names"
|
1645 |
+
msgstr "Keine Suchoptionen"
|
1646 |
+
|
1647 |
+
#: app/features/fes/form.php:841
|
1648 |
+
msgid "Separate names with commas Similar Justin, Cris"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: app/features/fes/form.php:859
|
1652 |
msgid "Submit"
|
1653 |
msgstr "Buchung abschließen"
|
1654 |
|
1673 |
msgid "MEC - Import / Export"
|
1674 |
msgstr "MEC - Import / Export"
|
1675 |
|
1676 |
+
#: app/features/ix.php:107 app/features/mec/booking.php:205
|
1677 |
+
#: app/features/mec/gateways.php:170 app/features/mec/ie.php:166
|
1678 |
+
#: app/features/mec/messages.php:170 app/features/mec/modules.php:232
|
1679 |
+
#: app/features/mec/notifications.php:206 app/features/mec/regform.php:205
|
1680 |
+
#: app/features/mec/settings.php:242 app/features/mec/single.php:203
|
1681 |
+
#: app/features/mec/styles.php:170 app/features/mec/styling.php:192
|
1682 |
#: app/features/mec/support.php:73
|
1683 |
msgid "Import / Export"
|
1684 |
msgstr "Import / Export"
|
1821 |
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
1822 |
#: app/features/ix/import_g_calendar.php:15
|
1823 |
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
1824 |
+
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:190
|
1825 |
msgid "Export"
|
1826 |
msgstr "Export"
|
1827 |
|
1832 |
#: app/features/ix/import_g_calendar.php:103
|
1833 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
1834 |
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
1835 |
+
#: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:179
|
1836 |
msgid "Import"
|
1837 |
msgstr "Import"
|
1838 |
|
1855 |
"Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
|
1856 |
"exportieren."
|
1857 |
|
1858 |
+
#: app/features/ix/export.php:25 app/features/mec/modules.php:384
|
1859 |
msgid "iCal"
|
1860 |
msgstr "iCal"
|
1861 |
|
1958 |
#: app/features/ix/export_g_calendar.php:72
|
1959 |
#: app/features/ix/export_g_calendar.php:147
|
1960 |
#: app/features/ix/export_g_calendar.php:164
|
1961 |
+
#: app/features/mec/notifications.php:284
|
1962 |
+
#: app/features/mec/notifications.php:336
|
1963 |
+
#: app/features/mec/notifications.php:389
|
1964 |
+
#: app/features/mec/notifications.php:590
|
1965 |
msgid "Add to Google Calendar"
|
1966 |
msgstr "Zum Google Kalender hinzufügen"
|
1967 |
|
1968 |
+
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1969 |
+
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1970 |
+
#: app/features/mec/settings.php:1088 app/features/mec/single.php:480
|
1971 |
msgid "Checking ..."
|
1972 |
msgstr "Überprüfung"
|
1973 |
|
2011 |
msgid "ICS Feed"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: app/features/ix/import.php:46 app/features/mec/booking.php:224
|
2015 |
+
#: app/features/mec/booking.php:359 app/features/mec/booking.php:377
|
2016 |
+
#: app/features/mec/booking.php:454 app/features/mec/modules.php:276
|
2017 |
+
#: app/features/mec/modules.php:417 app/features/mec/modules.php:434
|
2018 |
#, php-format
|
2019 |
msgid "%s is required to use this feature."
|
2020 |
msgstr ""
|
2021 |
|
2022 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
2023 |
+
#: app/features/mec/booking.php:224 app/features/mec/booking.php:359
|
2024 |
+
#: app/features/mec/booking.php:377 app/features/mec/booking.php:454
|
2025 |
#: app/features/mec/meta_boxes/display_options.php:296
|
2026 |
#: app/features/mec/meta_boxes/display_options.php:423
|
2027 |
#: app/features/mec/meta_boxes/display_options.php:474
|
2029 |
#: app/features/mec/meta_boxes/display_options.php:688
|
2030 |
#: app/features/mec/meta_boxes/display_options.php:761
|
2031 |
#: app/features/mec/meta_boxes/display_options.php:961
|
2032 |
+
#: app/features/mec/modules.php:276 app/features/mec/modules.php:417
|
2033 |
+
#: app/features/mec/modules.php:434
|
2034 |
msgid "Pro version of Modern Events Calendar"
|
2035 |
msgstr ""
|
2036 |
|
2223 |
|
2224 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2225 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2226 |
+
#: app/features/mec/notifications.php:533
|
2227 |
msgid "Important Note"
|
2228 |
msgstr "Important Note"
|
2229 |
|
2343 |
"Wir empfehlen Ihnen, die importierten Einträge nacheinander auf der MEC Edit "
|
2344 |
"Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
|
2345 |
|
2346 |
+
#: app/features/labels.php:79 app/features/locations.php:77
|
2347 |
+
#: app/features/organizers.php:77 app/features/speakers.php:78
|
2348 |
+
#, php-format
|
2349 |
+
msgid "← Back to %s"
|
2350 |
+
msgstr ""
|
2351 |
+
|
2352 |
+
#: app/features/labels.php:103 app/features/labels.php:134
|
2353 |
+
#: app/features/labels.php:179
|
2354 |
msgid "Color"
|
2355 |
msgstr "Farbe"
|
2356 |
|
2357 |
+
#: app/features/labels.php:107 app/features/labels.php:136
|
2358 |
msgid "Select label color"
|
2359 |
msgstr "Wähle Label Farbe"
|
2360 |
|
2361 |
+
#: app/features/labels.php:112 app/features/labels.php:139
|
2362 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2363 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2364 |
#: app/features/mec/meta_boxes/display_options.php:301
|
2372 |
msgid "Style"
|
2373 |
msgstr "Style"
|
2374 |
|
2375 |
+
#: app/features/labels.php:116 app/features/labels.php:141
|
2376 |
msgid "Normal"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: app/features/labels.php:117 app/features/labels.php:142
|
2380 |
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
2381 |
#: app/skins/carousel/render.php:44 app/skins/countdown/tpl.php:24
|
2382 |
+
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:48
|
2383 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2384 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
|
2385 |
+
#: app/skins/monthly_view/calendar_clean.php:107
|
2386 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2387 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:136
|
2388 |
+
#: app/skins/weekly_view/render.php:56 app/skins/yearly_view/render.php:48
|
2389 |
#, fuzzy
|
2390 |
#| msgid "Featured Image"
|
2391 |
msgid "Featured"
|
2392 |
msgstr "Ausgewähltes Bild"
|
2393 |
|
2394 |
+
#: app/features/labels.php:118 app/features/labels.php:143
|
2395 |
+
#: app/libraries/main.php:4743 app/skins/agenda/render.php:41
|
2396 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2397 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2398 |
+
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2399 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2400 |
+
#: app/skins/monthly_view/calendar.php:111
|
2401 |
+
#: app/skins/monthly_view/calendar_clean.php:111
|
2402 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2403 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:137
|
2404 |
+
#: app/skins/weekly_view/render.php:60 app/skins/yearly_view/render.php:52
|
2405 |
msgid "Canceled"
|
2406 |
msgstr "Abgesagt"
|
2407 |
|
2408 |
+
#: app/features/labels.php:120 app/features/labels.php:145
|
2409 |
msgid "You can show featured and canceled events by a different style!"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: app/features/labels.php:180 app/features/locations.php:232
|
2413 |
+
#: app/features/organizers.php:206 app/features/speakers.php:250
|
2414 |
#: app/modules/booking/steps/tickets.php:38
|
2415 |
msgid "Count"
|
2416 |
msgstr "Zähler"
|
2417 |
|
2418 |
+
#: app/features/labels.php:181 app/features/locations.php:233
|
2419 |
+
#: app/features/organizers.php:207
|
2420 |
msgid "Slug"
|
2421 |
msgstr "Slug"
|
2422 |
|
2423 |
+
#: app/features/labels.php:221 app/features/locations.php:287
|
2424 |
#, php-format
|
2425 |
msgid "Event %s"
|
2426 |
msgstr "Event %s"
|
2427 |
|
2428 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2429 |
+
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2430 |
+
#: app/libraries/main.php:4499
|
2431 |
msgid "Locations"
|
2432 |
msgstr "Orte"
|
2433 |
|
2434 |
+
#: app/features/locations.php:105 app/features/locations.php:159
|
2435 |
+
#: app/features/locations.php:231
|
2436 |
msgid "Address"
|
2437 |
msgstr "Adresse"
|
2438 |
|
2439 |
+
#: app/features/locations.php:108 app/features/locations.php:160
|
2440 |
msgid "Enter the location address"
|
2441 |
msgstr "Geben Sie die Veranstaltungsanschrift ein"
|
2442 |
|
2443 |
+
#: app/features/locations.php:122 app/features/locations.php:172
|
2444 |
+
#: app/features/locations.php:325
|
2445 |
msgid "Latitude"
|
2446 |
msgstr "Breitengrad z.B. 49.0069646 "
|
2447 |
|
2448 |
+
#: app/features/locations.php:125 app/features/locations.php:173
|
2449 |
msgid "Geo latitude (Optional)"
|
2450 |
msgstr "Geologischer Breitengrad (Optional)"
|
2451 |
|
2452 |
+
#: app/features/locations.php:130 app/features/locations.php:176
|
2453 |
+
#: app/features/locations.php:326
|
2454 |
msgid "Longitude"
|
2455 |
msgstr "Längengrad z.B. 8.4118636 "
|
2456 |
|
2457 |
+
#: app/features/locations.php:133 app/features/locations.php:177
|
2458 |
msgid "Geo longitude (Optional)"
|
2459 |
msgstr "Geologischer Längengrad (Optional)"
|
2460 |
|
2461 |
+
#: app/features/locations.php:138 app/features/locations.php:180
|
2462 |
+
#: app/features/organizers.php:128 app/features/organizers.php:161
|
2463 |
+
#: app/features/speakers.php:156 app/features/speakers.php:200
|
2464 |
msgid "Thumbnail"
|
2465 |
msgstr "Miniaturansicht"
|
2466 |
|
2467 |
+
#: app/features/locations.php:143 app/features/locations.php:183
|
2468 |
+
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2469 |
+
#: app/features/speakers.php:161 app/features/speakers.php:203
|
2470 |
msgid "Upload/Add image"
|
2471 |
msgstr "Bild hochladen/hinzufügen"
|
2472 |
|
2473 |
+
#: app/features/locations.php:144 app/features/locations.php:184
|
2474 |
+
#: app/features/locations.php:340 app/features/locations.php:347
|
2475 |
+
#: app/features/organizers.php:134 app/features/organizers.php:165
|
2476 |
+
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2477 |
+
#: app/features/speakers.php:162 app/features/speakers.php:204
|
2478 |
msgid "Remove image"
|
2479 |
msgstr "Bild entfernen"
|
2480 |
|
2481 |
+
#: app/features/locations.php:290
|
2482 |
msgid "Hide location"
|
2483 |
msgstr "Ort verbergen"
|
2484 |
|
2485 |
+
#: app/features/locations.php:291
|
2486 |
msgid "Insert a new location"
|
2487 |
msgstr "Neuen Ort hinzufügen"
|
2488 |
|
2489 |
+
#: app/features/locations.php:299
|
2490 |
msgid "Choose one of saved locations or insert new one below."
|
2491 |
msgstr ""
|
2492 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
2493 |
|
2494 |
+
#: app/features/locations.php:306
|
2495 |
msgid "Location Name"
|
2496 |
msgstr "Name Veranstaltungsort"
|
2497 |
|
2498 |
+
#: app/features/locations.php:307
|
2499 |
msgid "eg. City Hall"
|
2500 |
msgstr ""
|
2501 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
2502 |
"Westfalenhalle"
|
2503 |
|
2504 |
+
#: app/features/locations.php:310 app/features/mec/settings.php:804
|
2505 |
#: app/widgets/single.php:115
|
2506 |
msgid "Event Location"
|
2507 |
msgstr "Veranstaltungsort"
|
2508 |
|
2509 |
+
#: app/features/locations.php:311
|
2510 |
msgid "eg. City hall, Manhattan, New York"
|
2511 |
msgstr ""
|
2512 |
"z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
|
2513 |
"Ring 1, 76297 Stutensee"
|
2514 |
|
2515 |
+
#: app/features/locations.php:329
|
2516 |
#, fuzzy
|
2517 |
#| msgid "Longitude"
|
2518 |
msgid "Latitude/Longitude"
|
2519 |
msgstr "Längengrad z.B. 8.4118636 "
|
2520 |
|
2521 |
+
#: app/features/locations.php:330
|
2522 |
msgid ""
|
2523 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2524 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2527 |
"the location on the map to find lat long coordinates."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: app/features/locations.php:330
|
2531 |
msgid "Get Latitude and Longitude"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: app/features/locations.php:339 app/features/organizers.php:298
|
2535 |
msgid "Choose image"
|
2536 |
msgstr "Bild wählen"
|
2537 |
|
2538 |
+
#: app/features/locations.php:353
|
2539 |
msgid "Don't show map in single event page"
|
2540 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2541 |
|
2542 |
+
#: app/features/locations.php:356 app/libraries/main.php:4533
|
2543 |
#, fuzzy
|
2544 |
#| msgid "Locations"
|
2545 |
msgid "Other Locations"
|
2546 |
msgstr "Orte"
|
2547 |
|
2548 |
+
#: app/features/locations.php:358
|
2549 |
#, fuzzy
|
2550 |
#| msgid ""
|
2551 |
#| "You can select extra organizers in addition to main organizer if you like."
|
2594 |
msgid "Support"
|
2595 |
msgstr "Support"
|
2596 |
|
2597 |
+
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2598 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2599 |
+
#: app/libraries/main.php:4501
|
2600 |
msgid "Organizers"
|
2601 |
msgstr "Veranstalter"
|
2602 |
|
2603 |
#: app/features/mec.php:343 app/features/mec.php:363
|
2604 |
+
#: app/features/mec/dashboard.php:209
|
2605 |
msgid "Shortcodes"
|
2606 |
msgstr "Shortcodes"
|
2607 |
|
2701 |
"your host provider in this regard."
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: app/features/mec/booking.php:24 app/features/mec/booking.php:537
|
2705 |
+
#: app/features/mec/booking.php:547 app/features/mec/booking.php:614
|
2706 |
+
#: app/features/mec/booking.php:628 app/features/mec/gateways.php:11
|
2707 |
+
#: app/features/mec/gateways.php:212 app/features/mec/gateways.php:221
|
2708 |
+
#: app/features/mec/gateways.php:262 app/features/mec/gateways.php:272
|
2709 |
+
#: app/features/mec/messages.php:11 app/features/mec/messages.php:204
|
2710 |
+
#: app/features/mec/messages.php:213 app/features/mec/messages.php:247
|
2711 |
+
#: app/features/mec/messages.php:256 app/features/mec/modules.php:22
|
2712 |
+
#: app/features/mec/modules.php:563 app/features/mec/modules.php:573
|
2713 |
+
#: app/features/mec/modules.php:640 app/features/mec/modules.php:654
|
2714 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:646
|
2715 |
+
#: app/features/mec/notifications.php:658
|
2716 |
+
#: app/features/mec/notifications.php:754
|
2717 |
+
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2718 |
+
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2719 |
+
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2720 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1012
|
2721 |
+
#: app/features/mec/settings.php:1022 app/features/mec/settings.php:1105
|
2722 |
+
#: app/features/mec/settings.php:1119 app/features/mec/single.php:14
|
2723 |
+
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2724 |
+
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2725 |
+
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2726 |
+
#: app/features/mec/styles.php:199 app/features/mec/styles.php:236
|
2727 |
+
#: app/features/mec/styles.php:245 app/features/mec/styling.php:33
|
2728 |
+
#: app/features/mec/styling.php:397 app/features/mec/styling.php:406
|
2729 |
+
#: app/features/mec/styling.php:469 app/features/mec/styling.php:478
|
2730 |
msgid "Save Changes"
|
2731 |
msgstr "Änderungen sichern"
|
2732 |
|
2734 |
#: app/features/mec/ie.php:25 app/features/mec/messages.php:29
|
2735 |
#: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
|
2736 |
#: app/features/mec/regform.php:66 app/features/mec/settings.php:57
|
2737 |
+
#: app/features/mec/settings.php:371 app/features/mec/single.php:28
|
2738 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2739 |
msgid "Archive Pages"
|
2740 |
msgstr ""
|
2743 |
#: app/features/mec/ie.php:30 app/features/mec/messages.php:34
|
2744 |
#: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
|
2745 |
#: app/features/mec/regform.php:71 app/features/mec/settings.php:87
|
2746 |
+
#: app/features/mec/settings.php:877 app/features/mec/single.php:33
|
2747 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2748 |
msgid "User Profile"
|
2749 |
msgstr ""
|
2752 |
#: app/features/mec/ie.php:31 app/features/mec/messages.php:35
|
2753 |
#: app/features/mec/modules.php:42 app/features/mec/notifications.php:34
|
2754 |
#: app/features/mec/regform.php:72 app/features/mec/settings.php:93
|
2755 |
+
#: app/features/mec/settings.php:884 app/features/mec/single.php:34
|
2756 |
#: app/features/mec/styles.php:35 app/features/mec/styling.php:57
|
2757 |
#, fuzzy
|
2758 |
#| msgid "Search Form"
|
2785 |
#: app/features/mec/ie.php:47 app/features/mec/messages.php:51
|
2786 |
#: app/features/mec/modules.php:58 app/features/mec/notifications.php:50
|
2787 |
#: app/features/mec/regform.php:88 app/features/mec/settings.php:123
|
2788 |
+
#: app/features/mec/single.php:57 app/features/mec/single.php:220
|
2789 |
#: app/features/mec/styles.php:51 app/features/mec/styling.php:73
|
2790 |
#, fuzzy
|
2791 |
#| msgid "Single Event Style"
|
2796 |
#: app/features/mec/ie.php:50 app/features/mec/messages.php:54
|
2797 |
#: app/features/mec/modules.php:61 app/features/mec/notifications.php:53
|
2798 |
#: app/features/mec/regform.php:91 app/features/mec/settings.php:126
|
2799 |
+
#: app/features/mec/single.php:75 app/features/mec/single.php:357
|
2800 |
#: app/features/mec/styles.php:54 app/features/mec/styling.php:76
|
2801 |
msgid "Additional Organizers"
|
2802 |
msgstr "Zusätzliche Organisatoren"
|
2812 |
msgid "Additional Locations"
|
2813 |
msgstr "Zusätzliche Organisatoren"
|
2814 |
|
2815 |
+
#: app/features/mec/booking.php:65 app/features/mec/gateways.php:56
|
2816 |
+
#: app/features/mec/ie.php:52 app/features/mec/messages.php:56
|
2817 |
+
#: app/features/mec/modules.php:63 app/features/mec/notifications.php:55
|
2818 |
+
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2819 |
+
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2820 |
+
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2821 |
+
#: app/skins/single.php:155
|
2822 |
+
#, fuzzy
|
2823 |
+
#| msgid "featured event"
|
2824 |
+
msgid "Related Events"
|
2825 |
+
msgstr "Ausgewählte Veranstaltung"
|
2826 |
|
2827 |
+
#: app/features/mec/booking.php:100 app/features/mec/booking.php:374
|
2828 |
#: app/features/mec/gateways.php:73 app/features/mec/ie.php:69
|
2829 |
#: app/features/mec/messages.php:73 app/features/mec/modules.php:80
|
2830 |
#: app/features/mec/notifications.php:72 app/features/mec/regform.php:110
|
2831 |
+
#: app/features/mec/settings.php:145 app/features/mec/single.php:106
|
2832 |
#: app/features/mec/styles.php:73 app/features/mec/styling.php:95
|
2833 |
+
msgid "Taxes / Fees"
|
2834 |
+
msgstr "Steuern/Gebühren"
|
2835 |
+
|
2836 |
+
#: app/features/mec/booking.php:106 app/features/mec/booking.php:451
|
2837 |
+
#: app/features/mec/gateways.php:74 app/features/mec/ie.php:70
|
2838 |
+
#: app/features/mec/messages.php:74 app/features/mec/modules.php:81
|
2839 |
+
#: app/features/mec/notifications.php:73 app/features/mec/regform.php:111
|
2840 |
+
#: app/features/mec/settings.php:146 app/features/mec/single.php:107
|
2841 |
+
#: app/features/mec/styles.php:74 app/features/mec/styling.php:96
|
2842 |
msgid "Ticket Variations & Options"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: app/features/mec/booking.php:120 app/features/mec/gateways.php:85
|
2846 |
+
#: app/features/mec/ie.php:81 app/features/mec/messages.php:85
|
2847 |
+
#: app/features/mec/modules.php:96 app/features/mec/notifications.php:84
|
2848 |
+
#: app/features/mec/regform.php:122 app/features/mec/settings.php:157
|
2849 |
+
#: app/features/mec/single.php:118 app/features/mec/styles.php:85
|
2850 |
+
#: app/features/mec/styling.php:107
|
2851 |
#, fuzzy
|
2852 |
#| msgid "Social Module : "
|
2853 |
msgid "Modules"
|
2854 |
msgstr "Social Modul:"
|
2855 |
|
2856 |
+
#: app/features/mec/booking.php:128 app/features/mec/gateways.php:93
|
2857 |
+
#: app/features/mec/ie.php:89 app/features/mec/messages.php:93
|
2858 |
+
#: app/features/mec/modules.php:119 app/features/mec/modules.php:373
|
2859 |
+
#: app/features/mec/notifications.php:92 app/features/mec/regform.php:130
|
2860 |
+
#: app/features/mec/settings.php:165 app/features/mec/single.php:126
|
2861 |
+
#: app/features/mec/styles.php:93 app/features/mec/styling.php:115
|
2862 |
#, fuzzy
|
2863 |
#| msgid "Import Options"
|
2864 |
msgid "Export Options"
|
2865 |
msgstr "Import Optionen"
|
2866 |
|
2867 |
+
#: app/features/mec/booking.php:129 app/features/mec/gateways.php:94
|
2868 |
+
#: app/features/mec/ie.php:90 app/features/mec/messages.php:94
|
2869 |
+
#: app/features/mec/modules.php:125 app/features/mec/modules.php:400
|
2870 |
+
#: app/features/mec/notifications.php:93 app/features/mec/regform.php:131
|
2871 |
+
#: app/features/mec/settings.php:166 app/features/mec/single.php:127
|
2872 |
+
#: app/features/mec/styles.php:94 app/features/mec/styling.php:116
|
2873 |
#: app/modules/local-time/details.php:42 app/widgets/single.php:99
|
2874 |
msgid "Local Time"
|
2875 |
msgstr "Lokale Zeit"
|
2876 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2877 |
#: app/features/mec/booking.php:131 app/features/mec/gateways.php:96
|
2878 |
#: app/features/mec/ie.php:92 app/features/mec/messages.php:96
|
2879 |
+
#: app/features/mec/modules.php:133 app/features/mec/modules.php:414
|
2880 |
#: app/features/mec/notifications.php:95 app/features/mec/regform.php:133
|
2881 |
+
#: app/features/mec/settings.php:168 app/features/mec/single.php:129
|
2882 |
#: app/features/mec/styles.php:96 app/features/mec/styling.php:118
|
2883 |
+
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
2884 |
+
msgid "QR Code"
|
2885 |
+
msgstr "QR Code"
|
2886 |
+
|
2887 |
+
#: app/features/mec/booking.php:132 app/features/mec/gateways.php:97
|
2888 |
+
#: app/features/mec/ie.php:93 app/features/mec/messages.php:97
|
2889 |
+
#: app/features/mec/modules.php:139 app/features/mec/modules.php:432
|
2890 |
+
#: app/features/mec/notifications.php:96 app/features/mec/regform.php:134
|
2891 |
+
#: app/features/mec/settings.php:169 app/features/mec/single.php:130
|
2892 |
+
#: app/features/mec/styles.php:97 app/features/mec/styling.php:119
|
2893 |
#: app/modules/weather/details.php:37
|
2894 |
msgid "Weather"
|
2895 |
msgstr "Wetter"
|
2896 |
|
2897 |
+
#: app/features/mec/booking.php:135 app/features/mec/gateways.php:100
|
2898 |
+
#: app/features/mec/ie.php:96 app/features/mec/messages.php:100
|
2899 |
+
#: app/features/mec/modules.php:153 app/features/mec/modules.php:494
|
2900 |
+
#: app/features/mec/notifications.php:99 app/features/mec/regform.php:137
|
2901 |
+
#: app/features/mec/settings.php:172 app/features/mec/single.php:133
|
2902 |
+
#: app/features/mec/styles.php:100 app/features/mec/styling.php:122
|
2903 |
#: app/modules/next-event/details.php:82
|
2904 |
msgid "Next Event"
|
2905 |
msgstr "Nächstes Event"
|
2906 |
|
2907 |
+
#: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
|
2908 |
+
#: app/features/mec/ie.php:131 app/features/mec/messages.php:135
|
2909 |
+
#: app/features/mec/modules.php:197 app/features/mec/notifications.php:144
|
2910 |
+
#: app/features/mec/notifications.php:291 app/features/mec/regform.php:170
|
2911 |
+
#: app/features/mec/settings.php:207 app/features/mec/single.php:168
|
2912 |
+
#: app/features/mec/styles.php:135 app/features/mec/styling.php:157
|
2913 |
msgid "Booking Verification"
|
2914 |
msgstr "Verifizierung der Buchung"
|
2915 |
|
2916 |
+
#: app/features/mec/booking.php:171 app/features/mec/booking.php:330
|
2917 |
+
#: app/features/mec/gateways.php:136 app/features/mec/ie.php:132
|
2918 |
+
#: app/features/mec/messages.php:136 app/features/mec/modules.php:198
|
2919 |
+
#: app/features/mec/notifications.php:150
|
2920 |
+
#: app/features/mec/notifications.php:343 app/features/mec/regform.php:171
|
2921 |
+
#: app/features/mec/settings.php:208 app/features/mec/single.php:169
|
2922 |
+
#: app/features/mec/styles.php:136 app/features/mec/styling.php:158
|
2923 |
msgid "Booking Confirmation"
|
2924 |
msgstr "Buchungsbestätigung"
|
2925 |
|
2926 |
+
#: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
|
2927 |
+
#: app/features/mec/ie.php:133 app/features/mec/messages.php:137
|
2928 |
+
#: app/features/mec/modules.php:199 app/features/mec/notifications.php:156
|
2929 |
+
#: app/features/mec/notifications.php:395 app/features/mec/regform.php:172
|
2930 |
+
#: app/features/mec/settings.php:209 app/features/mec/single.php:170
|
2931 |
+
#: app/features/mec/styles.php:137 app/features/mec/styling.php:159
|
2932 |
#, fuzzy
|
2933 |
#| msgid "Booking cancellation link."
|
2934 |
msgid "Booking Cancellation"
|
2935 |
msgstr "Link zur Stornierung der Buchung"
|
2936 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2937 |
#: app/features/mec/booking.php:173 app/features/mec/gateways.php:138
|
2938 |
#: app/features/mec/ie.php:134 app/features/mec/messages.php:138
|
2939 |
+
#: app/features/mec/modules.php:200 app/features/mec/notifications.php:162
|
2940 |
+
#: app/features/mec/notifications.php:463 app/features/mec/regform.php:173
|
2941 |
+
#: app/features/mec/settings.php:210 app/features/mec/single.php:171
|
2942 |
#: app/features/mec/styles.php:138 app/features/mec/styling.php:160
|
2943 |
+
msgid "Admin"
|
2944 |
+
msgstr ""
|
2945 |
+
|
2946 |
+
#: app/features/mec/booking.php:174 app/features/mec/gateways.php:139
|
2947 |
+
#: app/features/mec/ie.php:135 app/features/mec/messages.php:139
|
2948 |
+
#: app/features/mec/modules.php:201 app/features/mec/notifications.php:168
|
2949 |
+
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2950 |
+
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2951 |
+
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2952 |
#: app/libraries/notifications.php:354
|
2953 |
msgid "Booking Reminder"
|
2954 |
msgstr "Buchungs Erinnerung"
|
2955 |
|
2956 |
+
#: app/features/mec/booking.php:176 app/features/mec/gateways.php:141
|
2957 |
+
#: app/features/mec/ie.php:137 app/features/mec/messages.php:141
|
2958 |
+
#: app/features/mec/modules.php:203 app/features/mec/notifications.php:174
|
2959 |
+
#: app/features/mec/notifications.php:599 app/features/mec/regform.php:176
|
2960 |
+
#: app/features/mec/settings.php:213 app/features/mec/single.php:174
|
2961 |
+
#: app/features/mec/styles.php:141 app/features/mec/styling.php:163
|
2962 |
#: app/features/mec/support-page.php:80
|
2963 |
msgid "New Event"
|
2964 |
msgstr "Neue Veranstaltung"
|
2965 |
|
2966 |
+
#: app/features/mec/booking.php:184 app/features/mec/gateways.php:149
|
2967 |
+
#: app/features/mec/ie.php:145 app/features/mec/messages.php:149
|
2968 |
+
#: app/features/mec/modules.php:211 app/features/mec/notifications.php:185
|
2969 |
+
#: app/features/mec/regform.php:184 app/features/mec/settings.php:221
|
2970 |
+
#: app/features/mec/single.php:182 app/features/mec/styles.php:149
|
2971 |
+
#: app/features/mec/styling.php:171 app/features/mec/support.php:52
|
2972 |
msgid "Styling Options"
|
2973 |
msgstr "Styling-Optionen"
|
2974 |
|
2975 |
+
#: app/features/mec/booking.php:191 app/features/mec/gateways.php:156
|
2976 |
+
#: app/features/mec/ie.php:152 app/features/mec/messages.php:156
|
2977 |
+
#: app/features/mec/modules.php:218 app/features/mec/notifications.php:192
|
2978 |
+
#: app/features/mec/regform.php:191 app/features/mec/settings.php:228
|
2979 |
+
#: app/features/mec/single.php:189 app/features/mec/styles.php:156
|
2980 |
+
#: app/features/mec/styling.php:178 app/features/mec/support.php:59
|
2981 |
msgid "Custom CSS"
|
2982 |
msgstr "Custom CSS"
|
2983 |
|
2984 |
+
#: app/features/mec/booking.php:198 app/features/mec/gateways.php:163
|
2985 |
+
#: app/features/mec/ie.php:159 app/features/mec/messages.php:163
|
2986 |
+
#: app/features/mec/messages.php:183 app/features/mec/modules.php:225
|
2987 |
+
#: app/features/mec/notifications.php:199 app/features/mec/regform.php:198
|
2988 |
+
#: app/features/mec/settings.php:235 app/features/mec/single.php:196
|
2989 |
+
#: app/features/mec/styles.php:163 app/features/mec/styling.php:185
|
2990 |
#: app/features/mec/support.php:66
|
2991 |
msgid "Messages"
|
2992 |
msgstr "Nachrichten"
|
2993 |
|
2994 |
+
#: app/features/mec/booking.php:229
|
2995 |
msgid "Enable booking module"
|
2996 |
msgstr "Buchungsmodul aktivieren"
|
2997 |
|
2998 |
+
#: app/features/mec/booking.php:230
|
2999 |
msgid ""
|
3000 |
+
"After enabling and saving the settings, reloading the page will add 'payment "
|
3001 |
+
"Gateways' to the settings and a new menu item on the Dashboard"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: app/features/mec/booking.php:235 app/features/mec/booking.php:240
|
3005 |
+
#: app/features/mec/modules.php:512 app/features/mec/modules.php:517
|
3006 |
msgid "Date Format"
|
3007 |
msgstr "Datumsformat"
|
3008 |
|
3009 |
+
#: app/features/mec/booking.php:241
|
3010 |
msgid "Default is Y-m-d"
|
3011 |
msgstr "Voreinstellung ist J-M-T"
|
3012 |
|
3013 |
+
#: app/features/mec/booking.php:248
|
3014 |
#: app/features/mec/meta_boxes/display_options.php:115
|
3015 |
#: app/features/mec/meta_boxes/display_options.php:276
|
3016 |
#: app/features/mec/meta_boxes/display_options.php:332
|
3020 |
msgid "Limit"
|
3021 |
msgstr "Limit"
|
3022 |
|
3023 |
+
#: app/features/mec/booking.php:250
|
3024 |
#, fuzzy
|
3025 |
#| msgid "Default is 6"
|
3026 |
msgid "Default is empty"
|
3027 |
msgstr "Die Voreinstellung ist 6"
|
3028 |
|
3029 |
+
#: app/features/mec/booking.php:253
|
3030 |
#, fuzzy
|
3031 |
#| msgid "Booking Form"
|
3032 |
msgid "Booking Limit"
|
3033 |
msgstr "Buchungsformular"
|
3034 |
|
3035 |
+
#: app/features/mec/booking.php:254
|
3036 |
msgid ""
|
3037 |
"Total tickets that a user can book. It is useful if you're providing free "
|
3038 |
"tickets. Leave it empty for unlimited booking."
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: app/features/mec/booking.php:261
|
3042 |
msgid "Maximum Dates"
|
3043 |
msgstr "Maximale Anzahl von Daten"
|
3044 |
|
3045 |
+
#: app/features/mec/booking.php:263
|
3046 |
msgid "Default is 6"
|
3047 |
msgstr "Die Voreinstellung ist 6"
|
3048 |
|
3049 |
+
#: app/features/mec/booking.php:267 app/features/mec/booking.php:277
|
3050 |
msgid "Thank You Page"
|
3051 |
msgstr "Danke Seite"
|
3052 |
|
3053 |
+
#: app/features/mec/booking.php:278
|
3054 |
msgid ""
|
3055 |
"User redirects to this page after booking. Leave it empty if you want to "
|
3056 |
"disable it."
|
3058 |
"Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
|
3059 |
"es leer, wenn Sie es deaktivieren möchten."
|
3060 |
|
3061 |
+
#: app/features/mec/booking.php:289
|
3062 |
msgid "Enable Express Attendees Form"
|
3063 |
msgstr "Aktivieren Sie das Express-Teilnehmerformular"
|
3064 |
|
3065 |
+
#: app/features/mec/booking.php:293 app/modules/booking/steps/form.php:52
|
3066 |
msgid "Attendees Form"
|
3067 |
msgstr "Teilnahmeformular"
|
3068 |
|
3069 |
+
#: app/features/mec/booking.php:294
|
3070 |
msgid ""
|
3071 |
"Users are able to apply first attendee information for other attendees in "
|
3072 |
"the booking form."
|
3074 |
"Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
|
3075 |
"Buchungsformular anwenden."
|
3076 |
|
3077 |
+
#: app/features/mec/booking.php:307
|
3078 |
#, fuzzy
|
3079 |
#| msgid "Download Invoice"
|
3080 |
msgid "Enable Invoice"
|
3081 |
msgstr "Download Rechnung"
|
3082 |
|
3083 |
+
#: app/features/mec/booking.php:311
|
3084 |
msgid "Email verification"
|
3085 |
msgstr "Email-Verifizierung"
|
3086 |
|
3087 |
+
#: app/features/mec/booking.php:317
|
3088 |
msgid "Auto verification for free bookings"
|
3089 |
msgstr "Automatische Verifizierung für kostenlose Buchungen"
|
3090 |
|
3091 |
+
#: app/features/mec/booking.php:326
|
3092 |
msgid "Auto verification for paid bookings"
|
3093 |
msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
|
3094 |
|
3095 |
+
#: app/features/mec/booking.php:336
|
3096 |
msgid "Auto confirmation for free bookings"
|
3097 |
msgstr "Automatische Bestätigung für kostenlose Buchungen"
|
3098 |
|
3099 |
+
#: app/features/mec/booking.php:345
|
3100 |
msgid "Auto confirmation for paid bookings"
|
3101 |
msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
|
3102 |
|
3103 |
+
#: app/features/mec/booking.php:364
|
3104 |
msgid "Enable coupons module"
|
3105 |
msgstr "Gutscheinmodul aktivieren"
|
3106 |
|
3107 |
+
#: app/features/mec/booking.php:366
|
3108 |
msgid ""
|
3109 |
+
"After enabling and saving the settings,, you should reload the page to see a "
|
3110 |
+
"new menu on the Dashboard > Booking"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: app/features/mec/booking.php:382
|
3114 |
msgid "Enable taxes / fees module"
|
3115 |
msgstr "Modul für Gebühren/Steuern aktivieren"
|
3116 |
|
3117 |
+
#: app/features/mec/booking.php:387
|
3118 |
msgid "Add Fee"
|
3119 |
msgstr "Gebühr hinzufügen"
|
3120 |
|
3121 |
+
#: app/features/mec/booking.php:459
|
3122 |
#, fuzzy
|
3123 |
#| msgid "Enable coupons module"
|
3124 |
msgid "Enable ticket options module"
|
3125 |
msgstr "Gutscheinmodul aktivieren"
|
3126 |
|
3127 |
+
#: app/features/mec/booking.php:464
|
3128 |
msgid "Add Variation / Option"
|
3129 |
msgstr ""
|
3130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3131 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3132 |
+
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3133 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3134 |
+
#: app/features/mec/settings.php:1083 app/features/mec/single.php:475
|
3135 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3136 |
+
msgid "Saved"
|
3137 |
+
msgstr "Gesichert"
|
3138 |
+
|
3139 |
+
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3140 |
+
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3141 |
+
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3142 |
+
#: app/features/mec/settings.php:1084 app/features/mec/single.php:476
|
3143 |
+
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3144 |
msgid "Settings Saved!"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
+
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3148 |
+
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3149 |
+
#: app/features/mec/notifications.php:735
|
3150 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1086
|
3151 |
+
#: app/features/mec/settings.php:1108 app/features/mec/single.php:478
|
3152 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4742
|
3153 |
msgid "Verified"
|
3154 |
msgstr "Verifiziert"
|
3155 |
|
3156 |
+
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3157 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1110
|
3158 |
+
#: app/features/mec/single.php:502
|
3159 |
msgid "Please Refresh Page"
|
3160 |
msgstr "Bitte Seiten Refresh vornehmen"
|
3161 |
|
3220 |
msgid "MEC Activate"
|
3221 |
msgstr "MEC Aktivierung"
|
3222 |
|
3223 |
+
#: app/features/mec/dashboard.php:123
|
3224 |
msgid ""
|
3225 |
"In order to use all plugin features and options, please enter your purchase "
|
3226 |
"code."
|
3227 |
msgstr ""
|
3228 |
|
3229 |
+
#: app/features/mec/dashboard.php:181
|
3230 |
#, fuzzy
|
3231 |
#| msgid "MEC Activation"
|
3232 |
msgid "Activate Addons"
|
3233 |
msgstr "MEC Aktivierung"
|
3234 |
|
3235 |
+
#: app/features/mec/dashboard.php:190
|
3236 |
+
msgid "You cannot access this section."
|
3237 |
+
msgstr ""
|
3238 |
+
|
3239 |
+
#: app/features/mec/dashboard.php:234 app/features/mec/settings.php:542
|
3240 |
msgid "Upcoming Events"
|
3241 |
msgstr "Bevorstehende Events"
|
3242 |
|
3243 |
+
#: app/features/mec/dashboard.php:258
|
3244 |
msgid "Popular Gateways"
|
3245 |
msgstr "Beliebte Zahlungsgateways"
|
3246 |
|
3247 |
+
#: app/features/mec/dashboard.php:312
|
3248 |
msgid "Total Bookings"
|
3249 |
msgstr "Gesamte Buchungen"
|
3250 |
|
3251 |
+
#: app/features/mec/dashboard.php:339
|
3252 |
msgid "This Month"
|
3253 |
msgstr "Diesen Monat"
|
3254 |
|
3255 |
+
#: app/features/mec/dashboard.php:340
|
3256 |
msgid "Last Month"
|
3257 |
msgstr "Letzten Monat"
|
3258 |
|
3259 |
+
#: app/features/mec/dashboard.php:341
|
3260 |
msgid "This Year"
|
3261 |
msgstr "Diese Jahr"
|
3262 |
|
3263 |
+
#: app/features/mec/dashboard.php:342
|
3264 |
msgid "Last Year"
|
3265 |
msgstr "Letztes Jahr"
|
3266 |
|
3267 |
+
#: app/features/mec/dashboard.php:354
|
3268 |
msgid "Bar"
|
3269 |
msgstr "Bar"
|
3270 |
|
3271 |
+
#: app/features/mec/dashboard.php:355
|
3272 |
msgid "Line"
|
3273 |
msgstr "Linie"
|
3274 |
|
3275 |
+
#: app/features/mec/dashboard.php:357
|
3276 |
msgid "Filter"
|
3277 |
msgstr "Filter"
|
3278 |
|
3279 |
+
#: app/features/mec/dashboard.php:373
|
3280 |
#, php-format
|
3281 |
msgid "Total Sells (%s)"
|
3282 |
msgstr "Alle Verkäufe (%s)"
|
3283 |
|
3284 |
+
#: app/features/mec/dashboard.php:394
|
3285 |
msgid "Change Log"
|
3286 |
msgstr "Änderungsprotokoll"
|
3287 |
|
3288 |
+
#: app/features/mec/gateways.php:199
|
3289 |
msgid "Enable Organizer Payment Module"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: app/features/mec/gateways.php:203
|
3293 |
#, fuzzy
|
3294 |
#| msgid "Organizer Tel"
|
3295 |
msgid "Organizer Payment"
|
3296 |
msgstr "Organisator Telefon"
|
3297 |
|
3298 |
+
#: app/features/mec/gateways.php:204
|
3299 |
msgid ""
|
3300 |
"By enabling this module, organizers are able to insert their own payment "
|
3301 |
"credentials for enabled gateways per event and receive the payments directly!"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: app/features/mec/ie.php:180
|
3305 |
msgid ""
|
3306 |
"Insert your backup files below and press import to restore your site's "
|
3307 |
"options to the last backup."
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: app/features/mec/ie.php:181
|
3311 |
msgid ""
|
3312 |
"WARNING! Restoring backup will overwrite all of your current option values. "
|
3313 |
"Caution Indeed."
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: app/features/mec/ie.php:184
|
3317 |
msgid "Please paste your options here"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: app/features/mec/ie.php:186
|
3321 |
#, fuzzy
|
3322 |
#| msgid "Import Options"
|
3323 |
msgid "Import Settings"
|
3324 |
msgstr "Import Optionen"
|
3325 |
|
3326 |
+
#: app/features/mec/ie.php:196
|
3327 |
#, fuzzy
|
3328 |
#| msgid "Download Invoice"
|
3329 |
msgid "Download Settings"
|
3330 |
msgstr "Download Rechnung\n"
|
3331 |
|
3332 |
+
#: app/features/mec/messages.php:186
|
3333 |
msgid ""
|
3334 |
"You can change some MEC messages here simply. For example if you like to "
|
3335 |
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
3349 |
#: app/features/mec/meta_boxes/display_options.php:159
|
3350 |
#: app/features/mec/meta_boxes/display_options.php:531
|
3351 |
#: app/features/mec/meta_boxes/display_options.php:845
|
3352 |
+
#: app/features/mec/settings.php:406 app/features/mec/settings.php:430
|
3353 |
+
#: app/features/mec/settings.php:439 app/features/mec/settings.php:480
|
3354 |
+
#: app/features/mec/settings.php:504 app/features/mec/settings.php:513
|
3355 |
msgid "Classic"
|
3356 |
msgstr "Klassisch"
|
3357 |
|
3358 |
#: app/features/mec/meta_boxes/display_options.php:35
|
3359 |
#: app/features/mec/meta_boxes/display_options.php:161
|
3360 |
+
#: app/features/mec/settings.php:431 app/features/mec/settings.php:441
|
3361 |
+
#: app/features/mec/settings.php:505 app/features/mec/settings.php:515
|
3362 |
msgid "Minimal"
|
3363 |
msgstr "Minimal"
|
3364 |
|
3368 |
#: app/features/mec/meta_boxes/display_options.php:533
|
3369 |
#: app/features/mec/meta_boxes/display_options.php:695
|
3370 |
#: app/features/mec/meta_boxes/display_options.php:847
|
3371 |
+
#: app/features/mec/settings.php:408 app/features/mec/settings.php:421
|
3372 |
+
#: app/features/mec/settings.php:432 app/features/mec/settings.php:442
|
3373 |
+
#: app/features/mec/settings.php:482 app/features/mec/settings.php:495
|
3374 |
+
#: app/features/mec/settings.php:506 app/features/mec/settings.php:516
|
3375 |
msgid "Modern"
|
3376 |
msgstr "Modern"
|
3377 |
|
3378 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3379 |
+
#: app/features/mec/settings.php:433 app/features/mec/settings.php:507
|
3380 |
msgid "Standard"
|
3381 |
msgstr "Standard"
|
3382 |
|
3383 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3384 |
+
#: app/features/mec/settings.php:434 app/features/mec/settings.php:508
|
3385 |
msgid "Accordion"
|
3386 |
msgstr "Accordion"
|
3387 |
|
3601 |
#: app/features/mec/meta_boxes/display_options.php:532
|
3602 |
#: app/features/mec/meta_boxes/display_options.php:696
|
3603 |
#: app/features/mec/meta_boxes/display_options.php:846
|
3604 |
+
#: app/features/mec/settings.php:407 app/features/mec/settings.php:422
|
3605 |
+
#: app/features/mec/settings.php:440 app/features/mec/settings.php:481
|
3606 |
+
#: app/features/mec/settings.php:496 app/features/mec/settings.php:514
|
3607 |
msgid "Clean"
|
3608 |
msgstr "Clean"
|
3609 |
|
3610 |
#: app/features/mec/meta_boxes/display_options.php:163
|
3611 |
#: app/features/mec/meta_boxes/display_options.php:387
|
3612 |
#: app/features/mec/meta_boxes/display_options.php:535
|
3613 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:443
|
3614 |
+
#: app/features/mec/settings.php:484 app/features/mec/settings.php:517
|
3615 |
msgid "Simple"
|
3616 |
msgstr "Schlicht"
|
3617 |
|
3622 |
#: app/features/mec/meta_boxes/display_options.php:165
|
3623 |
#: app/features/mec/meta_boxes/display_options.php:386
|
3624 |
#: app/features/mec/meta_boxes/display_options.php:534
|
3625 |
+
#: app/features/mec/settings.php:409 app/features/mec/settings.php:445
|
3626 |
+
#: app/features/mec/settings.php:483 app/features/mec/settings.php:519
|
3627 |
msgid "Novel"
|
3628 |
msgstr ""
|
3629 |
|
3670 |
|
3671 |
#: app/features/mec/meta_boxes/display_options.php:375
|
3672 |
#: app/features/mec/meta_boxes/display_options.php:396
|
3673 |
+
#: app/libraries/main.php:329 app/libraries/main.php:1249
|
3674 |
+
#: app/libraries/main.php:1274
|
3675 |
msgid "List View"
|
3676 |
msgstr "Listenansicht"
|
3677 |
|
3678 |
#: app/features/mec/meta_boxes/display_options.php:376
|
3679 |
#: app/features/mec/meta_boxes/display_options.php:406
|
3680 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1243
|
3681 |
+
#: app/libraries/main.php:1268
|
3682 |
msgid "Yearly View"
|
3683 |
msgstr "Jahresansicht"
|
3684 |
|
3689 |
|
3690 |
#: app/features/mec/meta_boxes/display_options.php:378
|
3691 |
#: app/features/mec/meta_boxes/display_options.php:438
|
3692 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1245
|
3693 |
+
#: app/libraries/main.php:1270
|
3694 |
msgid "Weekly View"
|
3695 |
msgstr "Wochenansicht"
|
3696 |
|
3697 |
#: app/features/mec/meta_boxes/display_options.php:379
|
3698 |
#: app/features/mec/meta_boxes/display_options.php:448
|
3699 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1246
|
3700 |
+
#: app/libraries/main.php:1271
|
3701 |
msgid "Daily View"
|
3702 |
msgstr "Tagesansicht"
|
3703 |
|
4025 |
#: app/features/mec/meta_boxes/search_form.php:130
|
4026 |
#: app/features/mec/meta_boxes/search_form.php:137
|
4027 |
#: app/features/mec/meta_boxes/search_form.php:144
|
4028 |
+
#: app/features/mec/meta_boxes/search_form.php:157
|
4029 |
+
#: app/features/mec/meta_boxes/search_form.php:164
|
4030 |
+
#: app/features/mec/meta_boxes/search_form.php:171
|
4031 |
+
#: app/features/mec/meta_boxes/search_form.php:178
|
4032 |
+
#: app/features/mec/meta_boxes/search_form.php:185
|
4033 |
+
#: app/features/mec/meta_boxes/search_form.php:192
|
4034 |
+
#: app/features/mec/meta_boxes/search_form.php:199
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4035 |
#: app/features/mec/meta_boxes/search_form.php:206
|
4036 |
+
#: app/features/mec/meta_boxes/search_form.php:218
|
4037 |
+
#: app/features/mec/meta_boxes/search_form.php:225
|
4038 |
+
#: app/features/mec/meta_boxes/search_form.php:232
|
4039 |
+
#: app/features/mec/meta_boxes/search_form.php:239
|
4040 |
+
#: app/features/mec/meta_boxes/search_form.php:246
|
4041 |
+
#: app/features/mec/meta_boxes/search_form.php:253
|
4042 |
+
#: app/features/mec/meta_boxes/search_form.php:260
|
4043 |
#: app/features/mec/meta_boxes/search_form.php:267
|
4044 |
+
#: app/features/mec/meta_boxes/search_form.php:279
|
4045 |
+
#: app/features/mec/meta_boxes/search_form.php:286
|
4046 |
+
#: app/features/mec/meta_boxes/search_form.php:293
|
4047 |
+
#: app/features/mec/meta_boxes/search_form.php:300
|
4048 |
+
#: app/features/mec/meta_boxes/search_form.php:307
|
4049 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
4050 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
4051 |
#: app/features/mec/meta_boxes/search_form.php:328
|
4052 |
+
#: app/features/mec/meta_boxes/search_form.php:340
|
4053 |
+
#: app/features/mec/meta_boxes/search_form.php:347
|
4054 |
+
#: app/features/mec/meta_boxes/search_form.php:354
|
4055 |
+
#: app/features/mec/meta_boxes/search_form.php:361
|
4056 |
+
#: app/features/mec/meta_boxes/search_form.php:368
|
4057 |
+
#: app/features/mec/meta_boxes/search_form.php:375
|
4058 |
+
#: app/features/mec/meta_boxes/search_form.php:382
|
4059 |
#: app/features/mec/meta_boxes/search_form.php:389
|
4060 |
+
#: app/features/mec/meta_boxes/search_form.php:401
|
4061 |
+
#: app/features/mec/meta_boxes/search_form.php:408
|
4062 |
+
#: app/features/mec/meta_boxes/search_form.php:415
|
4063 |
+
#: app/features/mec/meta_boxes/search_form.php:422
|
4064 |
+
#: app/features/mec/meta_boxes/search_form.php:429
|
4065 |
+
#: app/features/mec/meta_boxes/search_form.php:436
|
4066 |
+
#: app/features/mec/meta_boxes/search_form.php:443
|
4067 |
+
#: app/features/mec/meta_boxes/search_form.php:455
|
4068 |
+
#: app/features/mec/meta_boxes/search_form.php:462
|
4069 |
+
#: app/features/mec/meta_boxes/search_form.php:469
|
4070 |
+
#: app/features/mec/meta_boxes/search_form.php:476
|
4071 |
+
#: app/features/mec/meta_boxes/search_form.php:483
|
4072 |
+
#: app/features/mec/meta_boxes/search_form.php:490
|
4073 |
+
#: app/features/mec/meta_boxes/search_form.php:497
|
4074 |
#: app/features/mec/meta_boxes/search_form.php:504
|
4075 |
+
#: app/features/mec/meta_boxes/search_form.php:516
|
4076 |
+
#: app/features/mec/meta_boxes/search_form.php:523
|
4077 |
+
#: app/features/mec/meta_boxes/search_form.php:530
|
4078 |
+
#: app/features/mec/meta_boxes/search_form.php:537
|
4079 |
+
#: app/features/mec/meta_boxes/search_form.php:544
|
4080 |
+
#: app/features/mec/meta_boxes/search_form.php:551
|
4081 |
+
#: app/features/mec/meta_boxes/search_form.php:558
|
4082 |
#: app/features/mec/meta_boxes/search_form.php:565
|
4083 |
+
#: app/features/mec/meta_boxes/search_form.php:577
|
4084 |
+
#: app/features/mec/meta_boxes/search_form.php:584
|
4085 |
+
#: app/features/mec/meta_boxes/search_form.php:591
|
4086 |
+
#: app/features/mec/meta_boxes/search_form.php:598
|
4087 |
+
#: app/features/mec/meta_boxes/search_form.php:605
|
4088 |
+
#: app/features/mec/meta_boxes/search_form.php:612
|
4089 |
+
#: app/features/mec/meta_boxes/search_form.php:619
|
4090 |
#: app/features/mec/meta_boxes/search_form.php:626
|
4091 |
+
#: app/features/mec/modules.php:331 app/features/mec/settings.php:304
|
4092 |
+
#: app/features/mec/settings.php:560
|
4093 |
+
msgid "Disabled"
|
4094 |
+
msgstr "Deaktiviert"
|
4095 |
+
|
4096 |
+
#: app/features/mec/meta_boxes/search_form.php:52
|
4097 |
+
#: app/features/mec/meta_boxes/search_form.php:114
|
4098 |
+
#: app/features/mec/meta_boxes/search_form.php:176
|
4099 |
+
#: app/features/mec/meta_boxes/search_form.php:237
|
4100 |
+
#: app/features/mec/meta_boxes/search_form.php:298
|
4101 |
+
#: app/features/mec/meta_boxes/search_form.php:359
|
4102 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
4103 |
+
#: app/features/mec/meta_boxes/search_form.php:474
|
4104 |
+
#: app/features/mec/meta_boxes/search_form.php:535
|
4105 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
4106 |
+
#: app/features/mec/settings.php:909 app/features/mec/single.php:403
|
4107 |
+
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4108 |
+
#: app/libraries/main.php:4504 app/libraries/skins.php:891
|
4109 |
+
msgid "Speaker"
|
4110 |
+
msgstr ""
|
4111 |
+
|
4112 |
+
#: app/features/mec/meta_boxes/search_form.php:59
|
4113 |
+
#: app/features/mec/meta_boxes/search_form.php:121
|
4114 |
+
#: app/features/mec/meta_boxes/search_form.php:183
|
4115 |
+
#: app/features/mec/meta_boxes/search_form.php:244
|
4116 |
+
#: app/features/mec/meta_boxes/search_form.php:305
|
4117 |
+
#: app/features/mec/meta_boxes/search_form.php:366
|
4118 |
+
#: app/features/mec/meta_boxes/search_form.php:427
|
4119 |
+
#: app/features/mec/meta_boxes/search_form.php:481
|
4120 |
+
#: app/features/mec/meta_boxes/search_form.php:542
|
4121 |
+
#: app/features/mec/meta_boxes/search_form.php:603
|
4122 |
+
#: app/features/mec/settings.php:916 app/features/mec/single.php:412
|
4123 |
+
#: app/libraries/skins.php:917
|
4124 |
+
#, fuzzy
|
4125 |
+
#| msgid "Tags"
|
4126 |
+
msgid "Tag"
|
4127 |
+
msgstr "Schlagworte"
|
4128 |
+
|
4129 |
+
#: app/features/mec/meta_boxes/search_form.php:73
|
4130 |
+
#: app/features/mec/meta_boxes/search_form.php:135
|
4131 |
+
#: app/features/mec/meta_boxes/search_form.php:197
|
4132 |
+
#: app/features/mec/meta_boxes/search_form.php:258
|
4133 |
+
#: app/features/mec/meta_boxes/search_form.php:319
|
4134 |
+
#: app/features/mec/meta_boxes/search_form.php:380
|
4135 |
+
#: app/features/mec/meta_boxes/search_form.php:495
|
4136 |
+
#: app/features/mec/meta_boxes/search_form.php:556
|
4137 |
+
#: app/features/mec/meta_boxes/search_form.php:617
|
4138 |
+
msgid "Month Filter"
|
4139 |
+
msgstr "Monatsfilter"
|
4140 |
+
|
4141 |
+
#: app/features/mec/meta_boxes/search_form.php:80
|
4142 |
+
#: app/features/mec/meta_boxes/search_form.php:142
|
4143 |
+
#: app/features/mec/meta_boxes/search_form.php:204
|
4144 |
+
#: app/features/mec/meta_boxes/search_form.php:265
|
4145 |
+
#: app/features/mec/meta_boxes/search_form.php:326
|
4146 |
+
#: app/features/mec/meta_boxes/search_form.php:387
|
4147 |
+
#: app/features/mec/meta_boxes/search_form.php:441
|
4148 |
+
#: app/features/mec/meta_boxes/search_form.php:502
|
4149 |
+
#: app/features/mec/meta_boxes/search_form.php:563
|
4150 |
+
#: app/features/mec/meta_boxes/search_form.php:624
|
4151 |
+
msgid "Text Search"
|
4152 |
+
msgstr "Textsuche"
|
4153 |
+
|
4154 |
+
#: app/features/mec/meta_boxes/search_form.php:83
|
4155 |
+
#: app/features/mec/meta_boxes/search_form.php:145
|
4156 |
+
#: app/features/mec/meta_boxes/search_form.php:207
|
4157 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
4158 |
+
#: app/features/mec/meta_boxes/search_form.php:329
|
4159 |
+
#: app/features/mec/meta_boxes/search_form.php:390
|
4160 |
+
#: app/features/mec/meta_boxes/search_form.php:444
|
4161 |
+
#: app/features/mec/meta_boxes/search_form.php:505
|
4162 |
+
#: app/features/mec/meta_boxes/search_form.php:566
|
4163 |
+
#: app/features/mec/meta_boxes/search_form.php:627
|
4164 |
msgid "Text Input"
|
4165 |
msgstr "Text eingeben"
|
4166 |
|
4167 |
+
#: app/features/mec/meta_boxes/search_form.php:635
|
4168 |
+
#: app/features/mec/meta_boxes/search_form.php:641
|
4169 |
+
#: app/features/mec/meta_boxes/search_form.php:647
|
4170 |
+
#: app/features/mec/meta_boxes/search_form.php:653
|
4171 |
+
#: app/features/mec/meta_boxes/search_form.php:659
|
4172 |
+
#: app/features/mec/meta_boxes/search_form.php:665
|
4173 |
msgid "No Search Options"
|
4174 |
msgstr "Keine Suchoptionen"
|
4175 |
|
4176 |
+
#: app/features/mec/modules.php:249
|
4177 |
#, fuzzy
|
4178 |
#| msgid "No Search Options"
|
4179 |
msgid "Speakers Options"
|
4180 |
msgstr "Keine Suchoptionen"
|
4181 |
|
4182 |
+
#: app/features/mec/modules.php:255
|
4183 |
#, fuzzy
|
4184 |
#| msgid "Enable taxes / fees module"
|
4185 |
msgid "Enable speakers feature"
|
4186 |
msgstr "Modul für Gebühren/Steuern aktivieren"
|
4187 |
|
4188 |
+
#: app/features/mec/modules.php:259
|
4189 |
+
msgid ""
|
4190 |
+
"Enable this option to have speaker in Hourly Schedule in Single. Refresh "
|
4191 |
+
"after enabling it to see the Speakers menu under MEC dashboard."
|
4192 |
+
msgstr ""
|
4193 |
+
|
4194 |
+
#: app/features/mec/modules.php:264
|
4195 |
msgid ""
|
4196 |
+
"After enabling and saving the settings, you should reload the page to see a "
|
4197 |
+
"new menu on the Dashboard > MEC"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: app/features/mec/modules.php:281
|
4201 |
msgid "Show Google Maps on event page"
|
4202 |
msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
|
4203 |
|
4204 |
+
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4205 |
+
#: app/features/mec/settings.php:946 app/features/mec/settings.php:951
|
4206 |
msgid "API Key"
|
4207 |
msgstr "API Schlüssel"
|
4208 |
|
4209 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:952
|
4210 |
+
#: app/features/mec/settings.php:965
|
4211 |
msgid "Required!"
|
4212 |
msgstr "Erforderlich (Pflichtfeld)"
|
4213 |
|
4214 |
+
#: app/features/mec/modules.php:299 app/features/mec/modules.php:308
|
4215 |
msgid "Zoom level"
|
4216 |
msgstr "Zoom"
|
4217 |
|
4218 |
+
#: app/features/mec/modules.php:309
|
4219 |
msgid ""
|
4220 |
"For Google Maps module in single event page. In Google Maps skin, it will "
|
4221 |
"caculate the zoom level automatically based on event boundaries."
|
4224 |
"es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
|
4225 |
"Angrenzungen"
|
4226 |
|
4227 |
+
#: app/features/mec/modules.php:316
|
4228 |
msgid "Google Maps Style"
|
4229 |
msgstr "Google Maps Stil"
|
4230 |
|
4231 |
+
#: app/features/mec/modules.php:320 app/features/mec/single.php:274
|
4232 |
msgid "Default"
|
4233 |
msgstr "Standardeinstellung"
|
4234 |
|
4235 |
+
#: app/features/mec/modules.php:328
|
4236 |
msgid "Direction on single event"
|
4237 |
msgstr "Richtung auf einzelne Veranstaltung"
|
4238 |
|
4239 |
+
#: app/features/mec/modules.php:332
|
4240 |
msgid "Simple Method"
|
4241 |
msgstr "Einfache Methode"
|
4242 |
|
4243 |
+
#: app/features/mec/modules.php:333
|
4244 |
msgid "Advanced Method"
|
4245 |
msgstr "Fortgeschrittene Methode"
|
4246 |
|
4247 |
+
#: app/features/mec/modules.php:338 app/features/mec/modules.php:343
|
4248 |
msgid "Lightbox Date Format"
|
4249 |
msgstr "Leuchtkasten Datumsformat"
|
4250 |
|
4251 |
+
#: app/features/mec/modules.php:344
|
4252 |
msgid "Default value is M d Y"
|
4253 |
msgstr "Standardwert ist M T J"
|
4254 |
|
4255 |
+
#: app/features/mec/modules.php:351 app/features/mec/modules.php:359
|
4256 |
msgid "Google Maps API"
|
4257 |
msgstr "Google Maps API"
|
4258 |
|
4259 |
+
#: app/features/mec/modules.php:355
|
4260 |
msgid "Don't load Google Maps API library"
|
4261 |
msgstr "Google Maps API Bibliothek nicht laden"
|
4262 |
|
4263 |
+
#: app/features/mec/modules.php:360
|
4264 |
msgid "Check it only if another plugin/theme is loading the Google Maps API"
|
4265 |
msgstr ""
|
4266 |
"Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
|
4267 |
|
4268 |
+
#: app/features/mec/modules.php:377
|
4269 |
msgid ""
|
4270 |
"Show export module (iCal export and add to Google calendars) on event page"
|
4271 |
msgstr ""
|
4272 |
"Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
|
4273 |
"Google calendars)"
|
4274 |
|
4275 |
+
#: app/features/mec/modules.php:384
|
4276 |
msgid "Google Calendar"
|
4277 |
msgstr "Google Calendar"
|
4278 |
|
4279 |
+
#: app/features/mec/modules.php:404
|
4280 |
msgid "Show event time based on local time of visitor on event page"
|
4281 |
msgstr ""
|
4282 |
"Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
|
4283 |
"Eventseite"
|
4284 |
|
4285 |
+
#: app/features/mec/modules.php:422
|
4286 |
msgid "Show QR code of event in details page and booking invoice"
|
4287 |
msgstr ""
|
4288 |
"Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
|
4289 |
"an"
|
4290 |
|
4291 |
+
#: app/features/mec/modules.php:439
|
4292 |
msgid "Show weather module on event page"
|
4293 |
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4294 |
|
4295 |
+
#: app/features/mec/modules.php:447
|
4296 |
#, php-format
|
4297 |
msgid "You can get a free API Key from %s"
|
4298 |
msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
|
4299 |
|
4300 |
+
#: app/features/mec/modules.php:453
|
4301 |
#, fuzzy
|
4302 |
#| msgid "Show weather module on event page"
|
4303 |
msgid "Show weather imperial units"
|
4304 |
msgstr "Wettermodul auf der Eventseite anzeigen"
|
4305 |
|
4306 |
+
#: app/features/mec/modules.php:459
|
4307 |
msgid "Show weather change units button"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: app/features/mec/modules.php:473
|
4311 |
msgid "Show social network module"
|
4312 |
msgstr "Modul für Soziale Netzwerke anzeigen"
|
4313 |
|
4314 |
+
#: app/features/mec/modules.php:498
|
4315 |
msgid "Show next event module on event page"
|
4316 |
msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
|
4317 |
|
4318 |
+
#: app/features/mec/modules.php:503
|
4319 |
msgid "Method"
|
4320 |
msgstr "Methode"
|
4321 |
|
4322 |
+
#: app/features/mec/modules.php:506
|
4323 |
msgid "Next Occurrence of Current Event"
|
4324 |
msgstr "Nächstes Auftreten des aktuellen Events"
|
4325 |
|
4326 |
+
#: app/features/mec/modules.php:507
|
4327 |
msgid "Next Occurrence of Other Events"
|
4328 |
msgstr "Nächstes Auftreten von anderen Events."
|
4329 |
|
4330 |
+
#: app/features/mec/modules.php:518 app/features/mec/single.php:228
|
4331 |
msgid "Default is M d Y"
|
4332 |
msgstr "Standardwert ist M-T-J"
|
4333 |
|
4334 |
+
#: app/features/mec/modules.php:534
|
4335 |
msgid "Enable BuddyPress Integration"
|
4336 |
msgstr "Buddy Press Integration deaktivieren"
|
4337 |
|
4338 |
+
#: app/features/mec/modules.php:541
|
4339 |
msgid "Show \"Attendees Module\" in event details page"
|
4340 |
msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
|
4341 |
|
4342 |
+
#: app/features/mec/modules.php:545
|
4343 |
msgid "Attendees Limit"
|
4344 |
msgstr "Teilnehmer Limit, maximale Anzahl"
|
4345 |
|
4346 |
+
#: app/features/mec/modules.php:553
|
4347 |
msgid "Add booking activity to user profile"
|
4348 |
msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
|
4349 |
|
4350 |
+
#: app/features/mec/notifications.php:231
|
4351 |
msgid "Enable booking notification"
|
4352 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
4353 |
|
4354 |
+
#: app/features/mec/notifications.php:235
|
4355 |
msgid "It sends to attendee after booking for notifying him/her."
|
4356 |
msgstr ""
|
4357 |
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
4358 |
"benachrichtigen."
|
4359 |
|
4360 |
+
#: app/features/mec/notifications.php:237
|
4361 |
+
#: app/features/mec/notifications.php:294
|
4362 |
+
#: app/features/mec/notifications.php:346
|
4363 |
+
#: app/features/mec/notifications.php:405
|
4364 |
+
#: app/features/mec/notifications.php:473
|
4365 |
+
#: app/features/mec/notifications.php:536
|
4366 |
+
#: app/features/mec/notifications.php:609
|
4367 |
msgid "Email Subject"
|
4368 |
msgstr "Email Betreff"
|
4369 |
|
4370 |
+
#: app/features/mec/notifications.php:241
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4371 |
#: app/features/mec/notifications.php:245
|
4372 |
+
#: app/features/mec/notifications.php:298
|
4373 |
#: app/features/mec/notifications.php:302
|
4374 |
+
#: app/features/mec/notifications.php:350
|
4375 |
#: app/features/mec/notifications.php:354
|
4376 |
+
#: app/features/mec/notifications.php:409
|
4377 |
#: app/features/mec/notifications.php:413
|
4378 |
+
#: app/features/mec/notifications.php:477
|
4379 |
#: app/features/mec/notifications.php:481
|
4380 |
+
#: app/features/mec/notifications.php:540
|
4381 |
#: app/features/mec/notifications.php:544
|
4382 |
#: app/features/mec/notifications.php:555
|
4383 |
+
#: app/features/mec/notifications.php:613
|
4384 |
#: app/features/mec/notifications.php:617
|
4385 |
+
msgid "Custom Recipients"
|
4386 |
+
msgstr "Individuelle Empfänger"
|
4387 |
+
|
4388 |
+
#: app/features/mec/notifications.php:246
|
4389 |
+
#: app/features/mec/notifications.php:303
|
4390 |
+
#: app/features/mec/notifications.php:355
|
4391 |
+
#: app/features/mec/notifications.php:414
|
4392 |
+
#: app/features/mec/notifications.php:482
|
4393 |
+
#: app/features/mec/notifications.php:545
|
4394 |
+
#: app/features/mec/notifications.php:556
|
4395 |
+
#: app/features/mec/notifications.php:618
|
4396 |
msgid "Insert comma separated emails for multiple recipients."
|
4397 |
msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
|
4398 |
|
4399 |
+
#: app/features/mec/notifications.php:253
|
4400 |
+
#: app/features/mec/notifications.php:425
|
4401 |
+
#: app/features/mec/notifications.php:489
|
4402 |
msgid "Send the email to event organizer"
|
4403 |
msgstr "Sendet das Email zum Event Organisator"
|
4404 |
|
4405 |
+
#: app/features/mec/notifications.php:256
|
4406 |
+
#: app/features/mec/notifications.php:309
|
4407 |
+
#: app/features/mec/notifications.php:361
|
4408 |
+
#: app/features/mec/notifications.php:432
|
4409 |
+
#: app/features/mec/notifications.php:492
|
4410 |
+
#: app/features/mec/notifications.php:562
|
4411 |
+
#: app/features/mec/notifications.php:624
|
4412 |
msgid "Email Content"
|
4413 |
msgstr "Email Inhalt"
|
4414 |
|
4415 |
+
#: app/features/mec/notifications.php:259
|
4416 |
+
#: app/features/mec/notifications.php:312
|
4417 |
+
#: app/features/mec/notifications.php:364
|
4418 |
+
#: app/features/mec/notifications.php:435
|
4419 |
+
#: app/features/mec/notifications.php:495
|
4420 |
+
#: app/features/mec/notifications.php:565
|
4421 |
+
#: app/features/mec/notifications.php:627
|
4422 |
msgid "You can use following placeholders"
|
4423 |
msgstr "Sie können die folgenden Platzhalter wählen"
|
4424 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4425 |
#: app/features/mec/notifications.php:261
|
4426 |
#: app/features/mec/notifications.php:314
|
4427 |
#: app/features/mec/notifications.php:366
|
4428 |
#: app/features/mec/notifications.php:437
|
4429 |
#: app/features/mec/notifications.php:497
|
4430 |
#: app/features/mec/notifications.php:567
|
4431 |
+
msgid "First name of attendee"
|
4432 |
+
msgstr "Vorname des Teilnehmers"
|
4433 |
|
4434 |
#: app/features/mec/notifications.php:262
|
4435 |
#: app/features/mec/notifications.php:315
|
4437 |
#: app/features/mec/notifications.php:438
|
4438 |
#: app/features/mec/notifications.php:498
|
4439 |
#: app/features/mec/notifications.php:568
|
4440 |
+
msgid "Last name of attendee"
|
4441 |
+
msgstr "Nachname des Teilnehmers"
|
4442 |
|
4443 |
#: app/features/mec/notifications.php:263
|
4444 |
#: app/features/mec/notifications.php:316
|
4446 |
#: app/features/mec/notifications.php:439
|
4447 |
#: app/features/mec/notifications.php:499
|
4448 |
#: app/features/mec/notifications.php:569
|
4449 |
+
msgid "Email of attendee"
|
4450 |
+
msgstr "Email des Teilnehmers"
|
4451 |
|
4452 |
#: app/features/mec/notifications.php:264
|
4453 |
#: app/features/mec/notifications.php:317
|
4455 |
#: app/features/mec/notifications.php:440
|
4456 |
#: app/features/mec/notifications.php:500
|
4457 |
#: app/features/mec/notifications.php:570
|
4458 |
+
msgid "Booked date of event"
|
|
|
|
|
4459 |
msgstr "Gebuchtes Datum der Veranstaltung"
|
4460 |
|
4461 |
#: app/features/mec/notifications.php:265
|
4464 |
#: app/features/mec/notifications.php:441
|
4465 |
#: app/features/mec/notifications.php:501
|
4466 |
#: app/features/mec/notifications.php:571
|
4467 |
+
#, fuzzy
|
4468 |
+
#| msgid "Booked date of event"
|
4469 |
+
msgid "Booked time of event"
|
4470 |
+
msgstr "Gebuchtes Datum der Veranstaltung"
|
4471 |
|
4472 |
#: app/features/mec/notifications.php:266
|
4473 |
#: app/features/mec/notifications.php:319
|
4475 |
#: app/features/mec/notifications.php:442
|
4476 |
#: app/features/mec/notifications.php:502
|
4477 |
#: app/features/mec/notifications.php:572
|
4478 |
+
msgid "Booking Price"
|
4479 |
+
msgstr "Buchungspreis"
|
|
|
4480 |
|
4481 |
#: app/features/mec/notifications.php:267
|
4482 |
#: app/features/mec/notifications.php:320
|
4485 |
#: app/features/mec/notifications.php:503
|
4486 |
#: app/features/mec/notifications.php:573
|
4487 |
#: app/features/mec/notifications.php:633
|
4488 |
+
msgid "Your website title"
|
4489 |
+
msgstr "Titel Ihrer Webseite"
|
4490 |
|
4491 |
#: app/features/mec/notifications.php:268
|
4492 |
#: app/features/mec/notifications.php:321
|
4495 |
#: app/features/mec/notifications.php:504
|
4496 |
#: app/features/mec/notifications.php:574
|
4497 |
#: app/features/mec/notifications.php:634
|
4498 |
+
msgid "Your website URL"
|
4499 |
+
msgstr "URL Ihrer Webseite"
|
4500 |
|
4501 |
#: app/features/mec/notifications.php:269
|
4502 |
#: app/features/mec/notifications.php:322
|
4504 |
#: app/features/mec/notifications.php:445
|
4505 |
#: app/features/mec/notifications.php:505
|
4506 |
#: app/features/mec/notifications.php:575
|
4507 |
+
#: app/features/mec/notifications.php:635
|
4508 |
+
msgid "Your website description"
|
4509 |
+
msgstr "Beschreibung Ihrer Webseite"
|
4510 |
|
4511 |
#: app/features/mec/notifications.php:270
|
4512 |
#: app/features/mec/notifications.php:323
|
4514 |
#: app/features/mec/notifications.php:446
|
4515 |
#: app/features/mec/notifications.php:506
|
4516 |
#: app/features/mec/notifications.php:576
|
4517 |
+
msgid "Event title"
|
4518 |
+
msgstr "Titel der Veranstaltung"
|
|
|
|
|
4519 |
|
4520 |
#: app/features/mec/notifications.php:271
|
4521 |
#: app/features/mec/notifications.php:324
|
4524 |
#: app/features/mec/notifications.php:507
|
4525 |
#: app/features/mec/notifications.php:577
|
4526 |
#, fuzzy
|
4527 |
+
#| msgid "Event Link"
|
4528 |
+
msgid "Event link"
|
4529 |
+
msgstr "Veranstaltungslink"
|
4530 |
|
4531 |
#: app/features/mec/notifications.php:272
|
4532 |
#: app/features/mec/notifications.php:325
|
4534 |
#: app/features/mec/notifications.php:448
|
4535 |
#: app/features/mec/notifications.php:508
|
4536 |
#: app/features/mec/notifications.php:578
|
4537 |
+
#, fuzzy
|
4538 |
+
#| msgid "Organizer name of booked event"
|
4539 |
+
msgid "Speaker name of booked event"
|
4540 |
msgstr "Name des Veranstalters des gebuchten Events"
|
4541 |
|
4542 |
#: app/features/mec/notifications.php:273
|
4545 |
#: app/features/mec/notifications.php:449
|
4546 |
#: app/features/mec/notifications.php:509
|
4547 |
#: app/features/mec/notifications.php:579
|
4548 |
+
msgid "Organizer name of booked event"
|
4549 |
+
msgstr "Name des Veranstalters des gebuchten Events"
|
4550 |
|
4551 |
#: app/features/mec/notifications.php:274
|
4552 |
#: app/features/mec/notifications.php:327
|
4554 |
#: app/features/mec/notifications.php:450
|
4555 |
#: app/features/mec/notifications.php:510
|
4556 |
#: app/features/mec/notifications.php:580
|
4557 |
+
msgid "Organizer tel of booked event"
|
4558 |
+
msgstr "Tel des Veranstalters"
|
4559 |
|
4560 |
#: app/features/mec/notifications.php:275
|
4561 |
#: app/features/mec/notifications.php:328
|
4563 |
#: app/features/mec/notifications.php:451
|
4564 |
#: app/features/mec/notifications.php:511
|
4565 |
#: app/features/mec/notifications.php:581
|
4566 |
+
msgid "Organizer email of booked event"
|
4567 |
+
msgstr "Email des Veranstalters des gebuchten events"
|
4568 |
|
4569 |
#: app/features/mec/notifications.php:276
|
4570 |
#: app/features/mec/notifications.php:329
|
4572 |
#: app/features/mec/notifications.php:452
|
4573 |
#: app/features/mec/notifications.php:512
|
4574 |
#: app/features/mec/notifications.php:582
|
4575 |
+
msgid "Location name of booked event"
|
4576 |
+
msgstr "Veranstaltungsort"
|
4577 |
+
|
4578 |
+
#: app/features/mec/notifications.php:277
|
4579 |
+
#: app/features/mec/notifications.php:330
|
4580 |
+
#: app/features/mec/notifications.php:382
|
4581 |
+
#: app/features/mec/notifications.php:453
|
4582 |
+
#: app/features/mec/notifications.php:513
|
4583 |
+
#: app/features/mec/notifications.php:583
|
4584 |
msgid "Location address of booked event"
|
4585 |
msgstr "Adresse der gebuchten Veranstaltung"
|
4586 |
|
4587 |
+
#: app/features/mec/notifications.php:278
|
4588 |
+
#: app/features/mec/notifications.php:455
|
4589 |
+
#: app/features/mec/notifications.php:515
|
4590 |
msgid "Full Attendee info such as booking form data, name, email etc."
|
4591 |
msgstr ""
|
4592 |
"Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
|
4593 |
"Name, email, etc."
|
4594 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4595 |
#: app/features/mec/notifications.php:279
|
|
|
4596 |
#: app/features/mec/notifications.php:384
|
|
|
|
|
4597 |
#: app/features/mec/notifications.php:585
|
4598 |
+
msgid "Invoice Link"
|
4599 |
+
msgstr "Rechnungslink"
|
4600 |
|
4601 |
#: app/features/mec/notifications.php:280
|
4602 |
#: app/features/mec/notifications.php:332
|
4603 |
#: app/features/mec/notifications.php:385
|
4604 |
+
#: app/features/mec/notifications.php:456
|
4605 |
+
#: app/features/mec/notifications.php:516
|
4606 |
#: app/features/mec/notifications.php:586
|
4607 |
+
msgid "Total Attendees"
|
4608 |
+
msgstr ""
|
|
|
|
|
4609 |
|
4610 |
#: app/features/mec/notifications.php:281
|
4611 |
#: app/features/mec/notifications.php:333
|
4613 |
#: app/features/mec/notifications.php:587
|
4614 |
#, fuzzy
|
4615 |
#| msgid "Ticket Name"
|
4616 |
+
msgid "Ticket name"
|
4617 |
msgstr "Ticket Name"
|
4618 |
|
4619 |
#: app/features/mec/notifications.php:282
|
4621 |
#: app/features/mec/notifications.php:387
|
4622 |
#: app/features/mec/notifications.php:588
|
4623 |
#, fuzzy
|
4624 |
+
#| msgid "Ticket Name"
|
4625 |
+
msgid "Ticket time"
|
4626 |
+
msgstr "Ticket Name"
|
4627 |
+
|
4628 |
+
#: app/features/mec/notifications.php:283
|
4629 |
+
#: app/features/mec/notifications.php:335
|
4630 |
+
#: app/features/mec/notifications.php:388
|
4631 |
+
#: app/features/mec/notifications.php:589
|
4632 |
+
#, fuzzy
|
4633 |
#| msgid "Download Invoice"
|
4634 |
msgid "Download ICS file"
|
4635 |
msgstr "Download Rechnung\n"
|
4636 |
|
4637 |
+
#: app/features/mec/notifications.php:292
|
4638 |
msgid "It sends to attendee email for verifying their booking/email."
|
4639 |
msgstr ""
|
4640 |
"Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
|
4641 |
"verifizieren."
|
4642 |
|
4643 |
+
#: app/features/mec/notifications.php:331
|
4644 |
msgid "Email/Booking verification link."
|
4645 |
msgstr "Bestätigungslink für Email/Buchung"
|
4646 |
|
4647 |
+
#: app/features/mec/notifications.php:344
|
4648 |
msgid "It sends to attendee after confirming the booking by admin."
|
4649 |
msgstr ""
|
4650 |
"Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
|
4651 |
|
4652 |
+
#: app/features/mec/notifications.php:383
|
4653 |
+
#: app/features/mec/notifications.php:584
|
4654 |
msgid "Booking cancellation link."
|
4655 |
msgstr "Link zur Stornierung der Buchung"
|
4656 |
|
4657 |
+
#: app/features/mec/notifications.php:399
|
4658 |
#, fuzzy
|
4659 |
#| msgid "Enable new event notification"
|
4660 |
msgid "Enable cancellation notification"
|
4661 |
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
4662 |
|
4663 |
+
#: app/features/mec/notifications.php:403
|
4664 |
#, fuzzy
|
4665 |
#| msgid "It sends to attendee after booking for notifying him/her."
|
4666 |
msgid ""
|
4670 |
"Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
|
4671 |
"benachrichtigen."
|
4672 |
|
4673 |
+
#: app/features/mec/notifications.php:421
|
4674 |
#, fuzzy
|
4675 |
#| msgid "Send the email to event organizer"
|
4676 |
msgid "Send the email to admin"
|
4677 |
msgstr "Sendet das Email zum Event Organisator"
|
4678 |
|
4679 |
+
#: app/features/mec/notifications.php:429
|
4680 |
#, fuzzy
|
4681 |
#| msgid "Send the email to event organizer"
|
4682 |
msgid "Send the email to booking user"
|
4683 |
msgstr "Sendet das Email zum Event Organisator"
|
4684 |
|
4685 |
+
#: app/features/mec/notifications.php:454
|
4686 |
+
#: app/features/mec/notifications.php:514
|
4687 |
msgid "Admin booking management link."
|
4688 |
msgstr "Admin-link zur Buchungsverwaltung"
|
4689 |
|
4690 |
+
#: app/features/mec/notifications.php:467
|
4691 |
#, fuzzy
|
4692 |
#| msgid "Enable booking notification"
|
4693 |
msgid "Enable admin notification"
|
4694 |
msgstr "Buchungsbenachrichtigung aktivieren"
|
4695 |
|
4696 |
+
#: app/features/mec/notifications.php:471
|
4697 |
msgid "It sends to admin to notify him/her that a new booking received."
|
4698 |
msgstr ""
|
4699 |
"Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
|
4700 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
4701 |
|
4702 |
+
#: app/features/mec/notifications.php:527
|
4703 |
msgid "Enable booking reminder notification"
|
4704 |
msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
|
4705 |
|
4706 |
+
#: app/features/mec/notifications.php:533
|
4707 |
#, php-format
|
4708 |
msgid ""
|
4709 |
"Set a cronjob to call %s file once per day otherwise it won't send the "
|
4715 |
"Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
|
4716 |
"gesendet werden."
|
4717 |
|
4718 |
+
#: app/features/mec/notifications.php:533
|
4719 |
msgid "only once per day"
|
4720 |
msgstr "nur einmal pro Tag"
|
4721 |
|
4722 |
+
#: app/features/mec/notifications.php:551
|
4723 |
msgid "Days"
|
4724 |
msgstr "Tage"
|
4725 |
|
4726 |
+
#: app/features/mec/notifications.php:603
|
4727 |
msgid "Enable new event notification"
|
4728 |
msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
|
4729 |
|
4730 |
+
#: app/features/mec/notifications.php:607
|
4731 |
msgid ""
|
4732 |
"It sends after adding a new event from frontend event submission or from "
|
4733 |
"website backend."
|
4735 |
"Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
|
4736 |
"Übermittlung oder dem Backend versandt."
|
4737 |
|
4738 |
+
#: app/features/mec/notifications.php:629
|
4739 |
msgid "Title of event"
|
4740 |
msgstr "Titel der Veranstaltung"
|
4741 |
|
4742 |
+
#: app/features/mec/notifications.php:630
|
4743 |
#, fuzzy
|
4744 |
#| msgid "Title of event"
|
4745 |
msgid "Link of event"
|
4746 |
msgstr "Titel der Veranstaltung"
|
4747 |
|
4748 |
+
#: app/features/mec/notifications.php:631
|
4749 |
msgid "Status of event"
|
4750 |
msgstr "Status der Veranstaltung"
|
4751 |
|
4752 |
+
#: app/features/mec/notifications.php:632 app/features/mec/settings.php:846
|
4753 |
+
#: app/features/mec/settings.php:850
|
4754 |
msgid "Event Note"
|
4755 |
msgstr "Veranstaltungsnotiz"
|
4756 |
|
4757 |
+
#: app/features/mec/notifications.php:636
|
4758 |
msgid "Admin events management link."
|
4759 |
msgstr "Admin-link zur Veranstaltungsverwaltung"
|
4760 |
|
4761 |
+
#: app/features/mec/settings.php:262 app/features/mec/settings.php:272
|
4762 |
msgid "Hide Events"
|
4763 |
msgstr "Events verbergen"
|
4764 |
|
4765 |
+
#: app/features/mec/settings.php:265
|
4766 |
msgid "On Event Start"
|
4767 |
msgstr "Am Event Start"
|
4768 |
|
4769 |
+
#: app/features/mec/settings.php:266
|
4770 |
msgid "+1 Hour after start"
|
4771 |
msgstr "+1 Stunde nach dem Start"
|
4772 |
|
4773 |
+
#: app/features/mec/settings.php:267
|
4774 |
msgid "+2 Hours after start"
|
4775 |
msgstr "+2 Stunden nach dem Start"
|
4776 |
|
4777 |
+
#: app/features/mec/settings.php:268
|
4778 |
msgid "On Event End"
|
4779 |
msgstr "Am Event Ende"
|
4780 |
|
4781 |
+
#: app/features/mec/settings.php:273
|
4782 |
msgid ""
|
4783 |
"This option is for showing start/end time of events on frontend of website."
|
4784 |
msgstr ""
|
4785 |
"Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
|
4786 |
"anzuzeigen"
|
4787 |
|
4788 |
+
#: app/features/mec/settings.php:282 app/features/mec/settings.php:291
|
4789 |
msgid "Multiple Day Events"
|
4790 |
msgstr "Mehrtagesveranstaltung"
|
4791 |
|
4792 |
+
#: app/features/mec/settings.php:285
|
4793 |
msgid "Show only first day on List/Grid/Slider skins"
|
4794 |
msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
|
4795 |
|
4796 |
+
#: app/features/mec/settings.php:286
|
4797 |
msgid "Show only first day on all skins"
|
4798 |
msgstr "Nur den ersten Tag in allen Ansichten zeigen"
|
4799 |
|
4800 |
+
#: app/features/mec/settings.php:287
|
4801 |
msgid "Show all days"
|
4802 |
msgstr "Alle Tage anzeigen"
|
4803 |
|
4804 |
+
#: app/features/mec/settings.php:292
|
4805 |
msgid ""
|
4806 |
"For showing all days of multiple day events on frontend or only show the "
|
4807 |
"first day."
|
4809 |
"Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
|
4810 |
"den ersten Tag anzeigen"
|
4811 |
|
4812 |
+
#: app/features/mec/settings.php:301
|
4813 |
msgid "Remove MEC Data on Plugin Uninstall"
|
4814 |
msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
|
4815 |
|
4816 |
+
#: app/features/mec/settings.php:305
|
4817 |
msgid "Enabled"
|
4818 |
msgstr "Aktiviert"
|
4819 |
|
4820 |
+
#: app/features/mec/settings.php:311
|
4821 |
msgid "Exclude Date Suffix"
|
4822 |
msgstr "Ausschlussdatum Suffix"
|
4823 |
|
4824 |
+
#: app/features/mec/settings.php:314
|
4825 |
msgid "Remove suffix from calendars"
|
4826 |
msgstr "Suffix aus den Kalendern entfernen"
|
4827 |
|
4828 |
+
#: app/features/mec/settings.php:318
|
4829 |
#, fuzzy
|
4830 |
#| msgid "Remove suffix from calendars"
|
4831 |
msgid "Remove \"Th\" on calendar"
|
4832 |
msgstr "Suffix aus den Kalendern entfernen"
|
4833 |
|
4834 |
+
#: app/features/mec/settings.php:319
|
4835 |
msgid ""
|
4836 |
"Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
|
4837 |
"showing just '12' )"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
+
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4841 |
+
#: app/libraries/main.php:4508
|
4842 |
msgid "Weekdays"
|
4843 |
msgstr "Wochentage"
|
4844 |
|
4845 |
+
#: app/features/mec/settings.php:339
|
4846 |
#, fuzzy
|
4847 |
#| msgid ""
|
4848 |
#| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
|
4855 |
"Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
|
4856 |
"Donnerstag und Freitag gesetzt."
|
4857 |
|
4858 |
+
#: app/features/mec/settings.php:349 app/features/mec/settings.php:359
|
4859 |
msgid "Weekends"
|
4860 |
msgstr "Wochenenden"
|
4861 |
|
4862 |
+
#: app/features/mec/settings.php:360
|
4863 |
msgid ""
|
4864 |
"Proceed with caution. Default is set to Saturday and Sunday ( you can change "
|
4865 |
"'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
|
4866 |
"page )."
|
4867 |
msgstr ""
|
4868 |
|
4869 |
+
#: app/features/mec/settings.php:374 app/features/mec/settings.php:379
|
4870 |
msgid "Archive Page Title"
|
4871 |
msgstr "Titel der Archivseite"
|
4872 |
|
4873 |
+
#: app/features/mec/settings.php:380
|
4874 |
#, fuzzy
|
4875 |
#| msgid "Default value is Events"
|
4876 |
msgid "Default value is Events - It's title of the page"
|
4877 |
msgstr "Der Standardwert ist Ereignisse (Events)"
|
4878 |
|
4879 |
+
#: app/features/mec/settings.php:388 app/features/mec/settings.php:456
|
4880 |
msgid "Archive Page Skin"
|
4881 |
msgstr "Skin Seite Archiv"
|
4882 |
|
4883 |
+
#: app/features/mec/settings.php:396
|
4884 |
#, fuzzy
|
4885 |
#| msgid "Edit shortcodes"
|
4886 |
msgid "Put shortcode..."
|
4887 |
msgstr "Shortcode ändern"
|
4888 |
|
4889 |
+
#: app/features/mec/settings.php:399 app/features/mec/settings.php:414
|
4890 |
+
#: app/features/mec/settings.php:417 app/features/mec/settings.php:426
|
4891 |
+
#: app/features/mec/settings.php:452 app/features/mec/settings.php:473
|
4892 |
+
#: app/features/mec/settings.php:488 app/features/mec/settings.php:491
|
4893 |
+
#: app/features/mec/settings.php:500 app/features/mec/settings.php:526
|
4894 |
#, fuzzy
|
4895 |
#| msgid "The event is ongoing."
|
4896 |
msgid "There is no skins"
|
4897 |
msgstr "Die Veranstaltung ist im Gange."
|
4898 |
|
4899 |
+
#: app/features/mec/settings.php:402 app/features/mec/settings.php:476
|
4900 |
+
#: app/features/mec/single.php:255
|
4901 |
msgid "Modern Style"
|
4902 |
msgstr "Moderner Stil"
|
4903 |
|
4904 |
+
#: app/features/mec/settings.php:444 app/features/mec/settings.php:518
|
4905 |
#, fuzzy
|
4906 |
#| msgid "Colorful"
|
4907 |
msgid "colorful"
|
4908 |
msgstr "Farbenfroh"
|
4909 |
|
4910 |
+
#: app/features/mec/settings.php:449 app/features/mec/settings.php:523
|
4911 |
#, fuzzy
|
4912 |
#| msgid "Plain Style"
|
4913 |
msgid "Clean Style"
|
4914 |
msgstr "Einfacher schlichter Stil"
|
4915 |
|
4916 |
+
#: app/features/mec/settings.php:457
|
4917 |
#, fuzzy
|
4918 |
#| msgid "Default value is Calendar/Monthly View"
|
4919 |
msgid "Default value is Calendar/Monthly View, But you can change it "
|
4920 |
msgstr "Der Standardwert ist Kalender / Monatsansicht"
|
4921 |
|
4922 |
+
#: app/features/mec/settings.php:457 app/features/mec/settings.php:531
|
4923 |
msgid "See Demo"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
+
#: app/features/mec/settings.php:465 app/features/mec/settings.php:530
|
4927 |
msgid "Category Page Skin"
|
4928 |
msgstr "Kategorie Seiten Skin"
|
4929 |
|
4930 |
+
#: app/features/mec/settings.php:531
|
4931 |
msgid ""
|
4932 |
"Default value is List View - But you can change it Set a skin for all "
|
4933 |
"categories."
|
4934 |
msgstr ""
|
4935 |
|
4936 |
+
#: app/features/mec/settings.php:539 app/features/mec/settings.php:547
|
4937 |
msgid "Category Events Method"
|
4938 |
msgstr ""
|
4939 |
|
4940 |
+
#: app/features/mec/settings.php:543
|
4941 |
msgid "Expired Events"
|
4942 |
msgstr ""
|
4943 |
|
4944 |
+
#: app/features/mec/settings.php:548
|
4945 |
msgid "Default value is Upcoming Events"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
+
#: app/features/mec/settings.php:556 app/features/mec/settings.php:564
|
4949 |
msgid "Events Archive Status"
|
4950 |
msgstr "Events Archiv Status"
|
4951 |
|
4952 |
+
#: app/features/mec/settings.php:559
|
4953 |
msgid "Enabled (Recommended)"
|
4954 |
msgstr "Ist aktiviert (empfohlen)"
|
4955 |
|
4956 |
+
#: app/features/mec/settings.php:565
|
4957 |
msgid ""
|
4958 |
"If you disable it, then you should create a page as archive page of MEC. "
|
4959 |
"Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
|
4963 |
"erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
|
4964 |
"werden alle MEC-Rewrite-Regeln deaktiviert."
|
4965 |
|
4966 |
+
#: app/features/mec/settings.php:578 app/features/mec/settings.php:583
|
4967 |
msgid "Main Slug"
|
4968 |
msgstr "Main Slug"
|
4969 |
|
4970 |
+
#: app/features/mec/settings.php:584
|
4971 |
msgid ""
|
4972 |
"Default value is events. You can not have a page with this name. MEC allows "
|
4973 |
"you to create custom URLs for the permalinks and archives to enhance the "
|
4974 |
"applicability and forward-compatibility of the links."
|
4975 |
msgstr ""
|
4976 |
|
4977 |
+
#: app/features/mec/settings.php:588 app/features/mec/settings.php:602
|
4978 |
#, fuzzy
|
4979 |
#| msgid ""
|
4980 |
#| "Default value is events. Valid characters are lowercase a-z, - character "
|
4984 |
"Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
|
4985 |
"und Zahlen."
|
4986 |
|
4987 |
+
#: app/features/mec/settings.php:592 app/features/mec/settings.php:597
|
4988 |
msgid "Category Slug"
|
4989 |
msgstr "Category Slug"
|
4990 |
|
4991 |
+
#: app/features/mec/settings.php:598
|
4992 |
#, fuzzy
|
4993 |
#| msgid ""
|
4994 |
#| "It's slug of MEC categories, you can change it to events-cat or something "
|
5004 |
"für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
|
5005 |
"category"
|
5006 |
|
5007 |
+
#: app/features/mec/settings.php:610
|
5008 |
msgid "Currency"
|
5009 |
msgstr "Währung"
|
5010 |
|
5011 |
+
#: app/features/mec/settings.php:620 app/features/mec/settings.php:625
|
5012 |
msgid "Currency Sign"
|
5013 |
msgstr "Währungssymbol"
|
5014 |
|
5015 |
+
#: app/features/mec/settings.php:626
|
5016 |
msgid "Default value will be \"currency\" if you leave it empty."
|
5017 |
msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
|
5018 |
|
5019 |
+
#: app/features/mec/settings.php:633
|
5020 |
msgid "Currency Position"
|
5021 |
msgstr "Position des Währungssymbols"
|
5022 |
|
5023 |
+
#: app/features/mec/settings.php:636
|
5024 |
msgid "Before $10"
|
5025 |
msgstr "Vor $10"
|
5026 |
|
5027 |
+
#: app/features/mec/settings.php:637
|
5028 |
msgid "After 10$"
|
5029 |
msgstr "Nach 10$"
|
5030 |
|
5031 |
+
#: app/features/mec/settings.php:642
|
5032 |
msgid "Thousand Separator"
|
5033 |
msgstr "Tausendertrennzeichen"
|
5034 |
|
5035 |
+
#: app/features/mec/settings.php:648
|
5036 |
msgid "Decimal Separator"
|
5037 |
msgstr "Dezimaltrennzeichen"
|
5038 |
|
5039 |
+
#: app/features/mec/settings.php:658
|
5040 |
msgid "No decimal"
|
5041 |
msgstr "Keine Dezimale"
|
5042 |
|
5043 |
+
#: app/features/mec/settings.php:669
|
5044 |
msgid "Enable Google Recaptcha"
|
5045 |
msgstr "Google Recaptcha aktivieren"
|
5046 |
|
5047 |
+
#: app/features/mec/settings.php:676
|
5048 |
msgid "Enable on booking form"
|
5049 |
msgstr "Auf dem Buchungsformular aktivieren"
|
5050 |
|
5051 |
+
#: app/features/mec/settings.php:682
|
5052 |
#, fuzzy
|
5053 |
#| msgid "Enable on \"Frontend Event Submittion\" form"
|
5054 |
msgid "Enable on \"Frontend Event Submission\" form"
|
5055 |
msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
|
5056 |
|
5057 |
+
#: app/features/mec/settings.php:686
|
5058 |
msgid "Site Key"
|
5059 |
msgstr "Site Key (Seitenschlüssel)"
|
5060 |
|
5061 |
+
#: app/features/mec/settings.php:692
|
5062 |
msgid "Secret Key"
|
5063 |
msgstr "Geheimschlüssel"
|
5064 |
|
5065 |
+
#: app/features/mec/settings.php:704 app/features/mec/settings.php:712
|
5066 |
msgid "Time Format"
|
5067 |
msgstr "Zeitformat"
|
5068 |
|
5069 |
+
#: app/features/mec/settings.php:707
|
5070 |
msgid "12 hours format with AM/PM"
|
5071 |
msgstr "12-Stunden-Format mit AM/FM"
|
5072 |
|
5073 |
+
#: app/features/mec/settings.php:708
|
5074 |
msgid "24 hours format"
|
5075 |
msgstr "24-Stunden-Format"
|
5076 |
|
5077 |
+
#: app/features/mec/settings.php:713
|
5078 |
msgid "This option, affects the selection of Start/End time."
|
5079 |
msgstr ""
|
5080 |
|
5081 |
+
#: app/features/mec/settings.php:721
|
5082 |
msgid "Events List Page"
|
5083 |
msgstr "Seite Liste der Veranstaltungen"
|
5084 |
|
5085 |
+
#: app/features/mec/settings.php:730 app/features/mec/settings.php:742
|
5086 |
#, php-format
|
5087 |
msgid "Put %s shortcode into the page."
|
5088 |
msgstr "%s shortcode in die Seite einfügen"
|
5089 |
|
5090 |
+
#: app/features/mec/settings.php:733
|
5091 |
msgid "Add/Edit Events Page"
|
5092 |
msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
|
5093 |
|
5094 |
+
#: app/features/mec/settings.php:747
|
5095 |
msgid "Enable event submission by guest (Not logged-in) users"
|
5096 |
msgstr ""
|
5097 |
"Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
|
5098 |
"erlauben"
|
5099 |
|
5100 |
+
#: app/features/mec/settings.php:754
|
5101 |
msgid "Enable mandatory email and name for guest user"
|
5102 |
msgstr ""
|
5103 |
"Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
|
5104 |
|
5105 |
+
#: app/features/mec/settings.php:758
|
5106 |
msgid "Frontend Event Submission Sections"
|
5107 |
msgstr "Frontend Veranstaltungen Einreichung Sektionen"
|
5108 |
|
5109 |
+
#: app/features/mec/settings.php:780 app/widgets/single.php:119
|
5110 |
msgid "Event Categories"
|
5111 |
msgstr "Veranstaltungskategorien"
|
5112 |
|
5113 |
+
#: app/features/mec/settings.php:786
|
5114 |
msgid "Event Labels"
|
5115 |
msgstr "Event Labels"
|
5116 |
|
5117 |
+
#: app/features/mec/settings.php:798
|
5118 |
msgid "Event Tags"
|
5119 |
msgstr "Event Schlagworte"
|
5120 |
|
5121 |
+
#: app/features/mec/settings.php:810 app/widgets/single.php:123
|
5122 |
msgid "Event Organizer"
|
5123 |
msgstr "Veranstaltungsmanager"
|
5124 |
|
5125 |
+
#: app/features/mec/settings.php:828
|
5126 |
msgid "Booking Options"
|
5127 |
msgstr "Buchungsoptionen"
|
5128 |
|
5129 |
+
#: app/features/mec/settings.php:834
|
5130 |
#, fuzzy
|
5131 |
#| msgid "Fees/Taxes Options"
|
5132 |
msgid "Fees / Taxes Options"
|
5133 |
msgstr "Gebühren/Steuer Optionen"
|
5134 |
|
5135 |
+
#: app/features/mec/settings.php:851
|
5136 |
#, php-format
|
5137 |
msgid ""
|
5138 |
"Users can put a note for editors while they're submitting the event. Also "
|
5144 |
"Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
|
5145 |
"erhalten."
|
5146 |
|
5147 |
+
#: app/features/mec/settings.php:858 app/features/mec/settings.php:867
|
5148 |
msgid "Visibility of Note"
|
5149 |
msgstr "Sichtbarkeit der Anmerkungen zum Event "
|
5150 |
|
5151 |
+
#: app/features/mec/settings.php:861
|
5152 |
msgid "Always"
|
5153 |
msgstr "Immer"
|
5154 |
|
5155 |
+
#: app/features/mec/settings.php:862
|
5156 |
msgid "While event is not published"
|
5157 |
msgstr "Das Ereignis wird nicht veröffentlicht"
|
5158 |
|
5159 |
+
#: app/features/mec/settings.php:868
|
5160 |
msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
|
5161 |
msgstr ""
|
5162 |
"Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
|
5163 |
"Ereignis im Backend bearbeitet."
|
5164 |
|
5165 |
+
#: app/features/mec/settings.php:879
|
5166 |
#, php-format
|
5167 |
msgid ""
|
5168 |
"Put %s shortcode into your desired page. Then users are able to see history "
|
5169 |
"of their bookings."
|
5170 |
msgstr ""
|
5171 |
|
5172 |
+
#: app/features/mec/settings.php:886
|
5173 |
#, php-format
|
5174 |
msgid ""
|
5175 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: app/features/mec/settings.php:928
|
5179 |
msgid "Text Field"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: app/features/mec/settings.php:941
|
5183 |
msgid "Enable Mailchimp Integration"
|
5184 |
msgstr "Mailchimp Integration deaktivieren"
|
5185 |
|
5186 |
+
#: app/features/mec/settings.php:959 app/features/mec/settings.php:964
|
5187 |
msgid "List ID"
|
5188 |
msgstr "List ID"
|
5189 |
|
5190 |
+
#: app/features/mec/settings.php:972 app/features/mec/settings.php:980
|
5191 |
msgid "Subscription Status"
|
5192 |
msgstr "Buchungsstatus"
|
5193 |
|
5194 |
+
#: app/features/mec/settings.php:975
|
5195 |
msgid "Subscribe automatically"
|
5196 |
msgstr "automatisch Anmelden/Abonnieren"
|
5197 |
|
5198 |
+
#: app/features/mec/settings.php:976
|
5199 |
msgid "Subscribe by verification"
|
5200 |
msgstr ""
|
5201 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
5202 |
" "
|
5203 |
|
5204 |
+
#: app/features/mec/settings.php:981
|
5205 |
msgid ""
|
5206 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5207 |
"by mailchimp for subscription verification."
|
5209 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
5210 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
5211 |
|
5212 |
+
#: app/features/mec/settings.php:993
|
5213 |
#, fuzzy
|
5214 |
#| msgid "Filter Options"
|
5215 |
msgid "Upload Field Options"
|
5216 |
msgstr "Filteroptionen"
|
5217 |
|
5218 |
+
#: app/features/mec/settings.php:995
|
5219 |
msgid "Mime types"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: app/features/mec/settings.php:999
|
5223 |
msgid "Split mime types with \",\"."
|
5224 |
msgstr ""
|
5225 |
|
5226 |
+
#: app/features/mec/settings.php:999
|
5227 |
msgid "Default: jpeg,jpg,png,pdf"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: app/features/mec/settings.php:1002
|
5231 |
#, fuzzy
|
5232 |
#| msgid "Amount (Per Ticket)"
|
5233 |
msgid "Maximum file size"
|
5234 |
msgstr "Betrag (pro Ticket)"
|
5235 |
|
5236 |
+
#: app/features/mec/settings.php:1006
|
5237 |
msgid "The unit is Megabyte \"MB\""
|
5238 |
msgstr ""
|
5239 |
|
5240 |
+
#: app/features/mec/single.php:222 app/features/mec/single.php:227
|
5241 |
msgid "Single Event Date Format"
|
5242 |
msgstr "Einzelveranstaltung Datumformat"
|
5243 |
|
5244 |
+
#: app/features/mec/single.php:235 app/features/mec/single.php:243
|
5245 |
msgid "Date Method"
|
5246 |
msgstr "Datum Methode"
|
5247 |
|
5248 |
+
#: app/features/mec/single.php:238
|
5249 |
msgid "Next occurrence date"
|
5250 |
msgstr "Nächstes vorkommende Datum"
|
5251 |
|
5252 |
+
#: app/features/mec/single.php:239
|
5253 |
msgid "Referred date"
|
5254 |
msgstr "Gewünschtes Datum"
|
5255 |
|
5256 |
+
#: app/features/mec/single.php:244
|
5257 |
#, fuzzy
|
5258 |
#| msgid ""
|
5259 |
#| "\"Referred date\" shows the event date based on referred date in event "
|
5264 |
"\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
|
5265 |
"Datum in der Eventliste an."
|
5266 |
|
5267 |
+
#: app/features/mec/single.php:251 app/features/mec/single.php:262
|
5268 |
msgid "Single Event Style"
|
5269 |
msgstr "Single Event Stil"
|
5270 |
|
5271 |
+
#: app/features/mec/single.php:254
|
5272 |
msgid "Default Style"
|
5273 |
msgstr "Standardstil voreingestellt"
|
5274 |
|
5275 |
+
#: app/features/mec/single.php:257
|
5276 |
#, fuzzy
|
5277 |
#| msgid "MEC Single Sidebar"
|
5278 |
msgid "Elementor Single Builder"
|
5279 |
msgstr "MEC Single Sidebar"
|
5280 |
|
5281 |
+
#: app/features/mec/single.php:263
|
5282 |
msgid "Choose your single event style."
|
5283 |
msgstr "Wählen Sie Ihren Single Event Stil"
|
5284 |
|
5285 |
+
#: app/features/mec/single.php:271 app/features/mec/single.php:279
|
5286 |
#, fuzzy
|
5287 |
#| msgid "Booking"
|
5288 |
msgid "Booking Style"
|
5289 |
msgstr "Buchung / Reservierung"
|
5290 |
|
5291 |
+
#: app/features/mec/single.php:275
|
5292 |
#, fuzzy
|
5293 |
#| msgid "Modal 1"
|
5294 |
msgid "Modal"
|
5295 |
msgstr "Modal 1"
|
5296 |
|
5297 |
+
#: app/features/mec/single.php:280
|
5298 |
msgid ""
|
5299 |
"Choose your Booking style, Please Note: When you set this feature to modal "
|
5300 |
"you can not see booking box if you set popoup module view on shortcodes"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: app/features/mec/single.php:288
|
5304 |
msgid "Disable Block Editor (Gutenberg)"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
+
#: app/features/mec/single.php:291
|
5308 |
msgid "Disable Block Editor"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
+
#: app/features/mec/single.php:295
|
5312 |
msgid "Block Editor"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
+
#: app/features/mec/single.php:296
|
5316 |
msgid ""
|
5317 |
"If you want to use the new WordPress block editor you should keep this "
|
5318 |
"checkbox unchecked."
|
5319 |
msgstr ""
|
5320 |
|
5321 |
+
#: app/features/mec/single.php:302 app/features/mec/single.php:309
|
5322 |
msgid "Breadcrumbs"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: app/features/mec/single.php:305
|
5326 |
msgid "Enable Breadcrumbs."
|
5327 |
msgstr ""
|
5328 |
|
5329 |
+
#: app/features/mec/single.php:310
|
5330 |
msgid "Check this option, for showing the breadcrumbs on single event page"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
+
#: app/features/mec/single.php:323
|
5334 |
msgid "Show countdown module on event page"
|
5335 |
msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
|
5336 |
|
5337 |
+
#: app/features/mec/single.php:328
|
5338 |
msgid "Countdown Style"
|
5339 |
msgstr "Countdown Stil"
|
5340 |
|
5341 |
+
#: app/features/mec/single.php:331
|
5342 |
msgid "Plain Style"
|
5343 |
msgstr "Einfacher schlichter Stil"
|
5344 |
|
5345 |
+
#: app/features/mec/single.php:332
|
5346 |
msgid "Flip Style"
|
5347 |
msgstr "Flip Stil"
|
5348 |
|
5349 |
+
#: app/features/mec/single.php:340 app/features/mec/single.php:347
|
5350 |
msgid "Exceptional days"
|
5351 |
msgstr "Ausgesuchte ausnehmende Tage"
|
5352 |
|
5353 |
+
#: app/features/mec/single.php:344
|
5354 |
msgid "Show exceptional days option on Add/Edit events page"
|
5355 |
msgstr ""
|
5356 |
"Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
|
5357 |
"(Show exceptional days option on Add/Edit events page)"
|
5358 |
|
5359 |
+
#: app/features/mec/single.php:348
|
5360 |
msgid ""
|
5361 |
"Using this option you can include/exclude certain days to/from event "
|
5362 |
"occurrence dates."
|
5364 |
"Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
|
5365 |
"ausschließen."
|
5366 |
|
5367 |
+
#: app/features/mec/single.php:361
|
5368 |
msgid ""
|
5369 |
"Show additional organizers option on Add/Edit events page and single event "
|
5370 |
"page."
|
5372 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5373 |
"bearbeiten und auf der Seite für einzelne Events an."
|
5374 |
|
5375 |
+
#: app/features/mec/single.php:367
|
5376 |
#, fuzzy
|
5377 |
#| msgid "Additional Organizers"
|
5378 |
msgid "Additional locations"
|
5379 |
msgstr "Zusätzliche Organisatoren"
|
5380 |
|
5381 |
+
#: app/features/mec/single.php:371
|
5382 |
#, fuzzy
|
5383 |
#| msgid ""
|
5384 |
#| "Show additional organizers option on Add/Edit events page and single "
|
5390 |
"Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
|
5391 |
"bearbeiten und auf der Seite für einzelne Events an."
|
5392 |
|
5393 |
+
#: app/features/mec/single.php:381
|
5394 |
+
msgid "Display related events based on taxonomy in single event page."
|
5395 |
+
msgstr ""
|
5396 |
+
|
5397 |
+
#: app/features/mec/single.php:387
|
5398 |
+
#, fuzzy
|
5399 |
+
#| msgid "Taxonomies"
|
5400 |
+
msgid "Select Taxonomies:"
|
5401 |
+
msgstr "Klassifizierung "
|
5402 |
+
|
5403 |
+
#: app/features/mec/styles.php:183
|
5404 |
msgid "Custom Styles"
|
5405 |
msgstr "Benutzerdefinierte Stile"
|
5406 |
|
5407 |
+
#: app/features/mec/styles.php:188
|
5408 |
msgid ""
|
5409 |
"If you're a developer or you have some knowledge about CSS codes, you can "
|
5410 |
"place your desired styles codes here. These codes will be included in your "
|
5415 |
"Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
|
5416 |
"übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
|
5417 |
|
5418 |
+
#: app/features/mec/styling.php:10 app/features/mec/styling.php:313
|
5419 |
+
#: app/features/mec/styling.php:339
|
5420 |
msgid "Default Font"
|
5421 |
msgstr "Standardschriftart des Themas "
|
5422 |
|
5423 |
+
#: app/features/mec/styling.php:205
|
5424 |
msgid "Styling Option"
|
5425 |
msgstr "Style Optionen"
|
5426 |
|
5427 |
+
#: app/features/mec/styling.php:210
|
5428 |
msgid "Color Skin"
|
5429 |
msgstr "Farbe Skin"
|
5430 |
|
5431 |
+
#: app/features/mec/styling.php:213
|
5432 |
msgid "Predefined Color Skin"
|
5433 |
msgstr "Vordefinierte Farbenoberfläche"
|
5434 |
|
5435 |
+
#: app/features/mec/styling.php:256
|
5436 |
msgid "Custom Color Skin"
|
5437 |
msgstr "Benutzerdefinierte Farboberfläche"
|
5438 |
|
5439 |
+
#: app/features/mec/styling.php:262
|
5440 |
msgid ""
|
5441 |
"If you want to select a predefined color skin, you must clear the color of "
|
5442 |
"this item"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
+
#: app/features/mec/styling.php:267
|
5446 |
msgid "Advanced Color Options (shortcodes)"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
+
#: app/features/mec/styling.php:279
|
5450 |
#, fuzzy
|
5451 |
#| msgid "Title of event"
|
5452 |
msgid "Title Hover"
|
5453 |
msgstr "Titel der Veranstaltung"
|
5454 |
|
5455 |
+
#: app/features/mec/styling.php:296
|
5456 |
msgid "Typography"
|
5457 |
msgstr "Typographie"
|
5458 |
|
5459 |
+
#: app/features/mec/styling.php:298
|
5460 |
msgid "Heading (Events Title) Font Family"
|
5461 |
msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
|
5462 |
|
5463 |
+
#: app/features/mec/styling.php:324
|
5464 |
msgid "Paragraph Font Family"
|
5465 |
msgstr "Schriftart Absätze"
|
5466 |
|
5467 |
+
#: app/features/mec/styling.php:351 app/features/mec/styling.php:357
|
5468 |
#, fuzzy
|
5469 |
#| msgid "Enable Google Recaptcha"
|
5470 |
msgid "Disable Google Fonts"
|
5471 |
msgstr "Google Recaptcha aktivieren"
|
5472 |
|
5473 |
+
#: app/features/mec/styling.php:358
|
5474 |
msgid "To be GDPR compliant you may need to disable Google fonts!"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
+
#: app/features/mec/styling.php:367
|
5478 |
msgid "Container Width"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: app/features/mec/styling.php:369 app/features/mec/styling.php:374
|
5482 |
msgid "Desktop Normal Screens"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
+
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
5486 |
msgid "You can enter your theme container size in this field"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: app/features/mec/styling.php:382 app/features/mec/styling.php:387
|
5490 |
msgid "Desktop Large Screens"
|
5491 |
msgstr ""
|
5492 |
|
5897 |
msgid "How to add/manage shortcodes?"
|
5898 |
msgstr "Wie kann man shortcodes hinzufügen / managen?"
|
5899 |
|
5900 |
+
#: app/features/organizers.php:106 app/features/organizers.php:149
|
5901 |
+
#: app/features/speakers.php:181
|
|
|
|
|
|
|
|
|
|
|
|
|
5902 |
msgid "Insert organizer phone number."
|
5903 |
msgstr "Veranstalter Telefonnummer einfügen"
|
5904 |
|
5905 |
+
#: app/features/organizers.php:114 app/features/organizers.php:153
|
5906 |
+
#: app/features/speakers.php:185
|
5907 |
msgid "Insert organizer email address."
|
5908 |
msgstr "Veranstalter Email-Adresse einfügen"
|
5909 |
|
5910 |
+
#: app/features/organizers.php:119 app/features/organizers.php:156
|
5911 |
+
#: app/features/organizers.php:291
|
5912 |
msgid "Link to organizer page"
|
5913 |
msgstr "Link zur Seite des Veranstalters"
|
5914 |
|
5915 |
+
#: app/features/organizers.php:122 app/features/organizers.php:157
|
5916 |
msgid "Use this field to link organizer to other user profile pages"
|
5917 |
msgstr ""
|
5918 |
"Verwenden Sie dieses Feld, um den Organisator mit anderen "
|
5919 |
"Benutzerprofilseiten zu verknüpfen"
|
5920 |
|
5921 |
+
#: app/features/organizers.php:205
|
5922 |
msgid "Contact info"
|
5923 |
msgstr "Kontaktdaten"
|
5924 |
|
5925 |
+
#: app/features/organizers.php:260
|
5926 |
#, php-format
|
5927 |
msgid "Event Main %s"
|
5928 |
msgstr "Hauptevent % s"
|
5929 |
|
5930 |
+
#: app/features/organizers.php:263
|
5931 |
msgid "Hide organizer"
|
5932 |
msgstr "Veranstalter verbergen"
|
5933 |
|
5934 |
+
#: app/features/organizers.php:264
|
5935 |
msgid "Insert a new organizer"
|
5936 |
msgstr "Neuen Veranstalter einfügen"
|
5937 |
|
5938 |
+
#: app/features/organizers.php:272
|
5939 |
msgid "Choose one of saved organizers or insert new one below."
|
5940 |
msgstr ""
|
5941 |
"Wählen Sie einen der gespeicherten Veranstalter aus oder legen Sie einen "
|
5942 |
"neuen Veranstalter an."
|
5943 |
|
5944 |
+
#: app/features/organizers.php:283
|
5945 |
msgid "Phone number."
|
5946 |
msgstr "Telefon"
|
5947 |
|
5948 |
+
#: app/features/organizers.php:284
|
5949 |
msgid "eg. +1 (234) 5678"
|
5950 |
msgstr "z.B. +49 (1234) 56789"
|
5951 |
|
5952 |
+
#: app/features/organizers.php:287
|
5953 |
msgid "Email address."
|
5954 |
msgstr "Mailadresse"
|
5955 |
|
5956 |
+
#: app/features/organizers.php:288
|
5957 |
msgid "eg. john@smith.com"
|
5958 |
msgstr "z.B.. max@mustermann.com"
|
5959 |
|
5960 |
+
#: app/features/organizers.php:292
|
5961 |
#, fuzzy
|
5962 |
#| msgid "http://webnus.net"
|
5963 |
msgid "eg. https://webnus.net"
|
5964 |
msgstr "http://webnus.net"
|
5965 |
|
5966 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4532
|
5967 |
+
#: app/skins/single.php:803
|
5968 |
msgid "Other Organizers"
|
5969 |
msgstr "Andere Veranstalter"
|
5970 |
|
5971 |
+
#: app/features/organizers.php:313
|
5972 |
msgid ""
|
5973 |
"You can select extra organizers in addition to main organizer if you like."
|
5974 |
msgstr ""
|
5985 |
msgid "#"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2588
|
5989 |
msgid "Status"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
+
#: app/features/profile/profile.php:37 app/libraries/main.php:1724
|
5993 |
msgid "Attendees"
|
5994 |
msgstr "Teilnehmer"
|
5995 |
|
6004 |
msgid "<i class=\"mec-sl-eye\"></i> %s"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
+
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
6008 |
+
#: app/libraries/main.php:4530
|
6009 |
msgid "Ticket"
|
6010 |
msgstr "Ticket"
|
6011 |
|
6019 |
msgid "No bookings found!"
|
6020 |
msgstr "Keine Buchungen gefunden"
|
6021 |
|
6022 |
+
#: app/features/search_bar/search_bar.php:28
|
6023 |
+
#, fuzzy
|
6024 |
+
#| msgid "Search %s"
|
6025 |
+
msgid "Search"
|
6026 |
+
msgstr "Suche %s"
|
6027 |
+
|
6028 |
+
#: app/features/speakers.php:108 app/features/speakers.php:176
|
6029 |
+
#: app/features/speakers.php:248
|
6030 |
#, fuzzy
|
6031 |
#| msgid "Title"
|
6032 |
msgid "Job Title"
|
6033 |
msgstr "Titel"
|
6034 |
|
6035 |
+
#: app/features/speakers.php:111 app/features/speakers.php:177
|
6036 |
msgid "Insert speaker job title."
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: app/features/speakers.php:119
|
6040 |
#, fuzzy
|
6041 |
#| msgid "Insert organizer phone number."
|
6042 |
msgid "Insert speaker phone number."
|
6043 |
msgstr "Veranstalter Telefonnummer einfügen"
|
6044 |
|
6045 |
+
#: app/features/speakers.php:127
|
6046 |
#, fuzzy
|
6047 |
#| msgid "Insert organizer email address."
|
6048 |
msgid "Insert speaker email address."
|
6049 |
msgstr "Veranstalter Email-Adresse einfügen"
|
6050 |
|
6051 |
+
#: app/features/speakers.php:132 app/features/speakers.php:188
|
6052 |
#, fuzzy
|
6053 |
#| msgid "Facebook Page Link"
|
6054 |
msgid "Facebook Page"
|
6055 |
msgstr "Facebook Seiten Link"
|
6056 |
|
6057 |
+
#: app/features/speakers.php:135 app/features/speakers.php:189
|
6058 |
#, fuzzy
|
6059 |
#| msgid "Import from Facebook Calendar"
|
6060 |
msgid "Insert URL of Facebook Page"
|
6061 |
msgstr "Vom Facebook Kalender Importieren"
|
6062 |
|
6063 |
+
#: app/features/speakers.php:140 app/features/speakers.php:192
|
6064 |
msgid "Instagram"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: app/features/speakers.php:143 app/features/speakers.php:193
|
6068 |
#, fuzzy
|
6069 |
#| msgid "Insert -1 for unlimited usage"
|
6070 |
msgid "Insert URL of Instagram"
|
6071 |
msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
|
6072 |
|
6073 |
+
#: app/features/speakers.php:148 app/features/speakers.php:196
|
6074 |
#, fuzzy
|
6075 |
#| msgid "Twitter"
|
6076 |
msgid "Twitter Page"
|
6077 |
msgstr "Twitter"
|
6078 |
|
6079 |
+
#: app/features/speakers.php:151 app/features/speakers.php:197
|
6080 |
#, fuzzy
|
6081 |
#| msgid "Insert -1 for unlimited usage"
|
6082 |
msgid "Insert URL of Twitter Page"
|
6083 |
msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
|
6084 |
|
6085 |
+
#: app/features/speakers.php:308
|
6086 |
+
msgid "Sorry, You must insert speaker name!"
|
6087 |
+
msgstr ""
|
6088 |
+
|
6089 |
#: app/libraries/book.php:60
|
6090 |
#, php-format
|
6091 |
msgid "%s Price"
|
6175 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
6176 |
"Beitrag handelt."
|
6177 |
|
6178 |
+
#: app/libraries/main.php:330 app/libraries/main.php:1250
|
6179 |
+
#: app/libraries/main.php:1275
|
6180 |
msgid "Grid View"
|
6181 |
msgstr "Rasterdarstellung"
|
6182 |
|
6183 |
+
#: app/libraries/main.php:331 app/libraries/main.php:1251
|
6184 |
+
#: app/libraries/main.php:1276
|
6185 |
msgid "Agenda View"
|
6186 |
msgstr "Agendaansicht"
|
6187 |
|
6188 |
+
#: app/libraries/main.php:332 app/libraries/main.php:1242
|
6189 |
+
#: app/libraries/main.php:1267
|
6190 |
msgid "Full Calendar"
|
6191 |
msgstr "Ganzer Kalender"
|
6192 |
|
6193 |
+
#: app/libraries/main.php:334 app/libraries/main.php:1244
|
6194 |
+
#: app/libraries/main.php:1269
|
6195 |
msgid "Calendar/Monthly View"
|
6196 |
msgstr "Kalender-/Monatsansicht"
|
6197 |
|
6198 |
+
#: app/libraries/main.php:337 app/libraries/main.php:1247
|
6199 |
+
#: app/libraries/main.php:1272
|
6200 |
msgid "Timetable View"
|
6201 |
msgstr "Stundenplan"
|
6202 |
|
6203 |
+
#: app/libraries/main.php:338 app/libraries/main.php:1248
|
6204 |
+
#: app/libraries/main.php:1273
|
6205 |
msgid "Masonry View"
|
6206 |
msgstr "Kachel Ansicht"
|
6207 |
|
6208 |
+
#: app/libraries/main.php:339 app/libraries/main.php:1252
|
6209 |
+
#: app/libraries/main.php:1277
|
6210 |
msgid "Map View"
|
6211 |
msgstr "Kartenansicht"
|
6212 |
|
6230 |
msgid "Slider View"
|
6231 |
msgstr "Slideransicht"
|
6232 |
|
6233 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4510
|
6234 |
msgid "SU"
|
6235 |
msgstr "SO"
|
6236 |
|
6237 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4511
|
6238 |
msgid "MO"
|
6239 |
msgstr "MO"
|
6240 |
|
6241 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4512
|
6242 |
msgid "TU"
|
6243 |
msgstr "DI"
|
6244 |
|
6245 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4513
|
6246 |
msgid "WE"
|
6247 |
msgstr "MI"
|
6248 |
|
6249 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4514
|
6250 |
msgid "TH"
|
6251 |
msgstr "DO"
|
6252 |
|
6253 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4515
|
6254 |
msgid "FR"
|
6255 |
msgstr "FR"
|
6256 |
|
6257 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4516
|
6258 |
msgid "SA"
|
6259 |
msgstr "SA"
|
6260 |
|
6303 |
msgid "Event at this location"
|
6304 |
msgstr "Veranstaltung an diesem Ort "
|
6305 |
|
6306 |
+
#: app/libraries/main.php:1146
|
6307 |
msgid "Facebook"
|
6308 |
msgstr "Facebook"
|
6309 |
|
6310 |
+
#: app/libraries/main.php:1147
|
6311 |
msgid "Twitter"
|
6312 |
msgstr "Twitter"
|
6313 |
|
6314 |
+
#: app/libraries/main.php:1148 app/libraries/main.php:1198
|
6315 |
msgid "Linkedin"
|
6316 |
msgstr "Linkedin"
|
6317 |
|
6318 |
+
#: app/libraries/main.php:1149 app/libraries/main.php:1231
|
6319 |
msgid "VK"
|
6320 |
msgstr ""
|
6321 |
|
6322 |
+
#: app/libraries/main.php:1168
|
6323 |
msgid "Share on Facebook"
|
6324 |
msgstr "Teilen auf Facebook"
|
6325 |
|
6326 |
+
#: app/libraries/main.php:1183
|
6327 |
msgid "Tweet"
|
6328 |
msgstr "Tweet"
|
6329 |
|
6330 |
+
#: app/libraries/main.php:1253
|
6331 |
#, fuzzy
|
6332 |
#| msgid "Shortcode"
|
6333 |
msgid "Custom Shortcode"
|
6334 |
msgstr "Shortcode"
|
6335 |
|
6336 |
+
#: app/libraries/main.php:1612
|
6337 |
msgid "Your booking successfully verified."
|
6338 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
6339 |
|
6340 |
+
#: app/libraries/main.php:1613
|
6341 |
msgid "Your booking cannot verify!"
|
6342 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
6343 |
|
6344 |
+
#: app/libraries/main.php:1625
|
6345 |
msgid "Your booking successfully canceled."
|
6346 |
msgstr "Ihre Buchung wurde erfolgreich storniert."
|
6347 |
|
6348 |
+
#: app/libraries/main.php:1626
|
6349 |
msgid "Your booking cannot be canceled."
|
6350 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
6351 |
|
6352 |
+
#: app/libraries/main.php:1630
|
6353 |
msgid "You canceled the payment successfully."
|
6354 |
msgstr "Sie haben die Zahlung erfolgreich storniert."
|
6355 |
|
6356 |
+
#: app/libraries/main.php:1634
|
6357 |
msgid "You returned from payment gateway successfully."
|
6358 |
msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
|
6359 |
|
6360 |
+
#: app/libraries/main.php:1650
|
6361 |
#, fuzzy
|
6362 |
#| msgid "Cannot find the booking!"
|
6363 |
msgid "Cannot find the invoice!"
|
6364 |
msgstr "Kann die Buchung nicht finden!"
|
6365 |
|
6366 |
+
#: app/libraries/main.php:1650
|
6367 |
#, fuzzy
|
6368 |
#| msgid "Booking is invalid."
|
6369 |
msgid "Invoice is invalid."
|
6370 |
msgstr "Buchung ist ungültig."
|
6371 |
|
6372 |
+
#: app/libraries/main.php:1665
|
6373 |
msgid "Cannot find the booking!"
|
6374 |
msgstr "Kann die Buchung nicht finden!"
|
6375 |
|
6376 |
+
#: app/libraries/main.php:1665
|
6377 |
msgid "Booking is invalid."
|
6378 |
msgstr "Buchung ist ungültig."
|
6379 |
|
6380 |
+
#: app/libraries/main.php:1694
|
6381 |
#, php-format
|
6382 |
msgid "%s Invoice"
|
6383 |
msgstr "% s Rechnung"
|
6384 |
|
6385 |
+
#: app/libraries/main.php:1715
|
6386 |
msgid "Transaction ID"
|
6387 |
msgstr "Transaktions-ID"
|
6388 |
|
6389 |
+
#: app/libraries/main.php:1768
|
6390 |
msgid "Billing"
|
6391 |
msgstr "Abrechnung"
|
6392 |
|
6393 |
+
#: app/libraries/main.php:1779
|
6394 |
msgid "Total"
|
6395 |
msgstr "Gesamt"
|
6396 |
|
6397 |
+
#: app/libraries/main.php:1812
|
6398 |
msgid "Security nonce is not valid."
|
6399 |
msgstr "Sicherheits-Nonce ist ungültig."
|
6400 |
|
6401 |
+
#: app/libraries/main.php:1812 app/libraries/main.php:1844
|
6402 |
msgid "iCal export stopped!"
|
6403 |
msgstr "iCal Export wurde unterbrochen!"
|
6404 |
|
6405 |
+
#: app/libraries/main.php:1844
|
6406 |
#, fuzzy
|
6407 |
#| msgid "Request is invalid!"
|
6408 |
msgid "Request is not valid."
|
6409 |
msgstr "Die Anfrage ist ungültig!"
|
6410 |
|
6411 |
+
#: app/libraries/main.php:2172 app/libraries/main.php:2202
|
6412 |
+
#: app/libraries/main.php:2231 app/libraries/main.php:2261
|
6413 |
+
#: app/libraries/main.php:2290 app/libraries/main.php:2319
|
6414 |
+
#: app/libraries/main.php:2348 app/libraries/main.php:2377
|
6415 |
+
#: app/libraries/main.php:2406 app/libraries/main.php:2430
|
6416 |
+
#: app/libraries/main.php:2474 app/libraries/main.php:2518
|
6417 |
+
#: app/libraries/main.php:2565 app/libraries/main.php:2612
|
6418 |
msgid "Sort"
|
6419 |
msgstr "Sortieren"
|
6420 |
|
6421 |
+
#: app/libraries/main.php:2178 app/libraries/main.php:2208
|
6422 |
+
#: app/libraries/main.php:2237 app/libraries/main.php:2267
|
6423 |
+
#: app/libraries/main.php:2296 app/libraries/main.php:2325
|
6424 |
+
#: app/libraries/main.php:2354 app/libraries/main.php:2383
|
6425 |
+
#: app/libraries/main.php:2436 app/libraries/main.php:2480
|
6426 |
+
#: app/libraries/main.php:2524 app/libraries/main.php:2571
|
6427 |
msgid "Required Field"
|
6428 |
msgstr "Pflichtfeld"
|
6429 |
|
6430 |
+
#: app/libraries/main.php:2184 app/libraries/main.php:2214
|
6431 |
+
#: app/libraries/main.php:2243 app/libraries/main.php:2273
|
6432 |
+
#: app/libraries/main.php:2302 app/libraries/main.php:2331
|
6433 |
+
#: app/libraries/main.php:2360 app/libraries/main.php:2389
|
6434 |
+
#: app/libraries/main.php:2442 app/libraries/main.php:2486
|
6435 |
+
#: app/libraries/main.php:2530 app/libraries/main.php:2577
|
6436 |
msgid "Insert a label for this field"
|
6437 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
6438 |
|
6439 |
+
#: app/libraries/main.php:2412
|
6440 |
msgid "HTML and shortcode are allowed."
|
6441 |
msgstr "HTML und shortcodes sind erlaubt."
|
6442 |
|
6443 |
+
#: app/libraries/main.php:2455 app/libraries/main.php:2499
|
6444 |
+
#: app/libraries/main.php:2543
|
6445 |
msgid "Option"
|
6446 |
msgstr "Option"
|
6447 |
|
6448 |
+
#: app/libraries/main.php:2577
|
6449 |
#, php-format
|
6450 |
msgid "Instead of %s, the page title with a link will be show."
|
6451 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
6452 |
|
6453 |
+
#: app/libraries/main.php:2579
|
6454 |
msgid "Agreement Page"
|
6455 |
msgstr "Zustimmungsseite"
|
6456 |
|
6457 |
+
#: app/libraries/main.php:2590
|
6458 |
msgid "Checked by default"
|
6459 |
msgstr ""
|
6460 |
|
6461 |
+
#: app/libraries/main.php:2591
|
6462 |
msgid "Unchecked by default"
|
6463 |
msgstr ""
|
6464 |
|
6465 |
+
#: app/libraries/main.php:2614
|
6466 |
msgid "Insert a label for this option"
|
6467 |
msgstr "Ein neues Label für diese Option einfügen"
|
6468 |
|
6469 |
+
#: app/libraries/main.php:2629
|
6470 |
msgid "Free"
|
6471 |
msgstr "kostenfrei"
|
6472 |
|
6473 |
+
#: app/libraries/main.php:3181 app/libraries/main.php:4757
|
6474 |
#, fuzzy
|
6475 |
#| msgid "M.E. Calendar"
|
6476 |
msgid "M.E. Calender"
|
6477 |
msgstr "M.E. Calender"
|
6478 |
|
6479 |
+
#: app/libraries/main.php:3336
|
6480 |
#, php-format
|
6481 |
msgid "Copy of %s"
|
6482 |
msgstr "Kopie von %s"
|
6483 |
|
6484 |
+
#: app/libraries/main.php:4009
|
6485 |
msgid "Booked an event."
|
6486 |
msgstr "Eine Veranstaltung wurde gebucht."
|
6487 |
|
6488 |
+
#: app/libraries/main.php:4050
|
6489 |
#, php-format
|
6490 |
msgid "%s booked %s event."
|
6491 |
msgstr "%s gebuchtes %s Event"
|
6492 |
|
6493 |
+
#: app/libraries/main.php:4493
|
6494 |
msgid "Taxonomies"
|
6495 |
msgstr "Klassifizierung "
|
6496 |
|
6497 |
+
#: app/libraries/main.php:4495
|
6498 |
msgid "Category Plural Label"
|
6499 |
msgstr "Kategorien"
|
6500 |
|
6501 |
+
#: app/libraries/main.php:4496
|
6502 |
msgid "Category Singular Label"
|
6503 |
msgstr "Kategorie"
|
6504 |
|
6505 |
+
#: app/libraries/main.php:4497
|
6506 |
msgid "Label Plural Label"
|
6507 |
msgstr "Labels"
|
6508 |
|
6509 |
+
#: app/libraries/main.php:4498
|
6510 |
msgid "Label Singular Label"
|
6511 |
msgstr "Label"
|
6512 |
|
6513 |
+
#: app/libraries/main.php:4498
|
6514 |
msgid "label"
|
6515 |
msgstr "label"
|
6516 |
|
6517 |
+
#: app/libraries/main.php:4499
|
6518 |
msgid "Location Plural Label"
|
6519 |
msgstr "Veranstaltungsorte"
|
6520 |
|
6521 |
+
#: app/libraries/main.php:4500
|
6522 |
msgid "Location Singular Label"
|
6523 |
msgstr "Veranstaltungsort"
|
6524 |
|
6525 |
+
#: app/libraries/main.php:4501
|
6526 |
msgid "Organizer Plural Label"
|
6527 |
msgstr "Veranstalter"
|
6528 |
|
6529 |
+
#: app/libraries/main.php:4502
|
6530 |
msgid "Organizer Singular Label"
|
6531 |
msgstr "Veranstalter"
|
6532 |
|
6533 |
+
#: app/libraries/main.php:4503
|
6534 |
#, fuzzy
|
6535 |
#| msgid "Label Plural Label"
|
6536 |
msgid "Speaker Plural Label"
|
6537 |
msgstr "Labels"
|
6538 |
|
6539 |
+
#: app/libraries/main.php:4504
|
6540 |
#, fuzzy
|
6541 |
#| msgid "Label Singular Label"
|
6542 |
msgid "Speaker Singular Label"
|
6543 |
msgstr "Label"
|
6544 |
|
6545 |
+
#: app/libraries/main.php:4510
|
6546 |
msgid "Sunday abbreviation"
|
6547 |
msgstr "Sonntag Abkürzung"
|
6548 |
|
6549 |
+
#: app/libraries/main.php:4511
|
6550 |
msgid "Monday abbreviation"
|
6551 |
msgstr "Montag Abkürzung"
|
6552 |
|
6553 |
+
#: app/libraries/main.php:4512
|
6554 |
msgid "Tuesday abbreviation"
|
6555 |
msgstr "Dienstag Abkürzung"
|
6556 |
|
6557 |
+
#: app/libraries/main.php:4513
|
6558 |
msgid "Wednesday abbreviation"
|
6559 |
msgstr "Mittwoch Abkürzung"
|
6560 |
|
6561 |
+
#: app/libraries/main.php:4514
|
6562 |
msgid "Thursday abbreviation"
|
6563 |
msgstr "Donnerstag Abkürzung"
|
6564 |
|
6565 |
+
#: app/libraries/main.php:4515
|
6566 |
msgid "Friday abbreviation"
|
6567 |
msgstr "Freitag Abkürzung"
|
6568 |
|
6569 |
+
#: app/libraries/main.php:4516
|
6570 |
msgid "Saturday abbreviation"
|
6571 |
msgstr "Samstag Abkürzung "
|
6572 |
|
6573 |
+
#: app/libraries/main.php:4520
|
6574 |
msgid "Others"
|
6575 |
msgstr "Andere"
|
6576 |
|
6577 |
+
#: app/libraries/main.php:4522
|
6578 |
msgid "Booking Success Message"
|
6579 |
msgstr "Buchung erfolgreich Mitteilung"
|
6580 |
|
6581 |
+
#: app/libraries/main.php:4522
|
6582 |
msgid ""
|
6583 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6584 |
"needed, please check your email."
|
6586 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
6587 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
6588 |
|
6589 |
+
#: app/libraries/main.php:4523 app/widgets/single.php:131
|
6590 |
msgid "Register Button"
|
6591 |
msgstr "Register Button"
|
6592 |
|
6593 |
+
#: app/libraries/main.php:4523 app/skins/available_spot/tpl.php:205
|
6594 |
+
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6595 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6596 |
+
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6597 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6598 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:715
|
6599 |
+
#: app/skins/single.php:718 app/skins/single/default.php:233
|
6600 |
+
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6601 |
+
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6602 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6603 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:68
|
6604 |
#: app/skins/single/modern.php:70 app/skins/slider/render.php:109
|
6607 |
msgid "REGISTER"
|
6608 |
msgstr "ANMELDEN"
|
6609 |
|
6610 |
+
#: app/libraries/main.php:4524
|
6611 |
msgid "View Detail Button"
|
6612 |
msgstr "Ansicht Detail Button"
|
6613 |
|
6614 |
+
#: app/libraries/main.php:4524 app/skins/carousel/render.php:150
|
6615 |
+
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6616 |
+
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6617 |
+
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6618 |
#: app/skins/list/render.php:190 app/skins/masonry/render.php:175
|
6619 |
#: app/skins/slider/render.php:109 app/skins/slider/render.php:154
|
6620 |
#: app/skins/slider/render.php:198 app/skins/slider/render.php:243
|
6622 |
msgid "View Detail"
|
6623 |
msgstr "Details "
|
6624 |
|
6625 |
+
#: app/libraries/main.php:4525
|
6626 |
msgid "Event Detail Button"
|
6627 |
msgstr "Event Detail Button"
|
6628 |
|
6629 |
+
#: app/libraries/main.php:4525 app/skins/countdown/tpl.php:218
|
6630 |
msgid "Event Detail"
|
6631 |
msgstr "Veranstaltungsdetails"
|
6632 |
|
6633 |
+
#: app/libraries/main.php:4527
|
6634 |
msgid "More Info Link"
|
6635 |
msgstr "Link Mehr Informationen"
|
6636 |
|
6637 |
+
#: app/libraries/main.php:4530
|
6638 |
msgid "Ticket (Singular)"
|
6639 |
msgstr "Ticket"
|
6640 |
|
6641 |
+
#: app/libraries/main.php:4531
|
6642 |
msgid "Tickets (Plural)"
|
6643 |
msgstr "Tickets"
|
6644 |
|
6645 |
+
#: app/libraries/main.php:4617
|
6646 |
msgid "EventON"
|
6647 |
msgstr "EventON"
|
6648 |
|
6649 |
+
#: app/libraries/main.php:4618
|
6650 |
msgid "The Events Calendar"
|
6651 |
msgstr "The Events Calendar"
|
6652 |
|
6653 |
+
#: app/libraries/main.php:4619
|
6654 |
msgid "Events Schedule WP Plugin"
|
6655 |
msgstr "Event Zeitplan WP-Plugin"
|
6656 |
|
6657 |
+
#: app/libraries/main.php:4620
|
6658 |
msgid "Calendarize It"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
+
#: app/libraries/main.php:4694 app/libraries/main.php:4714
|
6662 |
msgid "Confirmed"
|
6663 |
msgstr "Bestätigt"
|
6664 |
|
6665 |
+
#: app/libraries/main.php:4695 app/libraries/main.php:4722
|
6666 |
msgid "Rejected"
|
6667 |
msgstr "Abgelehnt"
|
6668 |
|
6669 |
+
#: app/libraries/main.php:4696 app/libraries/main.php:4718
|
6670 |
msgid "Pending"
|
6671 |
msgstr "Ausstehend"
|
6672 |
|
6673 |
+
#: app/libraries/main.php:4744
|
6674 |
msgid "Waiting"
|
6675 |
msgstr "in Bearbeitung"
|
6676 |
|
6677 |
+
#: app/libraries/main.php:4949 app/libraries/render.php:367
|
6678 |
msgid "Skin controller does not exist."
|
6679 |
msgstr "Skin contoller existiert nicht."
|
6680 |
|
6704 |
msgid "A new event is added."
|
6705 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
6706 |
|
6707 |
+
#: app/libraries/notifications.php:535 app/libraries/render.php:437
|
6708 |
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6709 |
+
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6710 |
+
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6711 |
#: app/skins/single/modern.php:184
|
6712 |
msgid "All of the day"
|
6713 |
msgstr "Den ganzen Tag"
|
6732 |
msgid "No"
|
6733 |
msgstr "Nein"
|
6734 |
|
6735 |
+
#: app/libraries/skins.php:964
|
6736 |
msgid "Ignore month and years"
|
6737 |
msgstr "Monat und Jahre ignorieren"
|
6738 |
|
6749 |
msgid "%s tickets"
|
6750 |
msgstr "%s tickets"
|
6751 |
|
6752 |
+
#: app/modules/booking/steps/checkout.php:23
|
6753 |
msgid "Checkout"
|
6754 |
msgstr "Zur Kasse gehen"
|
6755 |
|
6756 |
+
#: app/modules/booking/steps/checkout.php:40
|
6757 |
msgid "Discount Coupon"
|
6758 |
msgstr "Rabattgutschein"
|
6759 |
|
6760 |
+
#: app/modules/booking/steps/checkout.php:44
|
6761 |
msgid "Apply Coupon"
|
6762 |
msgstr "Gutschein verwenden"
|
6763 |
|
6764 |
+
#: app/modules/booking/steps/checkout.php:75
|
6765 |
msgid "Free Booking"
|
6766 |
msgstr "Kostenlose Buchung"
|
6767 |
|
6768 |
+
#: app/modules/booking/steps/form.php:166
|
6769 |
#, fuzzy
|
6770 |
#| msgid "Fill other attendees's information like the first form."
|
6771 |
msgid "Fill other attendees information like the first form."
|
6772 |
msgstr ""
|
6773 |
"Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
|
6774 |
|
6775 |
+
#: app/modules/booking/steps/form.php:179
|
6776 |
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:119
|
6777 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:208
|
6778 |
msgid "Next"
|
6814 |
msgid "Get Directions"
|
6815 |
msgstr "Wegbeschreibung"
|
6816 |
|
6817 |
+
#: app/modules/links/details.php:17 app/skins/single.php:414
|
6818 |
msgid "Share this event"
|
6819 |
msgstr "Diese Veranstaltung teilen"
|
6820 |
|
6841 |
msgid "Go to occurrence page"
|
6842 |
msgstr "Zum Event"
|
6843 |
|
6844 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:690
|
6845 |
+
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6846 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6847 |
msgid "Time"
|
6848 |
msgstr "Uhrzeit"
|
6915 |
msgid "Available Spot(s):"
|
6916 |
msgstr "Verfügbare Spot (s):"
|
6917 |
|
6918 |
+
#: app/skins/carousel/render.php:207 app/skins/countdown/tpl.php:157
|
6919 |
#: app/skins/countdown/tpl.php:201 app/skins/cover/tpl.php:101
|
6920 |
#: app/skins/list/render.php:120
|
6921 |
msgid "EVENT DETAIL"
|
6922 |
msgstr "VERANSTALTUNGSDETAILS"
|
6923 |
|
6924 |
+
#: app/skins/carousel/render.php:219
|
6925 |
#, fuzzy
|
6926 |
#| msgid "All Events"
|
6927 |
msgid "View All Events"
|
6937 |
msgid "featured event"
|
6938 |
msgstr "Ausgewählte Veranstaltung"
|
6939 |
|
6940 |
+
#: app/skins/daily_view/render.php:101 app/skins/monthly_view/calendar.php:167
|
6941 |
+
#: app/skins/monthly_view/calendar_clean.php:167
|
6942 |
+
#: app/skins/weekly_view/render.php:110
|
6943 |
+
#, fuzzy
|
6944 |
+
#| msgid "Sold out!"
|
6945 |
+
msgid "Sold Out"
|
6946 |
+
msgstr "Ausverkauft!"
|
6947 |
+
|
6948 |
+
#: app/skins/daily_view/render.php:107
|
6949 |
msgid "No event"
|
6950 |
msgstr "Keine Veranstaltung"
|
6951 |
|
6952 |
+
#: app/skins/full_calendar/tpl.php:110
|
6953 |
msgid "List"
|
6954 |
msgstr "Liste / Listenansicht"
|
6955 |
|
6958 |
msgstr "Alle"
|
6959 |
|
6960 |
#: app/skins/monthly_view/calendar.php:68
|
6961 |
+
#: app/skins/monthly_view/calendar.php:179
|
6962 |
+
#: app/skins/monthly_view/calendar_clean.php:68
|
6963 |
+
#: app/skins/monthly_view/calendar_clean.php:179
|
6964 |
#, php-format
|
6965 |
msgid "Events for %s"
|
6966 |
msgstr "Veranstaltungen für %s"
|
6967 |
|
6968 |
+
#: app/skins/monthly_view/calendar.php:181
|
6969 |
+
#: app/skins/monthly_view/calendar_clean.php:181
|
6970 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:119
|
6971 |
msgid "No Events"
|
6972 |
msgstr "Keine Veranstaltungen"
|
6973 |
|
6974 |
+
#: app/skins/single.php:193
|
6975 |
msgid "Home"
|
6976 |
msgstr ""
|
6977 |
|
6978 |
+
#: app/skins/single.php:497 app/skins/single/default.php:43
|
6979 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6980 |
#: app/skins/single/modern.php:256
|
6981 |
msgid "Sold out!"
|
6982 |
msgstr "Ausverkauft!"
|
6983 |
|
6984 |
+
#: app/skins/single.php:763 app/skins/single.php:818
|
6985 |
+
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6986 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6987 |
#: app/skins/single/modern.php:41
|
6988 |
msgid "Phone"
|
6989 |
msgstr "Phone"
|
6990 |
|
6991 |
+
#: app/skins/single.php:777 app/skins/single.php:832
|
6992 |
+
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6993 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6994 |
#: app/skins/single/modern.php:55
|
6995 |
msgid "Website"
|
6996 |
msgstr "Website"
|
6997 |
|
6998 |
+
#: app/skins/single.php:902
|
6999 |
#, fuzzy
|
7000 |
#| msgid "No Search Options"
|
7001 |
msgid "Speakers:"
|
7002 |
msgstr "Keine Suchoptionen"
|
7003 |
|
7004 |
+
#: app/skins/single/default.php:53 app/skins/single/m1.php:256
|
7005 |
#: app/skins/single/m2.php:183 app/skins/single/modern.php:266
|
7006 |
msgid "Tags: "
|
7007 |
msgstr "Tags:"
|
7266 |
#~ msgid "Search Coupons"
|
7267 |
#~ msgstr "Gutscheine suchen"
|
7268 |
|
7269 |
+
#, fuzzy
|
7270 |
+
#~| msgid "Search Coupons"
|
7271 |
+
#~ msgid "← Back to Coupons"
|
7272 |
+
#~ msgstr "Gutscheine suchen"
|
7273 |
+
|
7274 |
#~ msgid "Discount Type"
|
7275 |
#~ msgstr "Rabatt-Art"
|
7276 |
|
7353 |
#~ msgid "Publishable Key"
|
7354 |
#~ msgstr "publizierbarer Schlüssel"
|
7355 |
|
7356 |
+
#, fuzzy
|
7357 |
+
#~| msgid "Stripe"
|
7358 |
+
#~ msgid "Stripe Connect"
|
7359 |
+
#~ msgstr "Stripe"
|
7360 |
+
|
7361 |
+
#, fuzzy
|
7362 |
+
#~| msgid "You should set %s as redirect page in Google App Console."
|
7363 |
+
#~ msgid "You should set %s as Redirect URI in your stripe dashboard."
|
7364 |
+
#~ msgstr "Sie sollten% s als Redirect-Seite in der Google App Console setzen."
|
7365 |
+
|
7366 |
+
#, fuzzy
|
7367 |
+
#~| msgid "Event Organizer"
|
7368 |
+
#~ msgid "Comment for Organizer"
|
7369 |
+
#~ msgstr "Veranstaltungsmanager"
|
7370 |
+
|
7371 |
+
#, fuzzy
|
7372 |
+
#~| msgid "App Client ID"
|
7373 |
+
#~ msgid "Client ID"
|
7374 |
+
#~ msgstr "App Client ID"
|
7375 |
+
|
7376 |
+
#, fuzzy
|
7377 |
+
#~| msgid "Select All"
|
7378 |
+
#~ msgid "Fee Type"
|
7379 |
+
#~ msgstr "Alles Auswählen"
|
7380 |
+
|
7381 |
+
#, fuzzy
|
7382 |
+
#~| msgid "Percent"
|
7383 |
+
#~ msgid "Per"
|
7384 |
+
#~ msgstr "Prozent"
|
7385 |
+
|
7386 |
+
#, fuzzy
|
7387 |
+
#~| msgid "Get Directions"
|
7388 |
+
#~ msgid "Redirection Page"
|
7389 |
+
#~ msgstr "Wegbeschreibung"
|
7390 |
+
|
7391 |
+
#~ msgid "Waiting for getting response from gateway."
|
7392 |
+
#~ msgstr "Warte auf Antwort des Gateways."
|
7393 |
+
|
7394 |
#~ msgid "Pay Locally"
|
7395 |
#~ msgstr "Vor Ort bezahlen"
|
7396 |
|
7412 |
#~ msgid "Sandbox"
|
7413 |
#~ msgstr "Sandbox"
|
7414 |
|
|
|
|
|
|
|
7415 |
#~ msgid "Payment was invalid! Booking failed."
|
7416 |
#~ msgstr "Die Transaktion war ungültig. Die Buchung wurde nicht durchgeführt."
|
7417 |
|
7483 |
#~ msgid "This booking is not free!"
|
7484 |
#~ msgstr "Diese Buchung ist nicht kostenlos!"
|
7485 |
|
7486 |
+
#, fuzzy
|
7487 |
+
#~| msgid "Organizer name of booked event"
|
7488 |
+
#~ msgid "Organizer Payment Credentials"
|
7489 |
+
#~ msgstr "Name des Veranstalters des gebuchten Events"
|
7490 |
+
|
7491 |
#, fuzzy
|
7492 |
#~| msgid "View %s"
|
7493 |
#~ msgid "View All"
|
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-
|
5 |
-
"PO-Revision-Date: 2019-
|
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:
|
25 |
msgid "Content"
|
26 |
msgstr ""
|
27 |
|
@@ -56,7 +56,7 @@ msgid "Select Type"
|
|
56 |
msgstr ""
|
57 |
|
58 |
#: app/features/colors.php:50 app/features/fes/form.php:794
|
59 |
-
#: app/features/mec/settings.php:
|
60 |
msgid "Event Color"
|
61 |
msgstr ""
|
62 |
|
@@ -71,13 +71,13 @@ msgstr ""
|
|
71 |
msgid "Settings"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: app/features/contextual.php:62 app/features/events.php:
|
75 |
-
#: app/features/mec/booking.php:
|
76 |
-
#: app/features/mec/ie.php:
|
77 |
-
#: app/features/mec/modules.php:
|
78 |
-
#: app/features/mec/regform.php:
|
79 |
-
#: app/features/mec/settings.php:
|
80 |
-
#: app/features/mec/styles.php:
|
81 |
#: app/features/mec/support.php:29
|
82 |
msgid "Booking Form"
|
83 |
msgstr ""
|
@@ -91,13 +91,13 @@ msgid ""
|
|
91 |
"YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: app/features/contextual.php:70 app/features/mec/booking.php:
|
95 |
-
#: app/features/mec/gateways.php:
|
96 |
-
#: app/features/mec/ie.php:
|
97 |
-
#: app/features/mec/modules.php:
|
98 |
-
#: app/features/mec/regform.php:
|
99 |
-
#: app/features/mec/single.php:
|
100 |
-
#: app/features/mec/styling.php:
|
101 |
msgid "Payment Gateways"
|
102 |
msgstr ""
|
103 |
|
@@ -108,12 +108,12 @@ msgid ""
|
|
108 |
"\"0\" allowfullscreen></iframe>"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: app/features/contextual.php:77 app/features/mec/booking.php:
|
112 |
-
#: app/features/mec/gateways.php:
|
113 |
-
#: app/features/mec/messages.php:
|
114 |
-
#: app/features/mec/notifications.php:
|
115 |
-
#: app/features/mec/settings.php:
|
116 |
-
#: app/features/mec/styles.php:
|
117 |
#: app/features/mec/support.php:45
|
118 |
msgid "Notifications"
|
119 |
msgstr ""
|
@@ -181,7 +181,7 @@ msgstr ""
|
|
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:
|
185 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
186 |
#: app/features/mec/styling.php:50
|
187 |
msgid "General Options"
|
@@ -191,7 +191,7 @@ msgstr ""
|
|
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:
|
195 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
196 |
#: app/features/mec/styling.php:52
|
197 |
msgid "Slugs/Permalinks"
|
@@ -205,19 +205,19 @@ msgstr ""
|
|
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:
|
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:
|
215 |
-
#: app/features/mec/gateways.php:
|
216 |
-
#: app/features/mec/messages.php:
|
217 |
-
#: app/features/mec/modules.php:
|
218 |
-
#: app/features/mec/notifications.php:
|
219 |
-
#: app/features/mec/settings.php:
|
220 |
-
#: app/features/mec/styles.php:
|
221 |
msgid "Google Maps Options"
|
222 |
msgstr ""
|
223 |
|
@@ -225,7 +225,7 @@ msgstr ""
|
|
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:
|
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"
|
@@ -236,18 +236,18 @@ msgstr ""
|
|
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:
|
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:
|
245 |
-
#: app/features/mec/gateways.php:
|
246 |
-
#: app/features/mec/messages.php:
|
247 |
-
#: app/features/mec/modules.php:
|
248 |
-
#: app/features/mec/regform.php:
|
249 |
-
#: app/features/mec/single.php:
|
250 |
-
#: app/features/mec/styling.php:
|
251 |
msgid "Social Networks"
|
252 |
msgstr ""
|
253 |
|
@@ -259,7 +259,7 @@ msgstr ""
|
|
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:
|
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"
|
@@ -276,44 +276,44 @@ msgid "Exceptional Days"
|
|
276 |
msgstr ""
|
277 |
|
278 |
#: app/features/contextual.php:308 app/features/events.php:285
|
279 |
-
#: app/features/mec/booking.php:
|
280 |
-
#: app/features/mec/booking.php:
|
281 |
-
#: app/features/mec/gateways.php:
|
282 |
-
#: app/features/mec/gateways.php:
|
283 |
-
#: app/features/mec/ie.php:
|
284 |
-
#: app/features/mec/messages.php:
|
285 |
-
#: app/features/mec/messages.php:
|
286 |
-
#: app/features/mec/modules.php:
|
287 |
-
#: app/features/mec/notifications.php:
|
288 |
-
#: app/features/mec/notifications.php:
|
289 |
-
#: app/features/mec/notifications.php:
|
290 |
-
#: app/features/mec/regform.php:
|
291 |
-
#: app/features/mec/settings.php:
|
292 |
-
#: app/features/mec/settings.php:
|
293 |
-
#: app/features/mec/single.php:
|
294 |
-
#: app/features/mec/styles.php:
|
295 |
-
#: app/features/mec/styles.php:
|
296 |
-
#: app/features/mec/styling.php:
|
297 |
msgid "Booking"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: app/features/contextual.php:318 app/features/mec/booking.php:
|
301 |
-
#: app/features/mec/booking.php:
|
302 |
-
#: app/features/mec/ie.php:
|
303 |
-
#: app/features/mec/modules.php:
|
304 |
-
#: app/features/mec/regform.php:
|
305 |
-
#: app/features/mec/single.php:
|
306 |
-
#: app/features/mec/styling.php:
|
307 |
msgid "Coupons"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: app/features/contextual.php:326 app/features/mec/booking.php:
|
311 |
-
#: app/features/mec/gateways.php:
|
312 |
-
#: app/features/mec/messages.php:
|
313 |
-
#: app/features/mec/modules.php:
|
314 |
-
#: app/features/mec/regform.php:
|
315 |
-
#: app/features/mec/single.php:
|
316 |
-
#: app/features/mec/styling.php:
|
317 |
msgid "BuddyPress Integration"
|
318 |
msgstr ""
|
319 |
|
@@ -321,7 +321,7 @@ msgstr ""
|
|
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:
|
325 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
326 |
#: app/features/mec/styling.php:59
|
327 |
msgid "Mailchimp Integration"
|
@@ -332,7 +332,7 @@ msgid "MEC Activation"
|
|
332 |
msgstr ""
|
333 |
|
334 |
#: app/features/events.php:137 app/features/ix/export.php:34
|
335 |
-
#: app/features/mec/dashboard.php:
|
336 |
#: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
|
337 |
msgid "Events"
|
338 |
msgstr ""
|
@@ -379,80 +379,80 @@ msgstr ""
|
|
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:
|
383 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
384 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
385 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
386 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
387 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
388 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
389 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
390 |
-
#: app/features/mec/settings.php:
|
391 |
-
#: app/libraries/
|
392 |
-
#: app/skins/single
|
393 |
-
#: app/skins/single/
|
394 |
-
#: app/skins/single/modern.php:110
|
395 |
msgid "Category"
|
396 |
msgstr ""
|
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:
|
401 |
msgid "Categories"
|
402 |
msgstr ""
|
403 |
|
404 |
#: app/features/events.php:173 app/features/labels.php:71
|
405 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
406 |
-
#: app/features/speakers.php:
|
407 |
#, php-format
|
408 |
msgid "All %s"
|
409 |
msgstr ""
|
410 |
|
411 |
#: app/features/events.php:174 app/features/labels.php:72
|
412 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
413 |
-
#: app/features/speakers.php:
|
414 |
#, php-format
|
415 |
msgid "Edit %s"
|
416 |
msgstr ""
|
417 |
|
418 |
#: app/features/events.php:175 app/features/labels.php:73
|
419 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
420 |
-
#: app/features/speakers.php:
|
421 |
#, php-format
|
422 |
msgid "View %s"
|
423 |
msgstr ""
|
424 |
|
425 |
#: app/features/events.php:176 app/features/labels.php:74
|
426 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
427 |
-
#: app/features/speakers.php:
|
428 |
#, php-format
|
429 |
msgid "Update %s"
|
430 |
msgstr ""
|
431 |
|
432 |
#: app/features/events.php:177 app/features/labels.php:75
|
433 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
434 |
-
#: app/features/speakers.php:
|
435 |
#, php-format
|
436 |
msgid "Add New %s"
|
437 |
msgstr ""
|
438 |
|
439 |
#: app/features/events.php:178 app/features/labels.php:76
|
440 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
441 |
-
#: app/features/speakers.php:
|
442 |
#, php-format
|
443 |
msgid "New %s Name"
|
444 |
msgstr ""
|
445 |
|
446 |
#: app/features/events.php:179 app/features/labels.php:77
|
447 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
448 |
-
#: app/features/speakers.php:
|
449 |
#, php-format
|
450 |
msgid "Popular %s"
|
451 |
msgstr ""
|
452 |
|
453 |
#: app/features/events.php:180 app/features/labels.php:78
|
454 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
455 |
-
#: app/features/speakers.php:
|
456 |
#, php-format
|
457 |
msgid "Search %s"
|
458 |
msgstr ""
|
@@ -469,17 +469,17 @@ msgstr ""
|
|
469 |
msgid "Event Details"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: app/features/events.php:322 app/features/events.php:
|
473 |
-
#: app/features/events.php:
|
474 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
475 |
-
#: app/features/mec/settings.php:
|
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:
|
482 |
-
#: app/skins/single/default.php:
|
483 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
484 |
msgid "Cost"
|
485 |
msgstr ""
|
@@ -492,25 +492,25 @@ msgstr ""
|
|
492 |
msgid "Guest Data"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: app/features/events.php:432 app/features/events.php:
|
496 |
-
#: app/features/fes/form.php:668 app/features/labels.php:
|
497 |
-
#: app/features/mec/regform.php:27 app/features/organizers.php:
|
498 |
#: app/features/profile/profile.php:90 app/libraries/notifications.php:673
|
499 |
-
#: app/modules/booking/steps/form.php:
|
500 |
msgid "Name"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: app/features/events.php:433 app/features/events.php:
|
504 |
-
#: app/features/events.php:
|
505 |
-
#: app/features/mec/regform.php:39 app/features/mec/regform.php:
|
506 |
-
#: app/features/organizers.php:
|
507 |
-
#: app/features/profile/profile.php:93 app/features/speakers.php:
|
508 |
-
#: app/features/speakers.php:
|
509 |
-
#: app/libraries/main.php:
|
510 |
-
#: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:
|
511 |
-
#: app/modules/booking/steps/form.php:
|
512 |
-
#: app/skins/single.php:
|
513 |
-
#: app/skins/single/default.php:
|
514 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
515 |
msgid "Email"
|
516 |
msgstr ""
|
@@ -520,11 +520,11 @@ msgid "Date and Time"
|
|
520 |
msgstr ""
|
521 |
|
522 |
#: app/features/events.php:441 app/features/events.php:447
|
523 |
-
#: app/features/events.php:
|
524 |
-
#: app/features/events.php:
|
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:
|
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
|
@@ -542,25 +542,25 @@ msgid "Start Date"
|
|
542 |
msgstr ""
|
543 |
|
544 |
#: app/features/events.php:519 app/features/events.php:611
|
545 |
-
#: app/features/events.php:
|
546 |
-
#: app/features/events.php:
|
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:
|
553 |
-
#: app/features/events.php:
|
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:
|
560 |
-
#: app/features/events.php:
|
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:
|
564 |
msgid "End Date"
|
565 |
msgstr ""
|
566 |
|
@@ -589,18 +589,18 @@ 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:
|
593 |
-
#: app/features/events.php:
|
594 |
-
#: app/features/events.php:
|
595 |
-
#: app/features/events.php:
|
596 |
-
#: app/features/events.php:
|
597 |
-
#: app/features/events.php:
|
598 |
-
#: app/features/fes/form.php:630 app/features/locations.php:
|
599 |
-
#: app/features/mec/booking.php:
|
600 |
-
#: app/features/mec/booking.php:
|
601 |
-
#: app/features/mec/booking.php:
|
602 |
-
#: app/features/mec/booking.php:
|
603 |
-
#: app/features/mec/booking.php:
|
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
|
@@ -631,32 +631,33 @@ msgstr ""
|
|
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:
|
635 |
-
#: app/features/mec/modules.php:
|
636 |
-
#: app/features/mec/modules.php:
|
637 |
-
#: app/features/mec/notifications.php:
|
638 |
-
#: app/features/mec/notifications.php:
|
639 |
-
#: app/features/mec/notifications.php:
|
640 |
-
#: app/features/mec/notifications.php:
|
641 |
-
#: app/features/mec/notifications.php:
|
642 |
-
#: app/features/mec/notifications.php:
|
643 |
-
#: app/features/mec/notifications.php:
|
644 |
-
#: app/features/mec/
|
645 |
-
#: app/features/mec/settings.php:
|
646 |
-
#: app/features/mec/settings.php:
|
647 |
-
#: app/features/mec/settings.php:
|
648 |
-
#: app/features/mec/settings.php:
|
649 |
-
#: app/features/mec/settings.php:
|
650 |
-
#: app/features/mec/settings.php:
|
651 |
-
#: app/features/mec/settings.php:
|
652 |
-
#: app/features/mec/settings.php:
|
653 |
-
#: app/features/mec/
|
654 |
-
#: app/features/mec/single.php:
|
655 |
-
#: app/features/mec/single.php:
|
656 |
-
#: app/features/mec/single.php:
|
657 |
-
#: app/features/mec/
|
658 |
-
#: app/features/
|
659 |
-
#: app/
|
|
|
660 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
661 |
#: app/skins/single/modern.php:133
|
662 |
msgid "Read More"
|
@@ -671,7 +672,7 @@ msgid "Repeats"
|
|
671 |
msgstr ""
|
672 |
|
673 |
#: app/features/events.php:692 app/features/fes/form.php:338
|
674 |
-
#: app/features/mec/dashboard.php:
|
675 |
msgid "Daily"
|
676 |
msgstr ""
|
677 |
|
@@ -688,17 +689,17 @@ 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:
|
692 |
msgid "Weekly"
|
693 |
msgstr ""
|
694 |
|
695 |
#: app/features/events.php:727 app/features/fes/form.php:343
|
696 |
-
#: app/features/mec/dashboard.php:
|
697 |
msgid "Monthly"
|
698 |
msgstr ""
|
699 |
|
700 |
#: app/features/events.php:734 app/features/fes/form.php:344
|
701 |
-
#: app/features/mec/dashboard.php:
|
702 |
msgid "Yearly"
|
703 |
msgstr ""
|
704 |
|
@@ -764,25 +765,26 @@ msgstr ""
|
|
764 |
msgid "Sunday"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: app/features/events.php:786 app/features/events.php:
|
768 |
-
#: app/features/events.php:
|
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:
|
776 |
-
#: app/features/events.php:
|
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:
|
784 |
-
#: app/features/events.php:
|
785 |
-
#: app/features/events.php:
|
|
|
786 |
msgid "Add"
|
787 |
msgstr ""
|
788 |
|
@@ -848,12 +850,12 @@ msgstr ""
|
|
848 |
msgid "Exclude certain days"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: app/features/events.php:1130 app/features/events.php:
|
852 |
-
#: app/features/mec/regform.php:
|
853 |
-
#: app/libraries/main.php:
|
854 |
#: app/modules/booking/steps/tickets.php:22
|
855 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
856 |
-
#: app/skins/single/default.php:
|
857 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
858 |
msgid "Date"
|
859 |
msgstr ""
|
@@ -865,12 +867,12 @@ msgid ""
|
|
865 |
"multiple day occurrences."
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: app/features/events.php:1190 app/libraries/render.php:
|
869 |
msgid "Day 1"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: app/features/events.php:1212 app/features/mec/settings.php:
|
873 |
-
#: app/skins/single.php:
|
874 |
msgid "Hourly Schedule"
|
875 |
msgstr ""
|
876 |
|
@@ -891,32 +893,32 @@ 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:
|
895 |
-
#: app/features/events.php:
|
896 |
-
#: app/features/events.php:
|
897 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
898 |
-
#: app/features/ix.php:2781 app/features/mec/booking.php:
|
899 |
-
#: app/features/mec/booking.php:
|
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:
|
906 |
-
#: app/features/events.php:
|
907 |
-
#: app/features/events.php:
|
908 |
-
#: app/features/events.php:
|
909 |
-
#: app/features/events.php:
|
910 |
-
#: app/features/fes/list.php:78 app/features/mec/booking.php:
|
911 |
-
#: app/features/mec/booking.php:
|
912 |
-
#: app/features/mec/booking.php:
|
913 |
-
#: app/libraries/main.php:
|
914 |
-
#: app/libraries/main.php:
|
915 |
-
#: app/libraries/main.php:
|
916 |
-
#: app/libraries/main.php:
|
917 |
-
#: app/libraries/main.php:
|
918 |
-
#: app/libraries/main.php:
|
919 |
-
#: app/libraries/main.php:
|
920 |
msgid "Remove"
|
921 |
msgstr ""
|
922 |
|
@@ -935,21 +937,22 @@ 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:
|
939 |
-
#: app/features/events.php:
|
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:
|
945 |
-
#: app/features/mec.php:340 app/features/mec/booking.php:
|
946 |
-
#: app/features/mec/gateways.php:
|
947 |
-
#: app/features/mec/messages.php:
|
948 |
-
#: app/features/mec/
|
949 |
-
#: app/features/mec/
|
950 |
-
#: app/features/mec/
|
951 |
-
#: app/features/mec/
|
952 |
-
#: app/
|
|
|
953 |
msgid "Speakers"
|
954 |
msgstr ""
|
955 |
|
@@ -958,12 +961,12 @@ msgid "New Day"
|
|
958 |
msgstr ""
|
959 |
|
960 |
#: app/features/events.php:1402 app/features/fes/form.php:683
|
961 |
-
#: app/features/mec/settings.php:
|
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:
|
967 |
msgid "Event Link"
|
968 |
msgstr ""
|
969 |
|
@@ -984,9 +987,9 @@ 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:
|
988 |
-
#: app/skins/single.php:
|
989 |
-
#: app/skins/single/default.php:
|
990 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
991 |
#: app/widgets/single.php:107
|
992 |
msgid "More Info"
|
@@ -1010,215 +1013,224 @@ msgid ""
|
|
1010 |
"Insert full link including http(s)://"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: app/features/events.php:
|
1014 |
msgid "Total booking limits"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: app/features/events.php:
|
1018 |
-
#: app/features/events.php:
|
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:
|
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:
|
1035 |
msgid "Read About A Booking System"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: app/features/events.php:
|
1039 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1040 |
msgid "Tickets"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: app/features/events.php:
|
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:
|
1051 |
msgid "Ticket Name"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: app/features/events.php:
|
1055 |
-
#: app/features/events.php:
|
1056 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1057 |
msgid "Start Time"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: app/features/events.php:
|
1061 |
-
#: app/features/events.php:
|
1062 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1063 |
msgid "End Time"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: app/features/events.php:
|
1067 |
-
#: app/features/events.php:
|
1068 |
-
#: app/features/events.php:
|
1069 |
-
#: app/features/events.php:
|
1070 |
-
#: app/features/events.php:
|
1071 |
-
#: app/features/events.php:
|
1072 |
-
#: app/features/mec/booking.php:
|
1073 |
-
#: app/features/mec/booking.php:
|
1074 |
msgid "Price"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: app/features/events.php:
|
1078 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: app/features/events.php:
|
1082 |
-
#: app/features/events.php:
|
1083 |
msgid "Price Label"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: app/features/events.php:
|
1087 |
msgid "For showing on website. e.g. $15"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: app/features/events.php:
|
1091 |
msgid "Available Tickets"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: app/features/events.php:
|
1095 |
msgid "Price per Date"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: app/features/events.php:
|
1099 |
-
#: app/features/events.php:
|
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:
|
1104 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1105 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1106 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1107 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1108 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1109 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1110 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1111 |
-
#: app/features/mec/settings.php:
|
|
|
1112 |
msgid "Label"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: app/features/events.php:
|
1116 |
msgid "Fees"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: app/features/events.php:
|
1120 |
-
#: app/features/events.php:
|
1121 |
msgid "Inherit from global options"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: app/features/events.php:
|
1125 |
-
#: app/features/mec/booking.php:
|
1126 |
msgid "Fee Title"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: app/features/events.php:
|
1130 |
-
#: app/features/events.php:
|
1131 |
-
#: app/features/mec/booking.php:
|
1132 |
-
#: app/features/mec/booking.php:
|
1133 |
msgid "Amount"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: app/features/events.php:
|
1137 |
-
#: app/features/mec/booking.php:
|
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:
|
1144 |
-
#: app/features/mec/booking.php:
|
1145 |
msgid "Percent"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: app/features/events.php:
|
1149 |
-
#: app/features/mec/booking.php:
|
1150 |
msgid "Amount (Per Ticket)"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: app/features/events.php:
|
1154 |
-
#: app/features/mec/booking.php:
|
1155 |
msgid "Amount (Per Booking)"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: app/features/events.php:
|
1159 |
msgid "Ticket Variations / Options"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: app/features/events.php:
|
1163 |
-
#: app/features/mec/booking.php:
|
1164 |
msgid "Option Price"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: app/features/events.php:
|
1168 |
-
#: app/features/events.php:
|
1169 |
-
#: app/features/mec/booking.php:
|
1170 |
-
#: app/features/mec/booking.php:
|
1171 |
msgid "Maximum Per Ticket"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: app/features/events.php:
|
1175 |
-
#: app/features/mec/booking.php:
|
1176 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: app/features/events.php:
|
1180 |
-
#: app/libraries/main.php:
|
1181 |
msgid "MEC Name"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: app/features/events.php:
|
1185 |
-
#: app/libraries/main.php:
|
1186 |
msgid "MEC Email"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: app/features/events.php:
|
1190 |
-
#: app/libraries/main.php:
|
1191 |
msgid "Text"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: app/features/events.php:
|
1195 |
-
#: app/features/organizers.php:
|
1196 |
-
#: app/features/speakers.php:
|
1197 |
-
#: app/features/speakers.php:
|
1198 |
msgid "Tel"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: app/features/events.php:
|
1202 |
-
#: app/libraries/main.php:
|
1203 |
msgid "File"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: app/features/events.php:
|
1207 |
-
#: app/libraries/main.php:
|
1208 |
msgid "Textarea"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: app/features/events.php:
|
1212 |
-
#: app/libraries/main.php:
|
1213 |
msgid "Checkboxes"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: app/features/events.php:
|
1217 |
-
#: app/libraries/main.php:
|
1218 |
msgid "Radio Buttons"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: app/features/events.php:
|
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
|
@@ -1232,191 +1244,192 @@ msgstr ""
|
|
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:
|
1236 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1237 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1238 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1239 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1240 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1241 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1242 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1243 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1244 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1245 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1246 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1247 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1248 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1249 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1250 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1251 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1252 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1253 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1254 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1255 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1256 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1257 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1258 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1259 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1260 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1261 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1262 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1263 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1264 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1265 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1266 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1267 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1268 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1269 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1270 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1271 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1272 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1273 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1274 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1275 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1276 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1277 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1278 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1279 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1280 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1281 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1282 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1283 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1284 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1285 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1286 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1287 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1288 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1289 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1290 |
-
#: app/features/mec/regform.php:
|
1291 |
msgid "Dropdown"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: app/features/events.php:
|
1295 |
-
#: app/libraries/main.php:
|
1296 |
msgid "Agreement"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: app/features/events.php:
|
1300 |
-
#: app/libraries/main.php:
|
1301 |
msgid "Paragraph"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: app/features/events.php:
|
1305 |
-
#: app/features/events.php:
|
1306 |
#, php-format
|
1307 |
msgid "Show all %s"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: app/features/events.php:
|
1311 |
msgid "labels"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: app/features/events.php:
|
1315 |
msgid "locations"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: app/features/events.php:
|
1319 |
msgid "organizers"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: app/features/events.php:
|
1323 |
-
#: app/features/events.php:
|
1324 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1325 |
-
#: app/features/locations.php:
|
1326 |
-
#: app/features/locations.php:
|
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:
|
1331 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1332 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1333 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1334 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1335 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1336 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1337 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1338 |
-
#: app/features/mec/settings.php:
|
1339 |
-
#: app/libraries/main.php:
|
1340 |
-
#: app/skins
|
1341 |
-
#: app/skins/single
|
1342 |
-
#: app/skins/single/
|
1343 |
-
#: app/skins/single/modern.php:94
|
1344 |
msgid "Location"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: app/features/events.php:
|
1348 |
-
#: app/features/events.php:
|
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:
|
1353 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1354 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1355 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1356 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1357 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1358 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1359 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
1360 |
-
#: app/features/mec/settings.php:
|
1361 |
-
#: app/features/organizers.php:
|
1362 |
-
#: app/features/organizers.php:
|
1363 |
-
#: app/
|
1364 |
-
#: app/skins
|
1365 |
-
#: app/skins/single/default.php:
|
1366 |
-
#: app/skins/single/
|
|
|
1367 |
msgid "Organizer"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: app/features/events.php:
|
1371 |
msgid "Repeat"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: app/features/events.php:
|
1375 |
msgid "Author"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: app/features/events.php:
|
1379 |
msgid "iCal Export"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: app/features/events.php:
|
1383 |
msgid "CSV Export"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: app/features/events.php:
|
1387 |
msgid "MS Excel Export"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: app/features/events.php:
|
1391 |
msgid "XML Export"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: app/features/events.php:
|
1395 |
msgid "JSON Export"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: app/features/events.php:
|
1399 |
msgid "Duplicate"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: app/features/events.php:
|
1403 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1404 |
-
#: app/features/labels.php:
|
1405 |
-
#: app/features/organizers.php:
|
1406 |
msgid "ID"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: app/features/events.php:
|
1410 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1411 |
msgid "Link"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: app/features/events.php:
|
1415 |
#, php-format
|
1416 |
msgid "%s Tel"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: app/features/events.php:
|
1420 |
#, php-format
|
1421 |
msgid "%s Email"
|
1422 |
msgstr ""
|
@@ -1491,7 +1504,7 @@ msgstr ""
|
|
1491 |
msgid "eg. yourname@gmail.com"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: app/features/fes/form.php:669 app/features/organizers.php:
|
1495 |
msgid "eg. John Smith"
|
1496 |
msgstr ""
|
1497 |
|
@@ -1501,7 +1514,7 @@ msgid ""
|
|
1501 |
"Insert full link including http(s)://"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: app/features/fes/form.php:723 app/features/mec/settings.php:
|
1505 |
msgid "Featured Image"
|
1506 |
msgstr ""
|
1507 |
|
@@ -1510,10 +1523,10 @@ msgid "Remove Image"
|
|
1510 |
msgstr ""
|
1511 |
|
1512 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1513 |
-
#: app/features/labels.php:
|
1514 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1515 |
-
#: app/skins/single.php:
|
1516 |
-
#: app/skins/single/default.php:
|
1517 |
#: app/skins/single/modern.php:214
|
1518 |
msgid "Labels"
|
1519 |
msgstr ""
|
@@ -1527,7 +1540,15 @@ msgstr ""
|
|
1527 |
msgid "Insert your desired tags, comma separated."
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: app/features/fes/form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1531 |
msgid "Submit"
|
1532 |
msgstr ""
|
1533 |
|
@@ -1552,12 +1573,12 @@ msgstr ""
|
|
1552 |
msgid "MEC - Import / Export"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: app/features/ix.php:107 app/features/mec/booking.php:
|
1556 |
-
#: app/features/mec/gateways.php:
|
1557 |
-
#: app/features/mec/messages.php:
|
1558 |
-
#: app/features/mec/notifications.php:
|
1559 |
-
#: app/features/mec/settings.php:
|
1560 |
-
#: app/features/mec/styles.php:
|
1561 |
#: app/features/mec/support.php:73
|
1562 |
msgid "Import / Export"
|
1563 |
msgstr ""
|
@@ -1685,7 +1706,7 @@ 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:
|
1689 |
msgid "Export"
|
1690 |
msgstr ""
|
1691 |
|
@@ -1696,7 +1717,7 @@ msgstr ""
|
|
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:
|
1700 |
msgid "Import"
|
1701 |
msgstr ""
|
1702 |
|
@@ -1717,7 +1738,7 @@ msgid ""
|
|
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:
|
1721 |
msgid "iCal"
|
1722 |
msgstr ""
|
1723 |
|
@@ -1815,16 +1836,16 @@ msgstr ""
|
|
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:
|
1819 |
-
#: app/features/mec/notifications.php:
|
1820 |
-
#: app/features/mec/notifications.php:
|
1821 |
-
#: app/features/mec/notifications.php:
|
1822 |
msgid "Add to Google Calendar"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:
|
1826 |
-
#: app/features/mec/modules.php:
|
1827 |
-
#: app/features/mec/settings.php:
|
1828 |
msgid "Checking ..."
|
1829 |
msgstr ""
|
1830 |
|
@@ -1866,17 +1887,17 @@ msgstr ""
|
|
1866 |
msgid "ICS Feed"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: app/features/ix/import.php:46 app/features/mec/booking.php:
|
1870 |
-
#: app/features/mec/booking.php:
|
1871 |
-
#: app/features/mec/booking.php:
|
1872 |
-
#: app/features/mec/modules.php:
|
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:
|
1879 |
-
#: app/features/mec/booking.php:
|
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
|
@@ -1884,8 +1905,8 @@ msgstr ""
|
|
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:
|
1888 |
-
#: app/features/mec/modules.php:
|
1889 |
msgid "Pro version of Modern Events Calendar"
|
1890 |
msgstr ""
|
1891 |
|
@@ -2048,7 +2069,7 @@ msgstr ""
|
|
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:
|
2052 |
msgid "Important Note"
|
2053 |
msgstr ""
|
2054 |
|
@@ -2142,16 +2163,22 @@ msgid ""
|
|
2142 |
"listings one by one on MEC edit event page and make sure they are correct."
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: app/features/labels.php:
|
2146 |
-
#: app/features/
|
|
|
|
|
|
|
|
|
|
|
|
|
2147 |
msgid "Color"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: app/features/labels.php:
|
2151 |
msgid "Select label color"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: app/features/labels.php:
|
2155 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2156 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2157 |
#: app/features/mec/meta_boxes/display_options.php:301
|
@@ -2165,144 +2192,144 @@ msgstr ""
|
|
2165 |
msgid "Style"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: app/features/labels.php:
|
2169 |
msgid "Normal"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: app/features/labels.php:
|
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:
|
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:
|
2178 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2179 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2180 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:136
|
2181 |
-
#: app/skins/weekly_view/render.php:
|
2182 |
msgid "Featured"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: app/features/labels.php:
|
2186 |
-
#: app/libraries/main.php:
|
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:
|
2190 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2191 |
-
#: app/skins/monthly_view/calendar.php:
|
2192 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
2193 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2194 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:137
|
2195 |
-
#: app/skins/weekly_view/render.php:
|
2196 |
msgid "Canceled"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: app/features/labels.php:
|
2200 |
msgid "You can show featured and canceled events by a different style!"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: app/features/labels.php:
|
2204 |
-
#: app/features/organizers.php:
|
2205 |
#: app/modules/booking/steps/tickets.php:38
|
2206 |
msgid "Count"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: app/features/labels.php:
|
2210 |
-
#: app/features/organizers.php:
|
2211 |
msgid "Slug"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: app/features/labels.php:
|
2215 |
#, php-format
|
2216 |
msgid "Event %s"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2220 |
-
#: app/features/mec/dashboard.php:
|
2221 |
-
#: app/libraries/main.php:
|
2222 |
msgid "Locations"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: app/features/locations.php:
|
2226 |
-
#: app/features/locations.php:
|
2227 |
msgid "Address"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: app/features/locations.php:
|
2231 |
msgid "Enter the location address"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: app/features/locations.php:
|
2235 |
-
#: app/features/locations.php:
|
2236 |
msgid "Latitude"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: app/features/locations.php:
|
2240 |
msgid "Geo latitude (Optional)"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: app/features/locations.php:
|
2244 |
-
#: app/features/locations.php:
|
2245 |
msgid "Longitude"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: app/features/locations.php:
|
2249 |
msgid "Geo longitude (Optional)"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: app/features/locations.php:
|
2253 |
-
#: app/features/organizers.php:
|
2254 |
-
#: app/features/speakers.php:
|
2255 |
msgid "Thumbnail"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: app/features/locations.php:
|
2259 |
-
#: app/features/organizers.php:
|
2260 |
-
#: app/features/speakers.php:
|
2261 |
msgid "Upload/Add image"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: app/features/locations.php:
|
2265 |
-
#: app/features/locations.php:
|
2266 |
-
#: app/features/organizers.php:
|
2267 |
-
#: app/features/organizers.php:
|
2268 |
-
#: app/features/speakers.php:
|
2269 |
msgid "Remove image"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: app/features/locations.php:
|
2273 |
msgid "Hide location"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: app/features/locations.php:
|
2277 |
msgid "Insert a new location"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: app/features/locations.php:
|
2281 |
msgid "Choose one of saved locations or insert new one below."
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: app/features/locations.php:
|
2285 |
msgid "Location Name"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: app/features/locations.php:
|
2289 |
msgid "eg. City Hall"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: app/features/locations.php:
|
2293 |
#: app/widgets/single.php:115
|
2294 |
msgid "Event Location"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: app/features/locations.php:
|
2298 |
msgid "eg. City hall, Manhattan, New York"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: app/features/locations.php:
|
2302 |
msgid "Latitude/Longitude"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: app/features/locations.php:
|
2306 |
msgid ""
|
2307 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2308 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2311,23 +2338,23 @@ msgid ""
|
|
2311 |
"the location on the map to find lat long coordinates."
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: app/features/locations.php:
|
2315 |
msgid "Get Latitude and Longitude"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: app/features/locations.php:
|
2319 |
msgid "Choose image"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: app/features/locations.php:
|
2323 |
msgid "Don't show map in single event page"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: app/features/locations.php:
|
2327 |
msgid "Other Locations"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: app/features/locations.php:
|
2331 |
msgid ""
|
2332 |
"You can select extra locations in addition to main location if you like."
|
2333 |
msgstr ""
|
@@ -2365,14 +2392,14 @@ msgstr ""
|
|
2365 |
msgid "Support"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: app/features/mec.php:335 app/features/mec/dashboard.php:
|
2369 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2370 |
-
#: app/libraries/main.php:
|
2371 |
msgid "Organizers"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
#: app/features/mec.php:343 app/features/mec.php:363
|
2375 |
-
#: app/features/mec/dashboard.php:
|
2376 |
msgid "Shortcodes"
|
2377 |
msgstr ""
|
2378 |
|
@@ -2470,32 +2497,32 @@ msgid ""
|
|
2470 |
"your host provider in this regard."
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: app/features/mec/booking.php:24 app/features/mec/booking.php:
|
2474 |
-
#: app/features/mec/booking.php:
|
2475 |
-
#: app/features/mec/booking.php:
|
2476 |
-
#: app/features/mec/gateways.php:
|
2477 |
-
#: app/features/mec/gateways.php:
|
2478 |
-
#: app/features/mec/messages.php:11 app/features/mec/messages.php:
|
2479 |
-
#: app/features/mec/messages.php:
|
2480 |
-
#: app/features/mec/messages.php:
|
2481 |
-
#: app/features/mec/modules.php:
|
2482 |
-
#: app/features/mec/modules.php:
|
2483 |
-
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:
|
2484 |
-
#: app/features/mec/notifications.php:
|
2485 |
-
#: app/features/mec/notifications.php:
|
2486 |
-
#: app/features/mec/notifications.php:
|
2487 |
-
#: app/features/mec/regform.php:
|
2488 |
-
#: app/features/mec/regform.php:
|
2489 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2490 |
-
#: app/features/mec/settings.php:
|
2491 |
-
#: app/features/mec/settings.php:
|
2492 |
-
#: app/features/mec/single.php:
|
2493 |
-
#: app/features/mec/single.php:
|
2494 |
-
#: app/features/mec/styles.php:11 app/features/mec/styles.php:
|
2495 |
-
#: app/features/mec/styles.php:
|
2496 |
-
#: app/features/mec/styles.php:
|
2497 |
-
#: app/features/mec/styling.php:
|
2498 |
-
#: app/features/mec/styling.php:
|
2499 |
msgid "Save Changes"
|
2500 |
msgstr ""
|
2501 |
|
@@ -2503,7 +2530,7 @@ msgstr ""
|
|
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:
|
2507 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2508 |
msgid "Archive Pages"
|
2509 |
msgstr ""
|
@@ -2512,7 +2539,7 @@ msgstr ""
|
|
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:
|
2516 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2517 |
msgid "User Profile"
|
2518 |
msgstr ""
|
@@ -2521,7 +2548,7 @@ msgstr ""
|
|
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:
|
2525 |
#: app/features/mec/styles.php:35 app/features/mec/styling.php:57
|
2526 |
msgid "Search Bar"
|
2527 |
msgstr ""
|
@@ -2548,7 +2575,7 @@ msgstr ""
|
|
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:
|
2552 |
#: app/features/mec/styles.php:51 app/features/mec/styling.php:73
|
2553 |
msgid "Single Event Page"
|
2554 |
msgstr ""
|
@@ -2557,7 +2584,7 @@ msgstr ""
|
|
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:
|
2561 |
#: app/features/mec/styles.php:54 app/features/mec/styling.php:76
|
2562 |
msgid "Additional Organizers"
|
2563 |
msgstr ""
|
@@ -2571,187 +2598,197 @@ msgstr ""
|
|
2571 |
msgid "Additional Locations"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: app/features/mec/booking.php:
|
2575 |
-
#: app/features/mec/
|
2576 |
-
#: app/features/mec/
|
2577 |
-
#: app/features/mec/
|
2578 |
-
#: app/features/mec/
|
2579 |
-
#: app/features/mec/styles.php:
|
2580 |
-
|
|
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: app/features/mec/booking.php:
|
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:
|
2588 |
#: app/features/mec/styles.php:73 app/features/mec/styling.php:95
|
2589 |
-
msgid "
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: app/features/mec/booking.php:
|
2593 |
-
#: app/features/mec/
|
2594 |
-
#: app/features/mec/
|
2595 |
-
#: app/features/mec/
|
2596 |
-
#: app/features/mec/
|
2597 |
-
#: app/features/mec/styling.php:
|
2598 |
-
msgid "
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: app/features/mec/booking.php:
|
2602 |
-
#: app/features/mec/ie.php:
|
2603 |
-
#: app/features/mec/modules.php:
|
2604 |
-
#: app/features/mec/
|
2605 |
-
#: app/features/mec/
|
2606 |
-
#: app/features/mec/
|
2607 |
-
msgid "
|
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:
|
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:
|
2615 |
#: app/features/mec/styles.php:93 app/features/mec/styling.php:115
|
2616 |
-
|
2617 |
-
msgid "Local Time"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: app/features/mec/booking.php:
|
2621 |
-
#: app/features/mec/ie.php:
|
2622 |
-
#: app/features/mec/modules.php:
|
2623 |
-
#: app/features/mec/notifications.php:
|
2624 |
-
#: app/features/mec/settings.php:
|
2625 |
-
#: app/features/mec/styles.php:
|
2626 |
-
#: app/modules/
|
2627 |
-
msgid "
|
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:
|
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:
|
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:
|
2641 |
-
#: app/features/mec/ie.php:
|
2642 |
-
#: app/features/mec/modules.php:
|
2643 |
-
#: app/features/mec/notifications.php:
|
2644 |
-
#: app/features/mec/settings.php:
|
2645 |
-
#: app/features/mec/styles.php:
|
2646 |
#: app/modules/next-event/details.php:82
|
2647 |
msgid "Next Event"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: app/features/mec/booking.php:
|
2651 |
-
#: app/features/mec/ie.php:
|
2652 |
-
#: app/features/mec/modules.php:
|
2653 |
-
#: app/features/mec/notifications.php:
|
2654 |
-
#: app/features/mec/settings.php:
|
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
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: app/features/mec/booking.php:171 app/features/mec/
|
2670 |
-
#: app/features/mec/
|
2671 |
-
#: app/features/mec/
|
2672 |
-
#: app/features/mec/notifications.php:
|
2673 |
-
#: app/features/mec/
|
|
|
2674 |
#: app/features/mec/styles.php:136 app/features/mec/styling.php:158
|
2675 |
-
msgid "Booking
|
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:
|
2681 |
-
#: app/features/mec/notifications.php:
|
2682 |
-
#: app/features/mec/settings.php:209 app/features/mec/single.php:
|
2683 |
#: app/features/mec/styles.php:137 app/features/mec/styling.php:159
|
2684 |
-
msgid "
|
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:
|
2690 |
-
#: app/features/mec/notifications.php:
|
2691 |
-
#: app/features/mec/settings.php:210 app/features/mec/single.php:
|
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:
|
2698 |
-
#: app/features/mec/ie.php:
|
2699 |
-
#: app/features/mec/modules.php:
|
2700 |
-
#: app/features/mec/notifications.php:
|
2701 |
-
#: app/features/mec/settings.php:
|
2702 |
-
#: app/features/mec/styles.php:
|
2703 |
#: app/features/mec/support-page.php:80
|
2704 |
msgid "New Event"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: app/features/mec/booking.php:
|
2708 |
-
#: app/features/mec/ie.php:
|
2709 |
-
#: app/features/mec/modules.php:
|
2710 |
-
#: app/features/mec/regform.php:
|
2711 |
-
#: app/features/mec/single.php:
|
2712 |
-
#: app/features/mec/styling.php:
|
2713 |
msgid "Styling Options"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: app/features/mec/booking.php:
|
2717 |
-
#: app/features/mec/ie.php:
|
2718 |
-
#: app/features/mec/modules.php:
|
2719 |
-
#: app/features/mec/regform.php:
|
2720 |
-
#: app/features/mec/single.php:
|
2721 |
-
#: app/features/mec/styling.php:
|
2722 |
msgid "Custom CSS"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
-
#: app/features/mec/booking.php:
|
2726 |
-
#: app/features/mec/ie.php:
|
2727 |
-
#: app/features/mec/messages.php:
|
2728 |
-
#: app/features/mec/notifications.php:
|
2729 |
-
#: app/features/mec/settings.php:
|
2730 |
-
#: app/features/mec/styles.php:
|
2731 |
#: app/features/mec/support.php:66
|
2732 |
msgid "Messages"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: app/features/mec/booking.php:
|
2736 |
msgid "Enable booking module"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: app/features/mec/booking.php:
|
2740 |
msgid ""
|
2741 |
-
"After
|
2742 |
-
"settings and
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: app/features/mec/booking.php:
|
2746 |
-
#: app/features/mec/modules.php:
|
2747 |
msgid "Date Format"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: app/features/mec/booking.php:
|
2751 |
msgid "Default is Y-m-d"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: app/features/mec/booking.php:
|
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
|
@@ -2761,130 +2798,130 @@ msgstr ""
|
|
2761 |
msgid "Limit"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: app/features/mec/booking.php:
|
2765 |
msgid "Default is empty"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: app/features/mec/booking.php:
|
2769 |
msgid "Booking Limit"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: app/features/mec/booking.php:
|
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:
|
2779 |
msgid "Maximum Dates"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: app/features/mec/booking.php:
|
2783 |
msgid "Default is 6"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: app/features/mec/booking.php:
|
2787 |
msgid "Thank You Page"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: app/features/mec/booking.php:
|
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:
|
2797 |
msgid "Enable Express Attendees Form"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: app/features/mec/booking.php:
|
2801 |
msgid "Attendees Form"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: app/features/mec/booking.php:
|
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:
|
2811 |
msgid "Enable Invoice"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: app/features/mec/booking.php:
|
2815 |
msgid "Email verification"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: app/features/mec/booking.php:
|
2819 |
msgid "Auto verification for free bookings"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: app/features/mec/booking.php:
|
2823 |
msgid "Auto verification for paid bookings"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: app/features/mec/booking.php:
|
2827 |
msgid "Auto confirmation for free bookings"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: app/features/mec/booking.php:
|
2831 |
msgid "Auto confirmation for paid bookings"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: app/features/mec/booking.php:
|
2835 |
msgid "Enable coupons module"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: app/features/mec/booking.php:
|
2839 |
msgid ""
|
2840 |
-
"After
|
2841 |
-
"Dashboard > Booking"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: app/features/mec/booking.php:
|
2845 |
msgid "Enable taxes / fees module"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: app/features/mec/booking.php:
|
2849 |
msgid "Add Fee"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: app/features/mec/booking.php:
|
2853 |
msgid "Enable ticket options module"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: app/features/mec/booking.php:
|
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:
|
2870 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
2871 |
-
#: app/features/mec/settings.php:
|
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:
|
2877 |
-
#: app/features/mec/modules.php:
|
2878 |
-
#: app/features/mec/notifications.php:
|
2879 |
-
#: app/features/mec/notifications.php:
|
2880 |
-
#: app/features/mec/settings.php:
|
2881 |
-
#: app/features/mec/single.php:
|
2882 |
msgid "Verified"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#: app/features/mec/booking.php:
|
2886 |
-
#: app/features/mec/notifications.php:
|
2887 |
-
#: app/features/mec/single.php:
|
2888 |
msgid "Please Refresh Page"
|
2889 |
msgstr ""
|
2890 |
|
@@ -2941,104 +2978,108 @@ msgstr ""
|
|
2941 |
msgid "MEC Activate"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: app/features/mec/dashboard.php:
|
2945 |
msgid ""
|
2946 |
"In order to use all plugin features and options, please enter your purchase "
|
2947 |
"code."
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: app/features/mec/dashboard.php:
|
2951 |
msgid "Activate Addons"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: app/features/mec/dashboard.php:
|
|
|
|
|
|
|
|
|
2955 |
msgid "Upcoming Events"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: app/features/mec/dashboard.php:
|
2959 |
msgid "Popular Gateways"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: app/features/mec/dashboard.php:
|
2963 |
msgid "Total Bookings"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: app/features/mec/dashboard.php:
|
2967 |
msgid "This Month"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: app/features/mec/dashboard.php:
|
2971 |
msgid "Last Month"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: app/features/mec/dashboard.php:
|
2975 |
msgid "This Year"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: app/features/mec/dashboard.php:
|
2979 |
msgid "Last Year"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: app/features/mec/dashboard.php:
|
2983 |
msgid "Bar"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: app/features/mec/dashboard.php:
|
2987 |
msgid "Line"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: app/features/mec/dashboard.php:
|
2991 |
msgid "Filter"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: app/features/mec/dashboard.php:
|
2995 |
#, php-format
|
2996 |
msgid "Total Sells (%s)"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
-
#: app/features/mec/dashboard.php:
|
3000 |
msgid "Change Log"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: app/features/mec/gateways.php:
|
3004 |
msgid "Enable Organizer Payment Module"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
-
#: app/features/mec/gateways.php:
|
3008 |
msgid "Organizer Payment"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: app/features/mec/gateways.php:
|
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:
|
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:
|
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:
|
3030 |
msgid "Please paste your options here"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: app/features/mec/ie.php:
|
3034 |
msgid "Import Settings"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: app/features/mec/ie.php:
|
3038 |
msgid "Download Settings"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: app/features/mec/messages.php:
|
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 "
|
@@ -3054,16 +3095,16 @@ msgstr ""
|
|
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:
|
3058 |
-
#: app/features/mec/settings.php:
|
3059 |
-
#: app/features/mec/settings.php:
|
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:
|
3066 |
-
#: app/features/mec/settings.php:
|
3067 |
msgid "Minimal"
|
3068 |
msgstr ""
|
3069 |
|
@@ -3073,20 +3114,20 @@ msgstr ""
|
|
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:
|
3077 |
-
#: app/features/mec/settings.php:
|
3078 |
-
#: app/features/mec/settings.php:
|
3079 |
-
#: app/features/mec/settings.php:
|
3080 |
msgid "Modern"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3084 |
-
#: app/features/mec/settings.php:
|
3085 |
msgid "Standard"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3089 |
-
#: app/features/mec/settings.php:
|
3090 |
msgid "Accordion"
|
3091 |
msgstr ""
|
3092 |
|
@@ -3301,17 +3342,17 @@ msgstr ""
|
|
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:
|
3305 |
-
#: app/features/mec/settings.php:
|
3306 |
-
#: app/features/mec/settings.php:
|
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:
|
3314 |
-
#: app/features/mec/settings.php:
|
3315 |
msgid "Simple"
|
3316 |
msgstr ""
|
3317 |
|
@@ -3322,8 +3363,8 @@ msgstr ""
|
|
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:
|
3326 |
-
#: app/features/mec/settings.php:
|
3327 |
msgid "Novel"
|
3328 |
msgstr ""
|
3329 |
|
@@ -3368,15 +3409,15 @@ 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:
|
3372 |
-
#: app/libraries/main.php:
|
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:
|
3379 |
-
#: app/libraries/main.php:
|
3380 |
msgid "Yearly View"
|
3381 |
msgstr ""
|
3382 |
|
@@ -3387,15 +3428,15 @@ msgstr ""
|
|
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:
|
3391 |
-
#: app/libraries/main.php:
|
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:
|
3398 |
-
#: app/libraries/main.php:
|
3399 |
msgid "Daily View"
|
3400 |
msgstr ""
|
3401 |
|
@@ -3703,392 +3744,390 @@ msgstr ""
|
|
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:
|
3707 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3708 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3709 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3710 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3711 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3712 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3713 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3714 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3715 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3716 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3717 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3718 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3719 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3720 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3721 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3722 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3723 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3724 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3725 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3726 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3727 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3728 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3729 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3730 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3731 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3732 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3733 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3734 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3735 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3736 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3737 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3738 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3739 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3740 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3741 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3742 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3743 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3744 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3745 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3746 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3747 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3748 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3749 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3750 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3751 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3752 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3753 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3754 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3755 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3756 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3757 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3758 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3759 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3760 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3761 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3762 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3763 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3764 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3765 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3766 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3767 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3768 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3769 |
-
#: app/features/mec/modules.php:
|
3770 |
-
#: app/features/mec/settings.php:
|
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:
|
3777 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3778 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3779 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3780 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3781 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3782 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3783 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3784 |
-
#: app/features/mec/settings.php:
|
3785 |
-
#: app/features/speakers.php:
|
3786 |
-
#: app/libraries/skins.php:
|
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:
|
3793 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3794 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3795 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3796 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3797 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3798 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3799 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3800 |
-
#: app/features/mec/settings.php:
|
|
|
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:
|
3807 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3808 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3809 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3810 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3811 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3812 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
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:
|
3819 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3820 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3821 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3822 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3823 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3824 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3825 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
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:
|
3832 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3833 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3834 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3835 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3836 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3837 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3838 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3839 |
msgid "Text Input"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3843 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3844 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3845 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3846 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3847 |
-
#: app/features/mec/meta_boxes/search_form.php:
|
3848 |
msgid "No Search Options"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
-
#: app/features/mec/modules.php:
|
3852 |
msgid "Speakers Options"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#: app/features/mec/modules.php:
|
3856 |
msgid "Enable speakers feature"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
-
#: app/features/mec/modules.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3860 |
msgid ""
|
3861 |
-
"After
|
3862 |
-
"Dashboard > MEC"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: app/features/mec/modules.php:
|
3866 |
msgid "Show Google Maps on event page"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: app/features/mec/modules.php:
|
3870 |
-
#: app/features/mec/settings.php:
|
3871 |
msgid "API Key"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: app/features/mec/modules.php:
|
3875 |
-
#: app/features/mec/settings.php:
|
3876 |
msgid "Required!"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: app/features/mec/modules.php:
|
3880 |
msgid "Zoom level"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
-
#: app/features/mec/modules.php:
|
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:
|
3890 |
msgid "Google Maps Style"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: app/features/mec/modules.php:
|
3894 |
msgid "Default"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: app/features/mec/modules.php:
|
3898 |
msgid "Direction on single event"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#: app/features/mec/modules.php:
|
3902 |
msgid "Simple Method"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: app/features/mec/modules.php:
|
3906 |
msgid "Advanced Method"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: app/features/mec/modules.php:
|
3910 |
msgid "Lightbox Date Format"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: app/features/mec/modules.php:
|
3914 |
msgid "Default value is M d Y"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: app/features/mec/modules.php:
|
3918 |
msgid "Google Maps API"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#: app/features/mec/modules.php:
|
3922 |
msgid "Don't load Google Maps API library"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: app/features/mec/modules.php:
|
3926 |
msgid "Check it only if another plugin/theme is loading the Google Maps API"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: app/features/mec/modules.php:
|
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:
|
3935 |
msgid "Google Calendar"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: app/features/mec/modules.php:
|
3939 |
msgid "Show event time based on local time of visitor on event page"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: app/features/mec/modules.php:
|
3943 |
msgid "Show QR code of event in details page and booking invoice"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: app/features/mec/modules.php:
|
3947 |
msgid "Show weather module on event page"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: app/features/mec/modules.php:
|
3951 |
#, php-format
|
3952 |
msgid "You can get a free API Key from %s"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: app/features/mec/modules.php:
|
3956 |
msgid "Show weather imperial units"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: app/features/mec/modules.php:
|
3960 |
msgid "Show weather change units button"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: app/features/mec/modules.php:
|
3964 |
msgid "Show social network module"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: app/features/mec/modules.php:
|
3968 |
msgid "Show next event module on event page"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: app/features/mec/modules.php:
|
3972 |
msgid "Method"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: app/features/mec/modules.php:
|
3976 |
msgid "Next Occurrence of Current Event"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: app/features/mec/modules.php:
|
3980 |
msgid "Next Occurrence of Other Events"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: app/features/mec/modules.php:
|
3984 |
msgid "Default is M d Y"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
#: app/features/mec/modules.php:
|
3988 |
msgid "Enable BuddyPress Integration"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
-
#: app/features/mec/modules.php:
|
3992 |
msgid "Show \"Attendees Module\" in event details page"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
-
#: app/features/mec/modules.php:
|
3996 |
msgid "Attendees Limit"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: app/features/mec/modules.php:
|
4000 |
msgid "Add booking activity to user profile"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#: app/features/mec/notifications.php:
|
4004 |
msgid "Enable booking notification"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
-
#: app/features/mec/notifications.php:
|
4008 |
msgid "It sends to attendee after booking for notifying him/her."
|
4009 |
msgstr ""
|
4010 |
|
4011 |
-
#: app/features/mec/notifications.php:
|
4012 |
-
#: app/features/mec/notifications.php:
|
4013 |
-
#: app/features/mec/notifications.php:
|
4014 |
-
#: app/features/mec/notifications.php:
|
4015 |
-
#: app/features/mec/notifications.php:
|
4016 |
-
#: app/features/mec/notifications.php:
|
4017 |
-
#: app/features/mec/notifications.php:
|
4018 |
msgid "Email Subject"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#: app/features/mec/notifications.php:
|
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:
|
4051 |
-
#: app/features/mec/notifications.php:
|
4052 |
-
#: app/features/mec/notifications.php:
|
4053 |
msgid "Send the email to event organizer"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: app/features/mec/notifications.php:
|
4057 |
-
#: app/features/mec/notifications.php:
|
4058 |
-
#: app/features/mec/notifications.php:
|
4059 |
-
#: app/features/mec/notifications.php:
|
4060 |
-
#: app/features/mec/notifications.php:
|
4061 |
-
#: app/features/mec/notifications.php:
|
4062 |
-
#: app/features/mec/notifications.php:
|
4063 |
msgid "Email Content"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: app/features/mec/notifications.php:
|
4067 |
-
#: app/features/mec/notifications.php:
|
4068 |
-
#: app/features/mec/notifications.php:
|
4069 |
-
#: app/features/mec/notifications.php:
|
4070 |
-
#: app/features/mec/notifications.php:
|
4071 |
-
#: app/features/mec/notifications.php:
|
4072 |
-
#: app/features/mec/notifications.php:
|
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
|
4086 |
#: app/features/mec/notifications.php:314
|
4087 |
#: app/features/mec/notifications.php:366
|
4088 |
#: app/features/mec/notifications.php:437
|
4089 |
#: app/features/mec/notifications.php:497
|
4090 |
#: app/features/mec/notifications.php:567
|
4091 |
-
msgid "
|
4092 |
msgstr ""
|
4093 |
|
4094 |
#: app/features/mec/notifications.php:262
|
@@ -4097,7 +4136,7 @@ msgstr ""
|
|
4097 |
#: app/features/mec/notifications.php:438
|
4098 |
#: app/features/mec/notifications.php:498
|
4099 |
#: app/features/mec/notifications.php:568
|
4100 |
-
msgid "
|
4101 |
msgstr ""
|
4102 |
|
4103 |
#: app/features/mec/notifications.php:263
|
@@ -4106,7 +4145,7 @@ msgstr ""
|
|
4106 |
#: app/features/mec/notifications.php:439
|
4107 |
#: app/features/mec/notifications.php:499
|
4108 |
#: app/features/mec/notifications.php:569
|
4109 |
-
msgid "
|
4110 |
msgstr ""
|
4111 |
|
4112 |
#: app/features/mec/notifications.php:264
|
@@ -4115,7 +4154,7 @@ msgstr ""
|
|
4115 |
#: app/features/mec/notifications.php:440
|
4116 |
#: app/features/mec/notifications.php:500
|
4117 |
#: app/features/mec/notifications.php:570
|
4118 |
-
msgid "Booked
|
4119 |
msgstr ""
|
4120 |
|
4121 |
#: app/features/mec/notifications.php:265
|
@@ -4124,7 +4163,7 @@ msgstr ""
|
|
4124 |
#: app/features/mec/notifications.php:441
|
4125 |
#: app/features/mec/notifications.php:501
|
4126 |
#: app/features/mec/notifications.php:571
|
4127 |
-
msgid "
|
4128 |
msgstr ""
|
4129 |
|
4130 |
#: app/features/mec/notifications.php:266
|
@@ -4133,8 +4172,7 @@ msgstr ""
|
|
4133 |
#: app/features/mec/notifications.php:442
|
4134 |
#: app/features/mec/notifications.php:502
|
4135 |
#: app/features/mec/notifications.php:572
|
4136 |
-
|
4137 |
-
msgid "Your website title"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
#: app/features/mec/notifications.php:267
|
@@ -4144,7 +4182,7 @@ msgstr ""
|
|
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
|
4148 |
msgstr ""
|
4149 |
|
4150 |
#: app/features/mec/notifications.php:268
|
@@ -4154,7 +4192,7 @@ msgstr ""
|
|
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
|
4158 |
msgstr ""
|
4159 |
|
4160 |
#: app/features/mec/notifications.php:269
|
@@ -4163,7 +4201,8 @@ msgstr ""
|
|
4163 |
#: app/features/mec/notifications.php:445
|
4164 |
#: app/features/mec/notifications.php:505
|
4165 |
#: app/features/mec/notifications.php:575
|
4166 |
-
|
|
|
4167 |
msgstr ""
|
4168 |
|
4169 |
#: app/features/mec/notifications.php:270
|
@@ -4172,7 +4211,7 @@ msgstr ""
|
|
4172 |
#: app/features/mec/notifications.php:446
|
4173 |
#: app/features/mec/notifications.php:506
|
4174 |
#: app/features/mec/notifications.php:576
|
4175 |
-
msgid "Event
|
4176 |
msgstr ""
|
4177 |
|
4178 |
#: app/features/mec/notifications.php:271
|
@@ -4181,7 +4220,7 @@ msgstr ""
|
|
4181 |
#: app/features/mec/notifications.php:447
|
4182 |
#: app/features/mec/notifications.php:507
|
4183 |
#: app/features/mec/notifications.php:577
|
4184 |
-
msgid "
|
4185 |
msgstr ""
|
4186 |
|
4187 |
#: app/features/mec/notifications.php:272
|
@@ -4190,7 +4229,7 @@ msgstr ""
|
|
4190 |
#: app/features/mec/notifications.php:448
|
4191 |
#: app/features/mec/notifications.php:508
|
4192 |
#: app/features/mec/notifications.php:578
|
4193 |
-
msgid "
|
4194 |
msgstr ""
|
4195 |
|
4196 |
#: app/features/mec/notifications.php:273
|
@@ -4199,7 +4238,7 @@ msgstr ""
|
|
4199 |
#: app/features/mec/notifications.php:449
|
4200 |
#: app/features/mec/notifications.php:509
|
4201 |
#: app/features/mec/notifications.php:579
|
4202 |
-
msgid "Organizer
|
4203 |
msgstr ""
|
4204 |
|
4205 |
#: app/features/mec/notifications.php:274
|
@@ -4208,7 +4247,7 @@ msgstr ""
|
|
4208 |
#: app/features/mec/notifications.php:450
|
4209 |
#: app/features/mec/notifications.php:510
|
4210 |
#: app/features/mec/notifications.php:580
|
4211 |
-
msgid "Organizer
|
4212 |
msgstr ""
|
4213 |
|
4214 |
#: app/features/mec/notifications.php:275
|
@@ -4217,7 +4256,7 @@ msgstr ""
|
|
4217 |
#: app/features/mec/notifications.php:451
|
4218 |
#: app/features/mec/notifications.php:511
|
4219 |
#: app/features/mec/notifications.php:581
|
4220 |
-
msgid "
|
4221 |
msgstr ""
|
4222 |
|
4223 |
#: app/features/mec/notifications.php:276
|
@@ -4226,104 +4265,113 @@ msgstr ""
|
|
4226 |
#: app/features/mec/notifications.php:452
|
4227 |
#: app/features/mec/notifications.php:512
|
4228 |
#: app/features/mec/notifications.php:582
|
4229 |
-
msgid "Location
|
4230 |
msgstr ""
|
4231 |
|
4232 |
#: app/features/mec/notifications.php:277
|
4233 |
-
#: app/features/mec/notifications.php:
|
4234 |
-
#: app/features/mec/notifications.php:
|
4235 |
-
|
|
|
|
|
|
|
4236 |
msgstr ""
|
4237 |
|
4238 |
#: app/features/mec/notifications.php:278
|
4239 |
-
#: app/features/mec/notifications.php:
|
4240 |
-
#: app/features/mec/notifications.php:
|
4241 |
-
msgid "
|
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 "
|
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 "
|
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
|
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:
|
4275 |
msgid "It sends to attendee email for verifying their booking/email."
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: app/features/mec/notifications.php:
|
4279 |
msgid "Email/Booking verification link."
|
4280 |
msgstr ""
|
4281 |
|
4282 |
-
#: app/features/mec/notifications.php:
|
4283 |
msgid "It sends to attendee after confirming the booking by admin."
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: app/features/mec/notifications.php:
|
4287 |
-
#: app/features/mec/
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-03 17:08+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-03 17:10+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:288
|
25 |
msgid "Content"
|
26 |
msgstr ""
|
27 |
|
56 |
msgstr ""
|
57 |
|
58 |
#: app/features/colors.php:50 app/features/fes/form.php:794
|
59 |
+
#: app/features/mec/settings.php:792
|
60 |
msgid "Event Color"
|
61 |
msgstr ""
|
62 |
|
71 |
msgid "Settings"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: app/features/contextual.php:62 app/features/events.php:2268
|
75 |
+
#: app/features/mec/booking.php:148 app/features/mec/gateways.php:113
|
76 |
+
#: app/features/mec/ie.php:109 app/features/mec/messages.php:113
|
77 |
+
#: app/features/mec/modules.php:175 app/features/mec/notifications.php:112
|
78 |
+
#: app/features/mec/regform.php:149 app/features/mec/regform.php:218
|
79 |
+
#: app/features/mec/settings.php:185 app/features/mec/single.php:146
|
80 |
+
#: app/features/mec/styles.php:113 app/features/mec/styling.php:135
|
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:155
|
95 |
+
#: app/features/mec/gateways.php:120 app/features/mec/gateways.php:183
|
96 |
+
#: app/features/mec/ie.php:116 app/features/mec/messages.php:120
|
97 |
+
#: app/features/mec/modules.php:182 app/features/mec/notifications.php:119
|
98 |
+
#: app/features/mec/regform.php:156 app/features/mec/settings.php:192
|
99 |
+
#: app/features/mec/single.php:153 app/features/mec/styles.php:120
|
100 |
+
#: app/features/mec/styling.php:142 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:164
|
112 |
+
#: app/features/mec/gateways.php:129 app/features/mec/ie.php:125
|
113 |
+
#: app/features/mec/messages.php:129 app/features/mec/modules.php:191
|
114 |
+
#: app/features/mec/notifications.php:131 app/features/mec/regform.php:164
|
115 |
+
#: app/features/mec/settings.php:201 app/features/mec/single.php:162
|
116 |
+
#: app/features/mec/styles.php:129 app/features/mec/styling.php:151
|
117 |
#: app/features/mec/support.php:45
|
118 |
msgid "Notifications"
|
119 |
msgstr ""
|
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:259
|
185 |
#: app/features/mec/single.php:27 app/features/mec/styles.php:28
|
186 |
#: app/features/mec/styling.php:50
|
187 |
msgid "General Options"
|
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:576
|
195 |
#: app/features/mec/single.php:29 app/features/mec/styles.php:30
|
196 |
#: app/features/mec/styling.php:52
|
197 |
msgid "Slugs/Permalinks"
|
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:608
|
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:126
|
215 |
+
#: app/features/mec/gateways.php:91 app/features/mec/ie.php:87
|
216 |
+
#: app/features/mec/messages.php:91 app/features/mec/modules.php:111
|
217 |
+
#: app/features/mec/modules.php:273 app/features/mec/modules.php:291
|
218 |
+
#: app/features/mec/notifications.php:90 app/features/mec/regform.php:128
|
219 |
+
#: app/features/mec/settings.php:163 app/features/mec/single.php:124
|
220 |
+
#: app/features/mec/styles.php:91 app/features/mec/styling.php:113
|
221 |
msgid "Google Maps Options"
|
222 |
msgstr ""
|
223 |
|
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:665
|
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"
|
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:319 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:134
|
245 |
+
#: app/features/mec/gateways.php:99 app/features/mec/ie.php:95
|
246 |
+
#: app/features/mec/messages.php:99 app/features/mec/modules.php:147
|
247 |
+
#: app/features/mec/modules.php:469 app/features/mec/notifications.php:98
|
248 |
+
#: app/features/mec/regform.php:136 app/features/mec/settings.php:171
|
249 |
+
#: app/features/mec/single.php:132 app/features/mec/styles.php:99
|
250 |
+
#: app/features/mec/styling.php:121
|
251 |
msgid "Social Networks"
|
252 |
msgstr ""
|
253 |
|
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:701
|
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"
|
276 |
msgstr ""
|
277 |
|
278 |
#: app/features/contextual.php:308 app/features/events.php:285
|
279 |
+
#: app/features/mec/booking.php:79 app/features/mec/booking.php:86
|
280 |
+
#: app/features/mec/booking.php:169 app/features/mec/booking.php:221
|
281 |
+
#: app/features/mec/gateways.php:66 app/features/mec/gateways.php:70
|
282 |
+
#: app/features/mec/gateways.php:134 app/features/mec/ie.php:62
|
283 |
+
#: app/features/mec/ie.php:66 app/features/mec/ie.php:130
|
284 |
+
#: app/features/mec/messages.php:66 app/features/mec/messages.php:70
|
285 |
+
#: app/features/mec/messages.php:134 app/features/mec/modules.php:73
|
286 |
+
#: app/features/mec/modules.php:77 app/features/mec/modules.php:196
|
287 |
+
#: app/features/mec/notifications.php:65 app/features/mec/notifications.php:69
|
288 |
+
#: app/features/mec/notifications.php:138
|
289 |
+
#: app/features/mec/notifications.php:227 app/features/mec/regform.php:103
|
290 |
+
#: app/features/mec/regform.php:107 app/features/mec/regform.php:169
|
291 |
+
#: app/features/mec/settings.php:138 app/features/mec/settings.php:142
|
292 |
+
#: app/features/mec/settings.php:206 app/features/mec/single.php:99
|
293 |
+
#: app/features/mec/single.php:103 app/features/mec/single.php:167
|
294 |
+
#: app/features/mec/styles.php:66 app/features/mec/styles.php:70
|
295 |
+
#: app/features/mec/styles.php:134 app/features/mec/styling.php:88
|
296 |
+
#: app/features/mec/styling.php:92 app/features/mec/styling.php:156
|
297 |
msgid "Booking"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: app/features/contextual.php:318 app/features/mec/booking.php:94
|
301 |
+
#: app/features/mec/booking.php:356 app/features/mec/gateways.php:72
|
302 |
+
#: app/features/mec/ie.php:68 app/features/mec/messages.php:72
|
303 |
+
#: app/features/mec/modules.php:79 app/features/mec/notifications.php:71
|
304 |
+
#: app/features/mec/regform.php:109 app/features/mec/settings.php:144
|
305 |
+
#: app/features/mec/single.php:105 app/features/mec/styles.php:72
|
306 |
+
#: app/features/mec/styling.php:94
|
307 |
msgid "Coupons"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: app/features/contextual.php:326 app/features/mec/booking.php:137
|
311 |
+
#: app/features/mec/gateways.php:102 app/features/mec/ie.php:98
|
312 |
+
#: app/features/mec/messages.php:102 app/features/mec/modules.php:161
|
313 |
+
#: app/features/mec/modules.php:530 app/features/mec/notifications.php:101
|
314 |
+
#: app/features/mec/regform.php:139 app/features/mec/settings.php:174
|
315 |
+
#: app/features/mec/single.php:135 app/features/mec/styles.php:102
|
316 |
+
#: app/features/mec/styling.php:124
|
317 |
msgid "BuddyPress Integration"
|
318 |
msgstr ""
|
319 |
|
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:937
|
325 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
326 |
#: app/features/mec/styling.php:59
|
327 |
msgid "Mailchimp Integration"
|
332 |
msgstr ""
|
333 |
|
334 |
#: app/features/events.php:137 app/features/ix/export.php:34
|
335 |
+
#: app/features/mec/dashboard.php:202 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 ""
|
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:155
|
383 |
+
#: app/features/mec/meta_boxes/search_form.php:216
|
384 |
+
#: app/features/mec/meta_boxes/search_form.php:277
|
385 |
+
#: app/features/mec/meta_boxes/search_form.php:338
|
386 |
+
#: app/features/mec/meta_boxes/search_form.php:399
|
387 |
+
#: app/features/mec/meta_boxes/search_form.php:453
|
388 |
+
#: app/features/mec/meta_boxes/search_form.php:514
|
389 |
+
#: app/features/mec/meta_boxes/search_form.php:575
|
390 |
+
#: app/features/mec/settings.php:890 app/features/mec/single.php:390
|
391 |
+
#: app/libraries/main.php:4496 app/libraries/skins.php:813
|
392 |
+
#: app/skins/single.php:519 app/skins/single/default.php:170
|
393 |
+
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
394 |
+
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
395 |
msgid "Category"
|
396 |
msgstr ""
|
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:4495
|
401 |
msgid "Categories"
|
402 |
msgstr ""
|
403 |
|
404 |
#: app/features/events.php:173 app/features/labels.php:71
|
405 |
#: app/features/locations.php:69 app/features/organizers.php:69
|
406 |
+
#: app/features/speakers.php:70
|
407 |
#, php-format
|
408 |
msgid "All %s"
|
409 |
msgstr ""
|
410 |
|
411 |
#: app/features/events.php:174 app/features/labels.php:72
|
412 |
#: app/features/locations.php:70 app/features/organizers.php:70
|
413 |
+
#: app/features/speakers.php:71
|
414 |
#, php-format
|
415 |
msgid "Edit %s"
|
416 |
msgstr ""
|
417 |
|
418 |
#: app/features/events.php:175 app/features/labels.php:73
|
419 |
#: app/features/locations.php:71 app/features/organizers.php:71
|
420 |
+
#: app/features/speakers.php:72
|
421 |
#, php-format
|
422 |
msgid "View %s"
|
423 |
msgstr ""
|
424 |
|
425 |
#: app/features/events.php:176 app/features/labels.php:74
|
426 |
#: app/features/locations.php:72 app/features/organizers.php:72
|
427 |
+
#: app/features/speakers.php:73
|
428 |
#, php-format
|
429 |
msgid "Update %s"
|
430 |
msgstr ""
|
431 |
|
432 |
#: app/features/events.php:177 app/features/labels.php:75
|
433 |
#: app/features/locations.php:73 app/features/organizers.php:73
|
434 |
+
#: app/features/speakers.php:74
|
435 |
#, php-format
|
436 |
msgid "Add New %s"
|
437 |
msgstr ""
|
438 |
|
439 |
#: app/features/events.php:178 app/features/labels.php:76
|
440 |
#: app/features/locations.php:74 app/features/organizers.php:74
|
441 |
+
#: app/features/speakers.php:75
|
442 |
#, php-format
|
443 |
msgid "New %s Name"
|
444 |
msgstr ""
|
445 |
|
446 |
#: app/features/events.php:179 app/features/labels.php:77
|
447 |
#: app/features/locations.php:75 app/features/organizers.php:75
|
448 |
+
#: app/features/speakers.php:76
|
449 |
#, php-format
|
450 |
msgid "Popular %s"
|
451 |
msgstr ""
|
452 |
|
453 |
#: app/features/events.php:180 app/features/labels.php:78
|
454 |
#: app/features/locations.php:76 app/features/organizers.php:76
|
455 |
+
#: app/features/speakers.php:77
|
456 |
#, php-format
|
457 |
msgid "Search %s"
|
458 |
msgstr ""
|
469 |
msgid "Event Details"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: app/features/events.php:322 app/features/events.php:3168
|
473 |
+
#: app/features/events.php:3210 app/features/fes/form.php:706
|
474 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
475 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4528
|
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:4529 app/skins/single.php:542
|
482 |
+
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
483 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
484 |
msgid "Cost"
|
485 |
msgstr ""
|
492 |
msgid "Guest Data"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: app/features/events.php:432 app/features/events.php:2250
|
496 |
+
#: app/features/fes/form.php:668 app/features/labels.php:178
|
497 |
+
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
498 |
#: app/features/profile/profile.php:90 app/libraries/notifications.php:673
|
499 |
+
#: app/modules/booking/steps/form.php:37
|
500 |
msgid "Name"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: app/features/events.php:433 app/features/events.php:2261
|
504 |
+
#: app/features/events.php:2339 app/features/fes/form.php:664
|
505 |
+
#: app/features/mec/regform.php:39 app/features/mec/regform.php:270
|
506 |
+
#: app/features/organizers.php:111 app/features/organizers.php:152
|
507 |
+
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
508 |
+
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
509 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2262
|
510 |
+
#: app/libraries/notifications.php:674 app/modules/booking/steps/form.php:46
|
511 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:770
|
512 |
+
#: app/skins/single.php:825 app/skins/single/default.php:212
|
513 |
+
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
514 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
515 |
msgid "Email"
|
516 |
msgstr ""
|
520 |
msgstr ""
|
521 |
|
522 |
#: app/features/events.php:441 app/features/events.php:447
|
523 |
+
#: app/features/events.php:2986 app/features/events.php:3168
|
524 |
+
#: app/features/events.php:3210 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:346
|
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
|
542 |
msgstr ""
|
543 |
|
544 |
#: app/features/events.php:519 app/features/events.php:611
|
545 |
+
#: app/features/events.php:1604 app/features/events.php:1646
|
546 |
+
#: app/features/events.php:1813 app/features/events.php:1837
|
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:1611 app/features/events.php:1653
|
553 |
+
#: app/features/events.php:1814 app/features/events.php:1838
|
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:2987 app/features/events.php:3168
|
560 |
+
#: app/features/events.php:3210 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:347
|
564 |
msgid "End Date"
|
565 |
msgstr ""
|
566 |
|
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:1496
|
593 |
+
#: app/features/events.php:1673 app/features/events.php:1688
|
594 |
+
#: app/features/events.php:1855 app/features/events.php:1868
|
595 |
+
#: app/features/events.php:1998 app/features/events.php:2034
|
596 |
+
#: app/features/events.php:2132 app/features/events.php:2147
|
597 |
+
#: app/features/events.php:2177 app/features/events.php:2190
|
598 |
+
#: app/features/fes/form.php:630 app/features/locations.php:299
|
599 |
+
#: app/features/mec/booking.php:241 app/features/mec/booking.php:278
|
600 |
+
#: app/features/mec/booking.php:294 app/features/mec/booking.php:401
|
601 |
+
#: app/features/mec/booking.php:430 app/features/mec/booking.php:478
|
602 |
+
#: app/features/mec/booking.php:488 app/features/mec/booking.php:510
|
603 |
+
#: app/features/mec/booking.php:520 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
|
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:259 app/features/mec/modules.php:292
|
635 |
+
#: app/features/mec/modules.php:309 app/features/mec/modules.php:344
|
636 |
+
#: app/features/mec/modules.php:360 app/features/mec/modules.php:518
|
637 |
+
#: app/features/mec/notifications.php:246
|
638 |
+
#: app/features/mec/notifications.php:303
|
639 |
+
#: app/features/mec/notifications.php:355
|
640 |
+
#: app/features/mec/notifications.php:414
|
641 |
+
#: app/features/mec/notifications.php:482
|
642 |
+
#: app/features/mec/notifications.php:545
|
643 |
+
#: app/features/mec/notifications.php:556
|
644 |
+
#: app/features/mec/notifications.php:618 app/features/mec/settings.php:273
|
645 |
+
#: app/features/mec/settings.php:292 app/features/mec/settings.php:319
|
646 |
+
#: app/features/mec/settings.php:339 app/features/mec/settings.php:360
|
647 |
+
#: app/features/mec/settings.php:380 app/features/mec/settings.php:457
|
648 |
+
#: app/features/mec/settings.php:531 app/features/mec/settings.php:548
|
649 |
+
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
650 |
+
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
651 |
+
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
652 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:952
|
653 |
+
#: app/features/mec/settings.php:965 app/features/mec/settings.php:981
|
654 |
+
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
655 |
+
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
656 |
+
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
657 |
+
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
658 |
+
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
659 |
+
#: app/features/organizers.php:272 app/skins/single.php:617
|
660 |
+
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
661 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
662 |
#: app/skins/single/modern.php:133
|
663 |
msgid "Read More"
|
672 |
msgstr ""
|
673 |
|
674 |
#: app/features/events.php:692 app/features/fes/form.php:338
|
675 |
+
#: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
|
676 |
msgid "Daily"
|
677 |
msgstr ""
|
678 |
|
689 |
msgstr ""
|
690 |
|
691 |
#: app/features/events.php:720 app/features/fes/form.php:342
|
692 |
+
#: app/skins/full_calendar/tpl.php:108
|
693 |
msgid "Weekly"
|
694 |
msgstr ""
|
695 |
|
696 |
#: app/features/events.php:727 app/features/fes/form.php:343
|
697 |
+
#: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
|
698 |
msgid "Monthly"
|
699 |
msgstr ""
|
700 |
|
701 |
#: app/features/events.php:734 app/features/fes/form.php:344
|
702 |
+
#: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
|
703 |
msgid "Yearly"
|
704 |
msgstr ""
|
705 |
|
765 |
msgid "Sunday"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: app/features/events.php:786 app/features/events.php:1736
|
769 |
+
#: app/features/events.php:1764 app/features/events.php:1902
|
770 |
#: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
|
771 |
#: app/features/ix/import_g_calendar.php:51
|
772 |
#: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
|
773 |
msgid "Start"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: app/features/events.php:788 app/features/events.php:1740
|
777 |
+
#: app/features/events.php:1768 app/features/events.php:1906
|
778 |
#: app/features/fes/form.php:367
|
779 |
msgid "End"
|
780 |
msgstr ""
|
781 |
|
782 |
#: app/features/events.php:790 app/features/events.php:1132
|
783 |
#: app/features/events.php:1243 app/features/events.php:1348
|
784 |
+
#: app/features/events.php:1554 app/features/events.php:1719
|
785 |
+
#: app/features/events.php:1891 app/features/events.php:1971
|
786 |
+
#: app/features/events.php:2104 app/features/fes/form.php:368
|
787 |
+
#: app/features/fes/form.php:842
|
788 |
msgid "Add"
|
789 |
msgstr ""
|
790 |
|
850 |
msgid "Exclude certain days"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: app/features/events.php:1130 app/features/events.php:2340
|
854 |
+
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
855 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2320
|
856 |
#: app/modules/booking/steps/tickets.php:22
|
857 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:597
|
858 |
+
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
859 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
860 |
msgid "Date"
|
861 |
msgstr ""
|
867 |
"multiple day occurrences."
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: app/features/events.php:1190 app/libraries/render.php:455
|
871 |
msgid "Day 1"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
875 |
+
#: app/skins/single.php:888
|
876 |
msgid "Hourly Schedule"
|
877 |
msgstr ""
|
878 |
|
893 |
|
894 |
#: app/features/events.php:1228 app/features/events.php:1267
|
895 |
#: app/features/events.php:1302 app/features/events.php:1334
|
896 |
+
#: app/features/events.php:1363 app/features/events.php:2119
|
897 |
+
#: app/features/events.php:2166 app/features/events.php:2983
|
898 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
899 |
#: app/features/fes/form.php:225 app/features/ix.php:2740
|
900 |
+
#: app/features/ix.php:2781 app/features/mec/booking.php:470
|
901 |
+
#: app/features/mec/booking.php:502 app/features/mec/styling.php:270
|
902 |
msgid "Title"
|
903 |
msgstr ""
|
904 |
|
905 |
#: app/features/events.php:1237 app/features/events.php:1274
|
906 |
#: app/features/events.php:1307 app/features/events.php:1342
|
907 |
+
#: app/features/events.php:1368 app/features/events.php:1712
|
908 |
+
#: app/features/events.php:1750 app/features/events.php:1776
|
909 |
+
#: app/features/events.php:1885 app/features/events.php:1912
|
910 |
+
#: app/features/events.php:2011 app/features/events.php:2047
|
911 |
+
#: app/features/events.php:2154 app/features/events.php:2196
|
912 |
+
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
913 |
+
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
914 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2181
|
915 |
+
#: app/libraries/main.php:2211 app/libraries/main.php:2240
|
916 |
+
#: app/libraries/main.php:2270 app/libraries/main.php:2299
|
917 |
+
#: app/libraries/main.php:2328 app/libraries/main.php:2357
|
918 |
+
#: app/libraries/main.php:2386 app/libraries/main.php:2408
|
919 |
+
#: app/libraries/main.php:2439 app/libraries/main.php:2483
|
920 |
+
#: app/libraries/main.php:2527 app/libraries/main.php:2574
|
921 |
+
#: app/libraries/main.php:2613
|
922 |
msgid "Remove"
|
923 |
msgstr ""
|
924 |
|
937 |
msgstr ""
|
938 |
|
939 |
#: app/features/events.php:1271 app/features/events.php:1305
|
940 |
+
#: app/features/events.php:1366 app/features/events.php:1660
|
941 |
+
#: app/features/events.php:1844
|
942 |
msgid "Description"
|
943 |
msgstr ""
|
944 |
|
945 |
#: app/features/events.php:1277 app/features/events.php:1310
|
946 |
+
#: app/features/events.php:1371 app/features/fes/form.php:838
|
947 |
+
#: app/features/mec.php:340 app/features/mec/booking.php:124
|
948 |
+
#: app/features/mec/gateways.php:89 app/features/mec/ie.php:85
|
949 |
+
#: app/features/mec/messages.php:89 app/features/mec/modules.php:103
|
950 |
+
#: app/features/mec/modules.php:258 app/features/mec/notifications.php:88
|
951 |
+
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
952 |
+
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
953 |
+
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
954 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4503
|
955 |
+
#: app/modules/speakers/details.php:18
|
956 |
msgid "Speakers"
|
957 |
msgstr ""
|
958 |
|
961 |
msgstr ""
|
962 |
|
963 |
#: app/features/events.php:1402 app/features/fes/form.php:683
|
964 |
+
#: app/features/mec/settings.php:762
|
965 |
msgid "Event Links"
|
966 |
msgstr ""
|
967 |
|
968 |
#: app/features/events.php:1405 app/features/events.php:1411
|
969 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4526
|
970 |
msgid "Event Link"
|
971 |
msgstr ""
|
972 |
|
987 |
msgstr ""
|
988 |
|
989 |
#: app/features/events.php:1421 app/features/events.php:1434
|
990 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4527
|
991 |
+
#: app/skins/single.php:616 app/skins/single/default.php:118
|
992 |
+
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
993 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
994 |
#: app/widgets/single.php:107
|
995 |
msgid "More Info"
|
1013 |
"Insert full link including http(s)://"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: app/features/events.php:1477 app/features/events.php:1492
|
1017 |
msgid "Total booking limits"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: app/features/events.php:1489 app/features/events.php:1522
|
1021 |
+
#: app/features/events.php:1709 app/features/events.php:1882
|
1022 |
+
#: app/modules/booking/default.php:85 app/modules/booking/steps/tickets.php:40
|
1023 |
#: app/skins/available_spot/tpl.php:140
|
1024 |
msgid "Unlimited"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: app/features/events.php:1495
|
|
|
|
|
|
|
|
|
1028 |
msgid ""
|
1029 |
"If you want to set a limit to all tickets, uncheck this checkbox and put a "
|
1030 |
"limitation number."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: app/features/events.php:1497
|
1034 |
msgid "Read About A Booking System"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: app/features/events.php:1505
|
1038 |
+
msgid "100"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: app/features/events.php:1510
|
1042 |
+
msgid "Total user booking limits"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: app/features/events.php:1525
|
1046 |
+
msgid "12"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: app/features/events.php:1546 app/libraries/book.php:60
|
1050 |
+
#: app/libraries/main.php:4531 app/modules/booking/steps/tickets.php:40
|
1051 |
msgid "Tickets"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: app/features/events.php:1549
|
1055 |
msgid ""
|
1056 |
"You're translating an event so MEC will use the original event for tickets "
|
1057 |
"and booking. You can only translate the ticket name and description. Please "
|
1058 |
"define exact tickets that you defined in the original event here."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: app/features/events.php:1568 app/features/events.php:1790
|
1062 |
msgid "Ticket Name"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: app/features/events.php:1573 app/features/events.php:1794
|
1066 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1067 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1068 |
msgid "Start Time"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: app/features/events.php:1615 app/features/events.php:1818
|
1072 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1073 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1074 |
msgid "End Time"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: app/features/events.php:1666 app/features/events.php:1670
|
1078 |
+
#: app/features/events.php:1744 app/features/events.php:1771
|
1079 |
+
#: app/features/events.php:1849 app/features/events.php:1852
|
1080 |
+
#: app/features/events.php:1908 app/features/events.php:2125
|
1081 |
+
#: app/features/events.php:2129 app/features/events.php:2171
|
1082 |
+
#: app/features/events.php:2174 app/features/mec/booking.php:474
|
1083 |
+
#: app/features/mec/booking.php:477 app/features/mec/booking.php:506
|
1084 |
+
#: app/features/mec/booking.php:509
|
1085 |
msgid "Price"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: app/features/events.php:1671 app/features/events.php:1853
|
1089 |
msgid "Insert 0 for free ticket. Only numbers please."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: app/features/events.php:1680 app/features/events.php:1685
|
1093 |
+
#: app/features/events.php:1862 app/features/events.php:1865
|
1094 |
msgid "Price Label"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: app/features/events.php:1686 app/features/events.php:1866
|
1098 |
msgid "For showing on website. e.g. $15"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: app/features/events.php:1696 app/features/events.php:1876
|
1102 |
msgid "Available Tickets"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: app/features/events.php:1717 app/features/events.php:1889
|
1106 |
msgid "Price per Date"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: app/features/events.php:1748 app/features/events.php:1774
|
1110 |
+
#: app/features/events.php:1910 app/features/labels.php:60
|
1111 |
#: app/features/mec/meta_boxes/display_options.php:799
|
1112 |
#: app/features/mec/meta_boxes/search_form.php:66
|
1113 |
#: app/features/mec/meta_boxes/search_form.php:128
|
1114 |
+
#: app/features/mec/meta_boxes/search_form.php:190
|
1115 |
+
#: app/features/mec/meta_boxes/search_form.php:251
|
1116 |
+
#: app/features/mec/meta_boxes/search_form.php:312
|
1117 |
+
#: app/features/mec/meta_boxes/search_form.php:373
|
1118 |
+
#: app/features/mec/meta_boxes/search_form.php:434
|
1119 |
+
#: app/features/mec/meta_boxes/search_form.php:488
|
1120 |
+
#: app/features/mec/meta_boxes/search_form.php:549
|
1121 |
+
#: app/features/mec/meta_boxes/search_form.php:610
|
1122 |
+
#: app/features/mec/settings.php:922 app/features/mec/single.php:408
|
1123 |
+
#: app/libraries/skins.php:943
|
1124 |
msgid "Label"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: app/features/events.php:1948
|
1128 |
msgid "Fees"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: app/features/events.php:1960 app/features/events.php:2092
|
1132 |
+
#: app/features/events.php:2280
|
1133 |
msgid "Inherit from global options"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: app/features/events.php:1985 app/features/events.php:2023
|
1137 |
+
#: app/features/mec/booking.php:393 app/features/mec/booking.php:422
|
1138 |
msgid "Fee Title"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: app/features/events.php:1991 app/features/events.php:1995
|
1142 |
+
#: app/features/events.php:2028 app/features/events.php:2031
|
1143 |
+
#: app/features/mec/booking.php:397 app/features/mec/booking.php:400
|
1144 |
+
#: app/features/mec/booking.php:426 app/features/mec/booking.php:429
|
1145 |
msgid "Amount"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: app/features/events.php:1996 app/features/events.php:2032
|
1149 |
+
#: app/features/mec/booking.php:401 app/features/mec/booking.php:430
|
1150 |
msgid ""
|
1151 |
"Fee amount, considered as fixed amount if you set the type to amount "
|
1152 |
"otherwise considered as percentage"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: app/features/events.php:2005 app/features/events.php:2041
|
1156 |
+
#: app/features/mec/booking.php:408 app/features/mec/booking.php:437
|
1157 |
msgid "Percent"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: app/features/events.php:2006 app/features/events.php:2042
|
1161 |
+
#: app/features/mec/booking.php:409 app/features/mec/booking.php:438
|
1162 |
msgid "Amount (Per Ticket)"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: app/features/events.php:2007 app/features/events.php:2043
|
1166 |
+
#: app/features/mec/booking.php:410 app/features/mec/booking.php:439
|
1167 |
msgid "Amount (Per Booking)"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: app/features/events.php:2080 app/features/mec/settings.php:840
|
1171 |
msgid "Ticket Variations / Options"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: app/features/events.php:2130 app/features/events.php:2175
|
1175 |
+
#: app/features/mec/booking.php:478 app/features/mec/booking.php:510
|
1176 |
msgid "Option Price"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: app/features/events.php:2140 app/features/events.php:2144
|
1180 |
+
#: app/features/events.php:2184 app/features/events.php:2187
|
1181 |
+
#: app/features/mec/booking.php:484 app/features/mec/booking.php:487
|
1182 |
+
#: app/features/mec/booking.php:516 app/features/mec/booking.php:519
|
1183 |
msgid "Maximum Per Ticket"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: app/features/events.php:2145 app/features/events.php:2188
|
1187 |
+
#: app/features/mec/booking.php:488 app/features/mec/booking.php:520
|
1188 |
msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1192 |
+
#: app/libraries/main.php:2203
|
1193 |
msgid "MEC Name"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1197 |
+
#: app/libraries/main.php:2232
|
1198 |
msgid "MEC Email"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1202 |
+
#: app/libraries/main.php:2173
|
1203 |
msgid "Text"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1207 |
+
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1208 |
+
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1209 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2349
|
1210 |
msgid "Tel"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1214 |
+
#: app/libraries/main.php:2291
|
1215 |
msgid "File"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1219 |
+
#: app/libraries/main.php:2378
|
1220 |
msgid "Textarea"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1224 |
+
#: app/libraries/main.php:2431
|
1225 |
msgid "Checkboxes"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1229 |
+
#: app/libraries/main.php:2475
|
1230 |
msgid "Radio Buttons"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: app/features/events.php:2349 app/features/mec/meta_boxes/search_form.php:34
|
1234 |
#: app/features/mec/meta_boxes/search_form.php:41
|
1235 |
#: app/features/mec/meta_boxes/search_form.php:48
|
1236 |
#: app/features/mec/meta_boxes/search_form.php:55
|
1244 |
#: app/features/mec/meta_boxes/search_form.php:124
|
1245 |
#: app/features/mec/meta_boxes/search_form.php:131
|
1246 |
#: app/features/mec/meta_boxes/search_form.php:138
|
1247 |
+
#: app/features/mec/meta_boxes/search_form.php:158
|
1248 |
+
#: app/features/mec/meta_boxes/search_form.php:165
|
1249 |
+
#: app/features/mec/meta_boxes/search_form.php:172
|
1250 |
+
#: app/features/mec/meta_boxes/search_form.php:179
|
1251 |
+
#: app/features/mec/meta_boxes/search_form.php:186
|
1252 |
+
#: app/features/mec/meta_boxes/search_form.php:193
|
1253 |
+
#: app/features/mec/meta_boxes/search_form.php:200
|
1254 |
+
#: app/features/mec/meta_boxes/search_form.php:219
|
1255 |
+
#: app/features/mec/meta_boxes/search_form.php:226
|
1256 |
+
#: app/features/mec/meta_boxes/search_form.php:233
|
1257 |
+
#: app/features/mec/meta_boxes/search_form.php:240
|
1258 |
+
#: app/features/mec/meta_boxes/search_form.php:247
|
1259 |
+
#: app/features/mec/meta_boxes/search_form.php:254
|
1260 |
+
#: app/features/mec/meta_boxes/search_form.php:261
|
1261 |
+
#: app/features/mec/meta_boxes/search_form.php:280
|
1262 |
+
#: app/features/mec/meta_boxes/search_form.php:287
|
1263 |
+
#: app/features/mec/meta_boxes/search_form.php:294
|
1264 |
+
#: app/features/mec/meta_boxes/search_form.php:301
|
1265 |
+
#: app/features/mec/meta_boxes/search_form.php:308
|
1266 |
+
#: app/features/mec/meta_boxes/search_form.php:315
|
1267 |
+
#: app/features/mec/meta_boxes/search_form.php:322
|
1268 |
+
#: app/features/mec/meta_boxes/search_form.php:341
|
1269 |
+
#: app/features/mec/meta_boxes/search_form.php:348
|
1270 |
+
#: app/features/mec/meta_boxes/search_form.php:355
|
1271 |
+
#: app/features/mec/meta_boxes/search_form.php:362
|
1272 |
+
#: app/features/mec/meta_boxes/search_form.php:369
|
1273 |
+
#: app/features/mec/meta_boxes/search_form.php:376
|
1274 |
+
#: app/features/mec/meta_boxes/search_form.php:383
|
1275 |
+
#: app/features/mec/meta_boxes/search_form.php:402
|
1276 |
+
#: app/features/mec/meta_boxes/search_form.php:409
|
1277 |
+
#: app/features/mec/meta_boxes/search_form.php:416
|
1278 |
+
#: app/features/mec/meta_boxes/search_form.php:423
|
1279 |
+
#: app/features/mec/meta_boxes/search_form.php:430
|
1280 |
+
#: app/features/mec/meta_boxes/search_form.php:437
|
1281 |
+
#: app/features/mec/meta_boxes/search_form.php:456
|
1282 |
+
#: app/features/mec/meta_boxes/search_form.php:463
|
1283 |
+
#: app/features/mec/meta_boxes/search_form.php:470
|
1284 |
+
#: app/features/mec/meta_boxes/search_form.php:477
|
1285 |
+
#: app/features/mec/meta_boxes/search_form.php:484
|
1286 |
+
#: app/features/mec/meta_boxes/search_form.php:491
|
1287 |
+
#: app/features/mec/meta_boxes/search_form.php:498
|
1288 |
+
#: app/features/mec/meta_boxes/search_form.php:517
|
1289 |
+
#: app/features/mec/meta_boxes/search_form.php:524
|
1290 |
+
#: app/features/mec/meta_boxes/search_form.php:531
|
1291 |
+
#: app/features/mec/meta_boxes/search_form.php:538
|
1292 |
+
#: app/features/mec/meta_boxes/search_form.php:545
|
1293 |
+
#: app/features/mec/meta_boxes/search_form.php:552
|
1294 |
+
#: app/features/mec/meta_boxes/search_form.php:559
|
1295 |
+
#: app/features/mec/meta_boxes/search_form.php:578
|
1296 |
+
#: app/features/mec/meta_boxes/search_form.php:585
|
1297 |
+
#: app/features/mec/meta_boxes/search_form.php:592
|
1298 |
+
#: app/features/mec/meta_boxes/search_form.php:599
|
1299 |
+
#: app/features/mec/meta_boxes/search_form.php:606
|
1300 |
+
#: app/features/mec/meta_boxes/search_form.php:613
|
1301 |
+
#: app/features/mec/meta_boxes/search_form.php:620
|
1302 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2519
|
1303 |
msgid "Dropdown"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1307 |
+
#: app/libraries/main.php:2566
|
1308 |
msgid "Agreement"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1312 |
+
#: app/libraries/main.php:2407
|
1313 |
msgid "Paragraph"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: app/features/events.php:2921 app/features/events.php:2938
|
1317 |
+
#: app/features/events.php:2955
|
1318 |
#, php-format
|
1319 |
msgid "Show all %s"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: app/features/events.php:2921
|
1323 |
msgid "labels"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: app/features/events.php:2938
|
1327 |
msgid "locations"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: app/features/events.php:2955
|
1331 |
msgid "organizers"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: app/features/events.php:2984 app/features/events.php:3168
|
1335 |
+
#: app/features/events.php:3210 app/features/ix.php:2740
|
1336 |
#: app/features/ix.php:2781 app/features/locations.php:58
|
1337 |
+
#: app/features/locations.php:230 app/features/locations.php:287
|
1338 |
+
#: app/features/locations.php:289 app/features/locations.php:298
|
1339 |
#: app/features/mec/meta_boxes/display_options.php:800
|
1340 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1341 |
#: app/features/mec/meta_boxes/search_form.php:100
|
1342 |
+
#: app/features/mec/meta_boxes/search_form.php:162
|
1343 |
+
#: app/features/mec/meta_boxes/search_form.php:223
|
1344 |
+
#: app/features/mec/meta_boxes/search_form.php:284
|
1345 |
+
#: app/features/mec/meta_boxes/search_form.php:345
|
1346 |
+
#: app/features/mec/meta_boxes/search_form.php:406
|
1347 |
+
#: app/features/mec/meta_boxes/search_form.php:460
|
1348 |
+
#: app/features/mec/meta_boxes/search_form.php:521
|
1349 |
+
#: app/features/mec/meta_boxes/search_form.php:582
|
1350 |
+
#: app/features/mec/settings.php:896 app/features/mec/single.php:398
|
1351 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4500
|
1352 |
+
#: app/libraries/skins.php:839 app/skins/single.php:446
|
1353 |
+
#: app/skins/single.php:865 app/skins/single/default.php:154
|
1354 |
+
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1355 |
+
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1356 |
msgid "Location"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: app/features/events.php:2985 app/features/events.php:3168
|
1360 |
+
#: app/features/events.php:3210 app/features/ix.php:2740
|
1361 |
#: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:45
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:107
|
1364 |
+
#: app/features/mec/meta_boxes/search_form.php:169
|
1365 |
+
#: app/features/mec/meta_boxes/search_form.php:230
|
1366 |
+
#: app/features/mec/meta_boxes/search_form.php:291
|
1367 |
+
#: app/features/mec/meta_boxes/search_form.php:352
|
1368 |
+
#: app/features/mec/meta_boxes/search_form.php:413
|
1369 |
+
#: app/features/mec/meta_boxes/search_form.php:467
|
1370 |
+
#: app/features/mec/meta_boxes/search_form.php:528
|
1371 |
+
#: app/features/mec/meta_boxes/search_form.php:589
|
1372 |
+
#: app/features/mec/settings.php:902 app/features/mec/single.php:394
|
1373 |
+
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1374 |
+
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1375 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4502
|
1376 |
+
#: app/libraries/skins.php:865 app/skins/single.php:753
|
1377 |
+
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1378 |
+
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1379 |
+
#: app/skins/single/modern.php:31
|
1380 |
msgid "Organizer"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: app/features/events.php:2989
|
1384 |
msgid "Repeat"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: app/features/events.php:2990
|
1388 |
msgid "Author"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: app/features/events.php:3103 app/features/events.php:3104
|
1392 |
msgid "iCal Export"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: app/features/events.php:3106 app/features/events.php:3107
|
1396 |
msgid "CSV Export"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: app/features/events.php:3109 app/features/events.php:3110
|
1400 |
msgid "MS Excel Export"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: app/features/events.php:3112 app/features/events.php:3113
|
1404 |
msgid "XML Export"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: app/features/events.php:3115 app/features/events.php:3116
|
1408 |
msgid "JSON Export"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: app/features/events.php:3118 app/features/events.php:3119
|
1412 |
msgid "Duplicate"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1416 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1417 |
+
#: app/features/labels.php:177 app/features/locations.php:229
|
1418 |
+
#: app/features/organizers.php:203 app/features/speakers.php:246
|
1419 |
msgid "ID"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1423 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
1424 |
msgid "Link"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1428 |
#, php-format
|
1429 |
msgid "%s Tel"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: app/features/events.php:3168 app/features/events.php:3210
|
1433 |
#, php-format
|
1434 |
msgid "%s Email"
|
1435 |
msgstr ""
|
1504 |
msgid "eg. yourname@gmail.com"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: app/features/fes/form.php:669 app/features/organizers.php:280
|
1508 |
msgid "eg. John Smith"
|
1509 |
msgstr ""
|
1510 |
|
1514 |
"Insert full link including http(s)://"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: app/features/fes/form.php:723 app/features/mec/settings.php:774
|
1518 |
msgid "Featured Image"
|
1519 |
msgstr ""
|
1520 |
|
1523 |
msgstr ""
|
1524 |
|
1525 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1526 |
+
#: app/features/labels.php:221 app/features/mec.php:333
|
1527 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4497
|
1528 |
+
#: app/skins/single.php:645 app/skins/single/default.php:133
|
1529 |
+
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1530 |
#: app/skins/single/modern.php:214
|
1531 |
msgid "Labels"
|
1532 |
msgstr ""
|
1540 |
msgid "Insert your desired tags, comma separated."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: app/features/fes/form.php:840
|
1544 |
+
msgid "Speakers Names"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: app/features/fes/form.php:841
|
1548 |
+
msgid "Separate names with commas Similar Justin, Cris"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: app/features/fes/form.php:859
|
1552 |
msgid "Submit"
|
1553 |
msgstr ""
|
1554 |
|
1573 |
msgid "MEC - Import / Export"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: app/features/ix.php:107 app/features/mec/booking.php:205
|
1577 |
+
#: app/features/mec/gateways.php:170 app/features/mec/ie.php:166
|
1578 |
+
#: app/features/mec/messages.php:170 app/features/mec/modules.php:232
|
1579 |
+
#: app/features/mec/notifications.php:206 app/features/mec/regform.php:205
|
1580 |
+
#: app/features/mec/settings.php:242 app/features/mec/single.php:203
|
1581 |
+
#: app/features/mec/styles.php:170 app/features/mec/styling.php:192
|
1582 |
#: app/features/mec/support.php:73
|
1583 |
msgid "Import / Export"
|
1584 |
msgstr ""
|
1706 |
#: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
|
1707 |
#: app/features/ix/import_g_calendar.php:15
|
1708 |
#: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
|
1709 |
+
#: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:190
|
1710 |
msgid "Export"
|
1711 |
msgstr ""
|
1712 |
|
1717 |
#: app/features/ix/import_g_calendar.php:103
|
1718 |
#: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
|
1719 |
#: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
|
1720 |
+
#: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:179
|
1721 |
msgid "Import"
|
1722 |
msgstr ""
|
1723 |
|
1738 |
"This will export all of your website events' data into your desired format."
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: app/features/ix/export.php:25 app/features/mec/modules.php:384
|
1742 |
msgid "iCal"
|
1743 |
msgstr ""
|
1744 |
|
1836 |
#: app/features/ix/export_g_calendar.php:72
|
1837 |
#: app/features/ix/export_g_calendar.php:147
|
1838 |
#: app/features/ix/export_g_calendar.php:164
|
1839 |
+
#: app/features/mec/notifications.php:284
|
1840 |
+
#: app/features/mec/notifications.php:336
|
1841 |
+
#: app/features/mec/notifications.php:389
|
1842 |
+
#: app/features/mec/notifications.php:590
|
1843 |
msgid "Add to Google Calendar"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1847 |
+
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1848 |
+
#: app/features/mec/settings.php:1088 app/features/mec/single.php:480
|
1849 |
msgid "Checking ..."
|
1850 |
msgstr ""
|
1851 |
|
1887 |
msgid "ICS Feed"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: app/features/ix/import.php:46 app/features/mec/booking.php:224
|
1891 |
+
#: app/features/mec/booking.php:359 app/features/mec/booking.php:377
|
1892 |
+
#: app/features/mec/booking.php:454 app/features/mec/modules.php:276
|
1893 |
+
#: app/features/mec/modules.php:417 app/features/mec/modules.php:434
|
1894 |
#, php-format
|
1895 |
msgid "%s is required to use this feature."
|
1896 |
msgstr ""
|
1897 |
|
1898 |
#: app/features/ix/import.php:46 app/features/ix/sync.php:22
|
1899 |
+
#: app/features/mec/booking.php:224 app/features/mec/booking.php:359
|
1900 |
+
#: app/features/mec/booking.php:377 app/features/mec/booking.php:454
|
1901 |
#: app/features/mec/meta_boxes/display_options.php:296
|
1902 |
#: app/features/mec/meta_boxes/display_options.php:423
|
1903 |
#: app/features/mec/meta_boxes/display_options.php:474
|
1905 |
#: app/features/mec/meta_boxes/display_options.php:688
|
1906 |
#: app/features/mec/meta_boxes/display_options.php:761
|
1907 |
#: app/features/mec/meta_boxes/display_options.php:961
|
1908 |
+
#: app/features/mec/modules.php:276 app/features/mec/modules.php:417
|
1909 |
+
#: app/features/mec/modules.php:434
|
1910 |
msgid "Pro version of Modern Events Calendar"
|
1911 |
msgstr ""
|
1912 |
|
2069 |
|
2070 |
#: app/features/ix/sync.php:32 app/features/ix/sync.php:41
|
2071 |
#: app/features/ix/sync.php:52 app/features/ix/sync.php:63
|
2072 |
+
#: app/features/mec/notifications.php:533
|
2073 |
msgid "Important Note"
|
2074 |
msgstr ""
|
2075 |
|
2163 |
"listings one by one on MEC edit event page and make sure they are correct."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: app/features/labels.php:79 app/features/locations.php:77
|
2167 |
+
#: app/features/organizers.php:77 app/features/speakers.php:78
|
2168 |
+
#, php-format
|
2169 |
+
msgid "← Back to %s"
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: app/features/labels.php:103 app/features/labels.php:134
|
2173 |
+
#: app/features/labels.php:179
|
2174 |
msgid "Color"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: app/features/labels.php:107 app/features/labels.php:136
|
2178 |
msgid "Select label color"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: app/features/labels.php:112 app/features/labels.php:139
|
2182 |
#: app/features/mec/meta_boxes/display_options.php:32
|
2183 |
#: app/features/mec/meta_boxes/display_options.php:157
|
2184 |
#: app/features/mec/meta_boxes/display_options.php:301
|
2192 |
msgid "Style"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: app/features/labels.php:116 app/features/labels.php:141
|
2196 |
msgid "Normal"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: app/features/labels.php:117 app/features/labels.php:142
|
2200 |
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
2201 |
#: app/skins/carousel/render.php:44 app/skins/countdown/tpl.php:24
|
2202 |
+
#: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:48
|
2203 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2204 |
+
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
|
2205 |
+
#: app/skins/monthly_view/calendar_clean.php:107
|
2206 |
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
|
2207 |
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:136
|
2208 |
+
#: app/skins/weekly_view/render.php:56 app/skins/yearly_view/render.php:48
|
2209 |
msgid "Featured"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: app/features/labels.php:118 app/features/labels.php:143
|
2213 |
+
#: app/libraries/main.php:4743 app/skins/agenda/render.php:41
|
2214 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2215 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2216 |
+
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2217 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:29
|
2218 |
+
#: app/skins/monthly_view/calendar.php:111
|
2219 |
+
#: app/skins/monthly_view/calendar_clean.php:111
|
2220 |
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
|
2221 |
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:137
|
2222 |
+
#: app/skins/weekly_view/render.php:60 app/skins/yearly_view/render.php:52
|
2223 |
msgid "Canceled"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: app/features/labels.php:120 app/features/labels.php:145
|
2227 |
msgid "You can show featured and canceled events by a different style!"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: app/features/labels.php:180 app/features/locations.php:232
|
2231 |
+
#: app/features/organizers.php:206 app/features/speakers.php:250
|
2232 |
#: app/modules/booking/steps/tickets.php:38
|
2233 |
msgid "Count"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: app/features/labels.php:181 app/features/locations.php:233
|
2237 |
+
#: app/features/organizers.php:207
|
2238 |
msgid "Slug"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: app/features/labels.php:221 app/features/locations.php:287
|
2242 |
#, php-format
|
2243 |
msgid "Event %s"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2247 |
+
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2248 |
+
#: app/libraries/main.php:4499
|
2249 |
msgid "Locations"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: app/features/locations.php:105 app/features/locations.php:159
|
2253 |
+
#: app/features/locations.php:231
|
2254 |
msgid "Address"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: app/features/locations.php:108 app/features/locations.php:160
|
2258 |
msgid "Enter the location address"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: app/features/locations.php:122 app/features/locations.php:172
|
2262 |
+
#: app/features/locations.php:325
|
2263 |
msgid "Latitude"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: app/features/locations.php:125 app/features/locations.php:173
|
2267 |
msgid "Geo latitude (Optional)"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: app/features/locations.php:130 app/features/locations.php:176
|
2271 |
+
#: app/features/locations.php:326
|
2272 |
msgid "Longitude"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: app/features/locations.php:133 app/features/locations.php:177
|
2276 |
msgid "Geo longitude (Optional)"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: app/features/locations.php:138 app/features/locations.php:180
|
2280 |
+
#: app/features/organizers.php:128 app/features/organizers.php:161
|
2281 |
+
#: app/features/speakers.php:156 app/features/speakers.php:200
|
2282 |
msgid "Thumbnail"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: app/features/locations.php:143 app/features/locations.php:183
|
2286 |
+
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2287 |
+
#: app/features/speakers.php:161 app/features/speakers.php:203
|
2288 |
msgid "Upload/Add image"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: app/features/locations.php:144 app/features/locations.php:184
|
2292 |
+
#: app/features/locations.php:340 app/features/locations.php:347
|
2293 |
+
#: app/features/organizers.php:134 app/features/organizers.php:165
|
2294 |
+
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2295 |
+
#: app/features/speakers.php:162 app/features/speakers.php:204
|
2296 |
msgid "Remove image"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: app/features/locations.php:290
|
2300 |
msgid "Hide location"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: app/features/locations.php:291
|
2304 |
msgid "Insert a new location"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: app/features/locations.php:299
|
2308 |
msgid "Choose one of saved locations or insert new one below."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: app/features/locations.php:306
|
2312 |
msgid "Location Name"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: app/features/locations.php:307
|
2316 |
msgid "eg. City Hall"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: app/features/locations.php:310 app/features/mec/settings.php:804
|
2320 |
#: app/widgets/single.php:115
|
2321 |
msgid "Event Location"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: app/features/locations.php:311
|
2325 |
msgid "eg. City hall, Manhattan, New York"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: app/features/locations.php:329
|
2329 |
msgid "Latitude/Longitude"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: app/features/locations.php:330
|
2333 |
msgid ""
|
2334 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2335 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2338 |
"the location on the map to find lat long coordinates."
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: app/features/locations.php:330
|
2342 |
msgid "Get Latitude and Longitude"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: app/features/locations.php:339 app/features/organizers.php:298
|
2346 |
msgid "Choose image"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: app/features/locations.php:353
|
2350 |
msgid "Don't show map in single event page"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: app/features/locations.php:356 app/libraries/main.php:4533
|
2354 |
msgid "Other Locations"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: app/features/locations.php:358
|
2358 |
msgid ""
|
2359 |
"You can select extra locations in addition to main location if you like."
|
2360 |
msgstr ""
|
2392 |
msgid "Support"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2396 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2397 |
+
#: app/libraries/main.php:4501
|
2398 |
msgid "Organizers"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
#: app/features/mec.php:343 app/features/mec.php:363
|
2402 |
+
#: app/features/mec/dashboard.php:209
|
2403 |
msgid "Shortcodes"
|
2404 |
msgstr ""
|
2405 |
|
2497 |
"your host provider in this regard."
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: app/features/mec/booking.php:24 app/features/mec/booking.php:537
|
2501 |
+
#: app/features/mec/booking.php:547 app/features/mec/booking.php:614
|
2502 |
+
#: app/features/mec/booking.php:628 app/features/mec/gateways.php:11
|
2503 |
+
#: app/features/mec/gateways.php:212 app/features/mec/gateways.php:221
|
2504 |
+
#: app/features/mec/gateways.php:262 app/features/mec/gateways.php:272
|
2505 |
+
#: app/features/mec/messages.php:11 app/features/mec/messages.php:204
|
2506 |
+
#: app/features/mec/messages.php:213 app/features/mec/messages.php:247
|
2507 |
+
#: app/features/mec/messages.php:256 app/features/mec/modules.php:22
|
2508 |
+
#: app/features/mec/modules.php:563 app/features/mec/modules.php:573
|
2509 |
+
#: app/features/mec/modules.php:640 app/features/mec/modules.php:654
|
2510 |
+
#: app/features/mec/notifications.php:10 app/features/mec/notifications.php:646
|
2511 |
+
#: app/features/mec/notifications.php:658
|
2512 |
+
#: app/features/mec/notifications.php:754
|
2513 |
+
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2514 |
+
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2515 |
+
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2516 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1012
|
2517 |
+
#: app/features/mec/settings.php:1022 app/features/mec/settings.php:1105
|
2518 |
+
#: app/features/mec/settings.php:1119 app/features/mec/single.php:14
|
2519 |
+
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2520 |
+
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2521 |
+
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2522 |
+
#: app/features/mec/styles.php:199 app/features/mec/styles.php:236
|
2523 |
+
#: app/features/mec/styles.php:245 app/features/mec/styling.php:33
|
2524 |
+
#: app/features/mec/styling.php:397 app/features/mec/styling.php:406
|
2525 |
+
#: app/features/mec/styling.php:469 app/features/mec/styling.php:478
|
2526 |
msgid "Save Changes"
|
2527 |
msgstr ""
|
2528 |
|
2530 |
#: app/features/mec/ie.php:25 app/features/mec/messages.php:29
|
2531 |
#: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
|
2532 |
#: app/features/mec/regform.php:66 app/features/mec/settings.php:57
|
2533 |
+
#: app/features/mec/settings.php:371 app/features/mec/single.php:28
|
2534 |
#: app/features/mec/styles.php:29 app/features/mec/styling.php:51
|
2535 |
msgid "Archive Pages"
|
2536 |
msgstr ""
|
2539 |
#: app/features/mec/ie.php:30 app/features/mec/messages.php:34
|
2540 |
#: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
|
2541 |
#: app/features/mec/regform.php:71 app/features/mec/settings.php:87
|
2542 |
+
#: app/features/mec/settings.php:877 app/features/mec/single.php:33
|
2543 |
#: app/features/mec/styles.php:34 app/features/mec/styling.php:56
|
2544 |
msgid "User Profile"
|
2545 |
msgstr ""
|
2548 |
#: app/features/mec/ie.php:31 app/features/mec/messages.php:35
|
2549 |
#: app/features/mec/modules.php:42 app/features/mec/notifications.php:34
|
2550 |
#: app/features/mec/regform.php:72 app/features/mec/settings.php:93
|
2551 |
+
#: app/features/mec/settings.php:884 app/features/mec/single.php:34
|
2552 |
#: app/features/mec/styles.php:35 app/features/mec/styling.php:57
|
2553 |
msgid "Search Bar"
|
2554 |
msgstr ""
|
2575 |
#: app/features/mec/ie.php:47 app/features/mec/messages.php:51
|
2576 |
#: app/features/mec/modules.php:58 app/features/mec/notifications.php:50
|
2577 |
#: app/features/mec/regform.php:88 app/features/mec/settings.php:123
|
2578 |
+
#: app/features/mec/single.php:57 app/features/mec/single.php:220
|
2579 |
#: app/features/mec/styles.php:51 app/features/mec/styling.php:73
|
2580 |
msgid "Single Event Page"
|
2581 |
msgstr ""
|
2584 |
#: app/features/mec/ie.php:50 app/features/mec/messages.php:54
|
2585 |
#: app/features/mec/modules.php:61 app/features/mec/notifications.php:53
|
2586 |
#: app/features/mec/regform.php:91 app/features/mec/settings.php:126
|
2587 |
+
#: app/features/mec/single.php:75 app/features/mec/single.php:357
|
2588 |
#: app/features/mec/styles.php:54 app/features/mec/styling.php:76
|
2589 |
msgid "Additional Organizers"
|
2590 |
msgstr ""
|
2598 |
msgid "Additional Locations"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: app/features/mec/booking.php:65 app/features/mec/gateways.php:56
|
2602 |
+
#: app/features/mec/ie.php:52 app/features/mec/messages.php:56
|
2603 |
+
#: app/features/mec/modules.php:63 app/features/mec/notifications.php:55
|
2604 |
+
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2605 |
+
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2606 |
+
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2607 |
+
#: app/skins/single.php:155
|
2608 |
+
msgid "Related Events"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: app/features/mec/booking.php:100 app/features/mec/booking.php:374
|
2612 |
#: app/features/mec/gateways.php:73 app/features/mec/ie.php:69
|
2613 |
#: app/features/mec/messages.php:73 app/features/mec/modules.php:80
|
2614 |
#: app/features/mec/notifications.php:72 app/features/mec/regform.php:110
|
2615 |
+
#: app/features/mec/settings.php:145 app/features/mec/single.php:106
|
2616 |
#: app/features/mec/styles.php:73 app/features/mec/styling.php:95
|
2617 |
+
msgid "Taxes / Fees"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: app/features/mec/booking.php:106 app/features/mec/booking.php:451
|
2621 |
+
#: app/features/mec/gateways.php:74 app/features/mec/ie.php:70
|
2622 |
+
#: app/features/mec/messages.php:74 app/features/mec/modules.php:81
|
2623 |
+
#: app/features/mec/notifications.php:73 app/features/mec/regform.php:111
|
2624 |
+
#: app/features/mec/settings.php:146 app/features/mec/single.php:107
|
2625 |
+
#: app/features/mec/styles.php:74 app/features/mec/styling.php:96
|
2626 |
+
msgid "Ticket Variations & Options"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: app/features/mec/booking.php:120 app/features/mec/gateways.php:85
|
2630 |
+
#: app/features/mec/ie.php:81 app/features/mec/messages.php:85
|
2631 |
+
#: app/features/mec/modules.php:96 app/features/mec/notifications.php:84
|
2632 |
+
#: app/features/mec/regform.php:122 app/features/mec/settings.php:157
|
2633 |
+
#: app/features/mec/single.php:118 app/features/mec/styles.php:85
|
2634 |
+
#: app/features/mec/styling.php:107
|
2635 |
+
msgid "Modules"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
#: app/features/mec/booking.php:128 app/features/mec/gateways.php:93
|
2639 |
#: app/features/mec/ie.php:89 app/features/mec/messages.php:93
|
2640 |
+
#: app/features/mec/modules.php:119 app/features/mec/modules.php:373
|
2641 |
#: app/features/mec/notifications.php:92 app/features/mec/regform.php:130
|
2642 |
+
#: app/features/mec/settings.php:165 app/features/mec/single.php:126
|
2643 |
#: app/features/mec/styles.php:93 app/features/mec/styling.php:115
|
2644 |
+
msgid "Export Options"
|
|
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: app/features/mec/booking.php:129 app/features/mec/gateways.php:94
|
2648 |
+
#: app/features/mec/ie.php:90 app/features/mec/messages.php:94
|
2649 |
+
#: app/features/mec/modules.php:125 app/features/mec/modules.php:400
|
2650 |
+
#: app/features/mec/notifications.php:93 app/features/mec/regform.php:131
|
2651 |
+
#: app/features/mec/settings.php:166 app/features/mec/single.php:127
|
2652 |
+
#: app/features/mec/styles.php:94 app/features/mec/styling.php:116
|
2653 |
+
#: app/modules/local-time/details.php:42 app/widgets/single.php:99
|
2654 |
+
msgid "Local Time"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
#: app/features/mec/booking.php:131 app/features/mec/gateways.php:96
|
2658 |
#: app/features/mec/ie.php:92 app/features/mec/messages.php:96
|
2659 |
+
#: app/features/mec/modules.php:133 app/features/mec/modules.php:414
|
2660 |
#: app/features/mec/notifications.php:95 app/features/mec/regform.php:133
|
2661 |
+
#: app/features/mec/settings.php:168 app/features/mec/single.php:129
|
2662 |
#: app/features/mec/styles.php:96 app/features/mec/styling.php:118
|
2663 |
+
#: app/modules/qrcode/details.php:38 app/widgets/single.php:155
|
2664 |
+
msgid "QR Code"
|
2665 |
+
msgstr ""
|
2666 |
+
|
2667 |
+
#: app/features/mec/booking.php:132 app/features/mec/gateways.php:97
|
2668 |
+
#: app/features/mec/ie.php:93 app/features/mec/messages.php:97
|
2669 |
+
#: app/features/mec/modules.php:139 app/features/mec/modules.php:432
|
2670 |
+
#: app/features/mec/notifications.php:96 app/features/mec/regform.php:134
|
2671 |
+
#: app/features/mec/settings.php:169 app/features/mec/single.php:130
|
2672 |
+
#: app/features/mec/styles.php:97 app/features/mec/styling.php:119
|
2673 |
#: app/modules/weather/details.php:37
|
2674 |
msgid "Weather"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: app/features/mec/booking.php:135 app/features/mec/gateways.php:100
|
2678 |
+
#: app/features/mec/ie.php:96 app/features/mec/messages.php:100
|
2679 |
+
#: app/features/mec/modules.php:153 app/features/mec/modules.php:494
|
2680 |
+
#: app/features/mec/notifications.php:99 app/features/mec/regform.php:137
|
2681 |
+
#: app/features/mec/settings.php:172 app/features/mec/single.php:133
|
2682 |
+
#: app/features/mec/styles.php:100 app/features/mec/styling.php:122
|
2683 |
#: app/modules/next-event/details.php:82
|
2684 |
msgid "Next Event"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
|
2688 |
+
#: app/features/mec/ie.php:131 app/features/mec/messages.php:135
|
2689 |
+
#: app/features/mec/modules.php:197 app/features/mec/notifications.php:144
|
2690 |
+
#: app/features/mec/notifications.php:291 app/features/mec/regform.php:170
|
2691 |
+
#: app/features/mec/settings.php:207 app/features/mec/single.php:168
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2692 |
#: app/features/mec/styles.php:135 app/features/mec/styling.php:157
|
2693 |
+
msgid "Booking Verification"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: app/features/mec/booking.php:171 app/features/mec/booking.php:330
|
2697 |
+
#: app/features/mec/gateways.php:136 app/features/mec/ie.php:132
|
2698 |
+
#: app/features/mec/messages.php:136 app/features/mec/modules.php:198
|
2699 |
+
#: app/features/mec/notifications.php:150
|
2700 |
+
#: app/features/mec/notifications.php:343 app/features/mec/regform.php:171
|
2701 |
+
#: app/features/mec/settings.php:208 app/features/mec/single.php:169
|
2702 |
#: app/features/mec/styles.php:136 app/features/mec/styling.php:158
|
2703 |
+
msgid "Booking Confirmation"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
#: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
|
2707 |
#: app/features/mec/ie.php:133 app/features/mec/messages.php:137
|
2708 |
+
#: app/features/mec/modules.php:199 app/features/mec/notifications.php:156
|
2709 |
+
#: app/features/mec/notifications.php:395 app/features/mec/regform.php:172
|
2710 |
+
#: app/features/mec/settings.php:209 app/features/mec/single.php:170
|
2711 |
#: app/features/mec/styles.php:137 app/features/mec/styling.php:159
|
2712 |
+
msgid "Booking Cancellation"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
#: app/features/mec/booking.php:173 app/features/mec/gateways.php:138
|
2716 |
#: app/features/mec/ie.php:134 app/features/mec/messages.php:138
|
2717 |
+
#: app/features/mec/modules.php:200 app/features/mec/notifications.php:162
|
2718 |
+
#: app/features/mec/notifications.php:463 app/features/mec/regform.php:173
|
2719 |
+
#: app/features/mec/settings.php:210 app/features/mec/single.php:171
|
2720 |
#: app/features/mec/styles.php:138 app/features/mec/styling.php:160
|
2721 |
+
msgid "Admin"
|
2722 |
+
msgstr ""
|
2723 |
+
|
2724 |
+
#: app/features/mec/booking.php:174 app/features/mec/gateways.php:139
|
2725 |
+
#: app/features/mec/ie.php:135 app/features/mec/messages.php:139
|
2726 |
+
#: app/features/mec/modules.php:201 app/features/mec/notifications.php:168
|
2727 |
+
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2728 |
+
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2729 |
+
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2730 |
#: app/libraries/notifications.php:354
|
2731 |
msgid "Booking Reminder"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: app/features/mec/booking.php:176 app/features/mec/gateways.php:141
|
2735 |
+
#: app/features/mec/ie.php:137 app/features/mec/messages.php:141
|
2736 |
+
#: app/features/mec/modules.php:203 app/features/mec/notifications.php:174
|
2737 |
+
#: app/features/mec/notifications.php:599 app/features/mec/regform.php:176
|
2738 |
+
#: app/features/mec/settings.php:213 app/features/mec/single.php:174
|
2739 |
+
#: app/features/mec/styles.php:141 app/features/mec/styling.php:163
|
2740 |
#: app/features/mec/support-page.php:80
|
2741 |
msgid "New Event"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: app/features/mec/booking.php:184 app/features/mec/gateways.php:149
|
2745 |
+
#: app/features/mec/ie.php:145 app/features/mec/messages.php:149
|
2746 |
+
#: app/features/mec/modules.php:211 app/features/mec/notifications.php:185
|
2747 |
+
#: app/features/mec/regform.php:184 app/features/mec/settings.php:221
|
2748 |
+
#: app/features/mec/single.php:182 app/features/mec/styles.php:149
|
2749 |
+
#: app/features/mec/styling.php:171 app/features/mec/support.php:52
|
2750 |
msgid "Styling Options"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
+
#: app/features/mec/booking.php:191 app/features/mec/gateways.php:156
|
2754 |
+
#: app/features/mec/ie.php:152 app/features/mec/messages.php:156
|
2755 |
+
#: app/features/mec/modules.php:218 app/features/mec/notifications.php:192
|
2756 |
+
#: app/features/mec/regform.php:191 app/features/mec/settings.php:228
|
2757 |
+
#: app/features/mec/single.php:189 app/features/mec/styles.php:156
|
2758 |
+
#: app/features/mec/styling.php:178 app/features/mec/support.php:59
|
2759 |
msgid "Custom CSS"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: app/features/mec/booking.php:198 app/features/mec/gateways.php:163
|
2763 |
+
#: app/features/mec/ie.php:159 app/features/mec/messages.php:163
|
2764 |
+
#: app/features/mec/messages.php:183 app/features/mec/modules.php:225
|
2765 |
+
#: app/features/mec/notifications.php:199 app/features/mec/regform.php:198
|
2766 |
+
#: app/features/mec/settings.php:235 app/features/mec/single.php:196
|
2767 |
+
#: app/features/mec/styles.php:163 app/features/mec/styling.php:185
|
2768 |
#: app/features/mec/support.php:66
|
2769 |
msgid "Messages"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: app/features/mec/booking.php:229
|
2773 |
msgid "Enable booking module"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: app/features/mec/booking.php:230
|
2777 |
msgid ""
|
2778 |
+
"After enabling and saving the settings, reloading the page will add 'payment "
|
2779 |
+
"Gateways' to the settings and a new menu item on the Dashboard"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: app/features/mec/booking.php:235 app/features/mec/booking.php:240
|
2783 |
+
#: app/features/mec/modules.php:512 app/features/mec/modules.php:517
|
2784 |
msgid "Date Format"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: app/features/mec/booking.php:241
|
2788 |
msgid "Default is Y-m-d"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
+
#: app/features/mec/booking.php:248
|
2792 |
#: app/features/mec/meta_boxes/display_options.php:115
|
2793 |
#: app/features/mec/meta_boxes/display_options.php:276
|
2794 |
#: app/features/mec/meta_boxes/display_options.php:332
|
2798 |
msgid "Limit"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: app/features/mec/booking.php:250
|
2802 |
msgid "Default is empty"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
+
#: app/features/mec/booking.php:253
|
2806 |
msgid "Booking Limit"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
+
#: app/features/mec/booking.php:254
|
2810 |
msgid ""
|
2811 |
"Total tickets that a user can book. It is useful if you're providing free "
|
2812 |
"tickets. Leave it empty for unlimited booking."
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: app/features/mec/booking.php:261
|
2816 |
msgid "Maximum Dates"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: app/features/mec/booking.php:263
|
2820 |
msgid "Default is 6"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: app/features/mec/booking.php:267 app/features/mec/booking.php:277
|
2824 |
msgid "Thank You Page"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: app/features/mec/booking.php:278
|
2828 |
msgid ""
|
2829 |
"User redirects to this page after booking. Leave it empty if you want to "
|
2830 |
"disable it."
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: app/features/mec/booking.php:289
|
2834 |
msgid "Enable Express Attendees Form"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
#: app/features/mec/booking.php:293 app/modules/booking/steps/form.php:52
|
2838 |
msgid "Attendees Form"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
+
#: app/features/mec/booking.php:294
|
2842 |
msgid ""
|
2843 |
"Users are able to apply first attendee information for other attendees in "
|
2844 |
"the booking form."
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: app/features/mec/booking.php:307
|
2848 |
msgid "Enable Invoice"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: app/features/mec/booking.php:311
|
2852 |
msgid "Email verification"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: app/features/mec/booking.php:317
|
2856 |
msgid "Auto verification for free bookings"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: app/features/mec/booking.php:326
|
2860 |
msgid "Auto verification for paid bookings"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: app/features/mec/booking.php:336
|
2864 |
msgid "Auto confirmation for free bookings"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
+
#: app/features/mec/booking.php:345
|
2868 |
msgid "Auto confirmation for paid bookings"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: app/features/mec/booking.php:364
|
2872 |
msgid "Enable coupons module"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: app/features/mec/booking.php:366
|
2876 |
msgid ""
|
2877 |
+
"After enabling and saving the settings,, you should reload the page to see a "
|
2878 |
+
"new menu on the Dashboard > Booking"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: app/features/mec/booking.php:382
|
2882 |
msgid "Enable taxes / fees module"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: app/features/mec/booking.php:387
|
2886 |
msgid "Add Fee"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
+
#: app/features/mec/booking.php:459
|
2890 |
msgid "Enable ticket options module"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: app/features/mec/booking.php:464
|
2894 |
msgid "Add Variation / Option"
|
2895 |
msgstr ""
|
2896 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2897 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
2898 |
+
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
2899 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
2900 |
+
#: app/features/mec/settings.php:1083 app/features/mec/single.php:475
|
2901 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
2902 |
+
msgid "Saved"
|
2903 |
+
msgstr ""
|
2904 |
+
|
2905 |
+
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
2906 |
+
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
2907 |
+
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
2908 |
+
#: app/features/mec/settings.php:1084 app/features/mec/single.php:476
|
2909 |
+
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
2910 |
msgid "Settings Saved!"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
+
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
2914 |
+
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
2915 |
+
#: app/features/mec/notifications.php:735
|
2916 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1086
|
2917 |
+
#: app/features/mec/settings.php:1108 app/features/mec/single.php:478
|
2918 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4742
|
2919 |
msgid "Verified"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
2923 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1110
|
2924 |
+
#: app/features/mec/single.php:502
|
2925 |
msgid "Please Refresh Page"
|
2926 |
msgstr ""
|
2927 |
|
2978 |
msgid "MEC Activate"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
#: app/features/mec/dashboard.php:123
|
2982 |
msgid ""
|
2983 |
"In order to use all plugin features and options, please enter your purchase "
|
2984 |
"code."
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: app/features/mec/dashboard.php:181
|
2988 |
msgid "Activate Addons"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: app/features/mec/dashboard.php:190
|
2992 |
+
msgid "You cannot access this section."
|
2993 |
+
msgstr ""
|
2994 |
+
|
2995 |
+
#: app/features/mec/dashboard.php:234 app/features/mec/settings.php:542
|
2996 |
msgid "Upcoming Events"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
+
#: app/features/mec/dashboard.php:258
|
3000 |
msgid "Popular Gateways"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: app/features/mec/dashboard.php:312
|
3004 |
msgid "Total Bookings"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
#: app/features/mec/dashboard.php:339
|
3008 |
msgid "This Month"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: app/features/mec/dashboard.php:340
|
3012 |
msgid "Last Month"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: app/features/mec/dashboard.php:341
|
3016 |
msgid "This Year"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: app/features/mec/dashboard.php:342
|
3020 |
msgid "Last Year"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: app/features/mec/dashboard.php:354
|
3024 |
msgid "Bar"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
+
#: app/features/mec/dashboard.php:355
|
3028 |
msgid "Line"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
+
#: app/features/mec/dashboard.php:357
|
3032 |
msgid "Filter"
|
3033 |
msgstr ""
|
3034 |
|
3035 |
+
#: app/features/mec/dashboard.php:373
|
3036 |
#, php-format
|
3037 |
msgid "Total Sells (%s)"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: app/features/mec/dashboard.php:394
|
3041 |
msgid "Change Log"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: app/features/mec/gateways.php:199
|
3045 |
msgid "Enable Organizer Payment Module"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: app/features/mec/gateways.php:203
|
3049 |
msgid "Organizer Payment"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: app/features/mec/gateways.php:204
|
3053 |
msgid ""
|
3054 |
"By enabling this module, organizers are able to insert their own payment "
|
3055 |
"credentials for enabled gateways per event and receive the payments directly!"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: app/features/mec/ie.php:180
|
3059 |
msgid ""
|
3060 |
"Insert your backup files below and press import to restore your site's "
|
3061 |
"options to the last backup."
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: app/features/mec/ie.php:181
|
3065 |
msgid ""
|
3066 |
"WARNING! Restoring backup will overwrite all of your current option values. "
|
3067 |
"Caution Indeed."
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: app/features/mec/ie.php:184
|
3071 |
msgid "Please paste your options here"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: app/features/mec/ie.php:186
|
3075 |
msgid "Import Settings"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: app/features/mec/ie.php:196
|
3079 |
msgid "Download Settings"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: app/features/mec/messages.php:186
|
3083 |
msgid ""
|
3084 |
"You can change some MEC messages here simply. For example if you like to "
|
3085 |
"change \"REGISTER\" button label, you can do it here. By the Way, if your "
|
3095 |
#: app/features/mec/meta_boxes/display_options.php:159
|
3096 |
#: app/features/mec/meta_boxes/display_options.php:531
|
3097 |
#: app/features/mec/meta_boxes/display_options.php:845
|
3098 |
+
#: app/features/mec/settings.php:406 app/features/mec/settings.php:430
|
3099 |
+
#: app/features/mec/settings.php:439 app/features/mec/settings.php:480
|
3100 |
+
#: app/features/mec/settings.php:504 app/features/mec/settings.php:513
|
3101 |
msgid "Classic"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
#: app/features/mec/meta_boxes/display_options.php:35
|
3105 |
#: app/features/mec/meta_boxes/display_options.php:161
|
3106 |
+
#: app/features/mec/settings.php:431 app/features/mec/settings.php:441
|
3107 |
+
#: app/features/mec/settings.php:505 app/features/mec/settings.php:515
|
3108 |
msgid "Minimal"
|
3109 |
msgstr ""
|
3110 |
|
3114 |
#: app/features/mec/meta_boxes/display_options.php:533
|
3115 |
#: app/features/mec/meta_boxes/display_options.php:695
|
3116 |
#: app/features/mec/meta_boxes/display_options.php:847
|
3117 |
+
#: app/features/mec/settings.php:408 app/features/mec/settings.php:421
|
3118 |
+
#: app/features/mec/settings.php:432 app/features/mec/settings.php:442
|
3119 |
+
#: app/features/mec/settings.php:482 app/features/mec/settings.php:495
|
3120 |
+
#: app/features/mec/settings.php:506 app/features/mec/settings.php:516
|
3121 |
msgid "Modern"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
#: app/features/mec/meta_boxes/display_options.php:37
|
3125 |
+
#: app/features/mec/settings.php:433 app/features/mec/settings.php:507
|
3126 |
msgid "Standard"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
#: app/features/mec/meta_boxes/display_options.php:38
|
3130 |
+
#: app/features/mec/settings.php:434 app/features/mec/settings.php:508
|
3131 |
msgid "Accordion"
|
3132 |
msgstr ""
|
3133 |
|
3342 |
#: app/features/mec/meta_boxes/display_options.php:532
|
3343 |
#: app/features/mec/meta_boxes/display_options.php:696
|
3344 |
#: app/features/mec/meta_boxes/display_options.php:846
|
3345 |
+
#: app/features/mec/settings.php:407 app/features/mec/settings.php:422
|
3346 |
+
#: app/features/mec/settings.php:440 app/features/mec/settings.php:481
|
3347 |
+
#: app/features/mec/settings.php:496 app/features/mec/settings.php:514
|
3348 |
msgid "Clean"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
#: app/features/mec/meta_boxes/display_options.php:163
|
3352 |
#: app/features/mec/meta_boxes/display_options.php:387
|
3353 |
#: app/features/mec/meta_boxes/display_options.php:535
|
3354 |
+
#: app/features/mec/settings.php:410 app/features/mec/settings.php:443
|
3355 |
+
#: app/features/mec/settings.php:484 app/features/mec/settings.php:517
|
3356 |
msgid "Simple"
|
3357 |
msgstr ""
|
3358 |
|
3363 |
#: app/features/mec/meta_boxes/display_options.php:165
|
3364 |
#: app/features/mec/meta_boxes/display_options.php:386
|
3365 |
#: app/features/mec/meta_boxes/display_options.php:534
|
3366 |
+
#: app/features/mec/settings.php:409 app/features/mec/settings.php:445
|
3367 |
+
#: app/features/mec/settings.php:483 app/features/mec/settings.php:519
|
3368 |
msgid "Novel"
|
3369 |
msgstr ""
|
3370 |
|
3409 |
|
3410 |
#: app/features/mec/meta_boxes/display_options.php:375
|
3411 |
#: app/features/mec/meta_boxes/display_options.php:396
|
3412 |
+
#: app/libraries/main.php:329 app/libraries/main.php:1249
|
3413 |
+
#: app/libraries/main.php:1274
|
3414 |
msgid "List View"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
#: app/features/mec/meta_boxes/display_options.php:376
|
3418 |
#: app/features/mec/meta_boxes/display_options.php:406
|
3419 |
+
#: app/libraries/main.php:333 app/libraries/main.php:1243
|
3420 |
+
#: app/libraries/main.php:1268
|
3421 |
msgid "Yearly View"
|
3422 |
msgstr ""
|
3423 |
|
3428 |
|
3429 |
#: app/features/mec/meta_boxes/display_options.php:378
|
3430 |
#: app/features/mec/meta_boxes/display_options.php:438
|
3431 |
+
#: app/libraries/main.php:336 app/libraries/main.php:1245
|
3432 |
+
#: app/libraries/main.php:1270
|
3433 |
msgid "Weekly View"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
#: app/features/mec/meta_boxes/display_options.php:379
|
3437 |
#: app/features/mec/meta_boxes/display_options.php:448
|
3438 |
+
#: app/libraries/main.php:335 app/libraries/main.php:1246
|
3439 |
+
#: app/libraries/main.php:1271
|
3440 |
msgid "Daily View"
|
3441 |
msgstr ""
|
3442 |
|
3744 |
#: app/features/mec/meta_boxes/search_form.php:130
|
3745 |
#: app/features/mec/meta_boxes/search_form.php:137
|
3746 |
#: app/features/mec/meta_boxes/search_form.php:144
|
3747 |
+
#: app/features/mec/meta_boxes/search_form.php:157
|
3748 |
+
#: app/features/mec/meta_boxes/search_form.php:164
|
3749 |
+
#: app/features/mec/meta_boxes/search_form.php:171
|
3750 |
+
#: app/features/mec/meta_boxes/search_form.php:178
|
3751 |
+
#: app/features/mec/meta_boxes/search_form.php:185
|
3752 |
+
#: app/features/mec/meta_boxes/search_form.php:192
|
3753 |
+
#: app/features/mec/meta_boxes/search_form.php:199
|
3754 |
+
#: app/features/mec/meta_boxes/search_form.php:206
|
3755 |
+
#: app/features/mec/meta_boxes/search_form.php:218
|
3756 |
+
#: app/features/mec/meta_boxes/search_form.php:225
|
3757 |
+
#: app/features/mec/meta_boxes/search_form.php:232
|
3758 |
+
#: app/features/mec/meta_boxes/search_form.php:239
|
3759 |
+
#: app/features/mec/meta_boxes/search_form.php:246
|
3760 |
+
#: app/features/mec/meta_boxes/search_form.php:253
|
3761 |
+
#: app/features/mec/meta_boxes/search_form.php:260
|
3762 |
+
#: app/features/mec/meta_boxes/search_form.php:267
|
3763 |
+
#: app/features/mec/meta_boxes/search_form.php:279
|
3764 |
+
#: app/features/mec/meta_boxes/search_form.php:286
|
3765 |
+
#: app/features/mec/meta_boxes/search_form.php:293
|
3766 |
+
#: app/features/mec/meta_boxes/search_form.php:300
|
3767 |
+
#: app/features/mec/meta_boxes/search_form.php:307
|
3768 |
+
#: app/features/mec/meta_boxes/search_form.php:314
|
3769 |
+
#: app/features/mec/meta_boxes/search_form.php:321
|
3770 |
+
#: app/features/mec/meta_boxes/search_form.php:328
|
3771 |
+
#: app/features/mec/meta_boxes/search_form.php:340
|
3772 |
+
#: app/features/mec/meta_boxes/search_form.php:347
|
3773 |
+
#: app/features/mec/meta_boxes/search_form.php:354
|
3774 |
+
#: app/features/mec/meta_boxes/search_form.php:361
|
3775 |
+
#: app/features/mec/meta_boxes/search_form.php:368
|
3776 |
+
#: app/features/mec/meta_boxes/search_form.php:375
|
3777 |
+
#: app/features/mec/meta_boxes/search_form.php:382
|
3778 |
+
#: app/features/mec/meta_boxes/search_form.php:389
|
3779 |
+
#: app/features/mec/meta_boxes/search_form.php:401
|
3780 |
+
#: app/features/mec/meta_boxes/search_form.php:408
|
3781 |
+
#: app/features/mec/meta_boxes/search_form.php:415
|
3782 |
+
#: app/features/mec/meta_boxes/search_form.php:422
|
3783 |
+
#: app/features/mec/meta_boxes/search_form.php:429
|
3784 |
+
#: app/features/mec/meta_boxes/search_form.php:436
|
3785 |
+
#: app/features/mec/meta_boxes/search_form.php:443
|
3786 |
+
#: app/features/mec/meta_boxes/search_form.php:455
|
3787 |
+
#: app/features/mec/meta_boxes/search_form.php:462
|
3788 |
+
#: app/features/mec/meta_boxes/search_form.php:469
|
3789 |
+
#: app/features/mec/meta_boxes/search_form.php:476
|
3790 |
+
#: app/features/mec/meta_boxes/search_form.php:483
|
3791 |
+
#: app/features/mec/meta_boxes/search_form.php:490
|
3792 |
+
#: app/features/mec/meta_boxes/search_form.php:497
|
3793 |
+
#: app/features/mec/meta_boxes/search_form.php:504
|
3794 |
+
#: app/features/mec/meta_boxes/search_form.php:516
|
3795 |
+
#: app/features/mec/meta_boxes/search_form.php:523
|
3796 |
+
#: app/features/mec/meta_boxes/search_form.php:530
|
3797 |
+
#: app/features/mec/meta_boxes/search_form.php:537
|
3798 |
+
#: app/features/mec/meta_boxes/search_form.php:544
|
3799 |
+
#: app/features/mec/meta_boxes/search_form.php:551
|
3800 |
+
#: app/features/mec/meta_boxes/search_form.php:558
|
3801 |
+
#: app/features/mec/meta_boxes/search_form.php:565
|
3802 |
+
#: app/features/mec/meta_boxes/search_form.php:577
|
3803 |
+
#: app/features/mec/meta_boxes/search_form.php:584
|
3804 |
+
#: app/features/mec/meta_boxes/search_form.php:591
|
3805 |
+
#: app/features/mec/meta_boxes/search_form.php:598
|
3806 |
+
#: app/features/mec/meta_boxes/search_form.php:605
|
3807 |
+
#: app/features/mec/meta_boxes/search_form.php:612
|
3808 |
+
#: app/features/mec/meta_boxes/search_form.php:619
|
3809 |
+
#: app/features/mec/meta_boxes/search_form.php:626
|
3810 |
+
#: app/features/mec/modules.php:331 app/features/mec/settings.php:304
|
3811 |
+
#: app/features/mec/settings.php:560
|
3812 |
msgid "Disabled"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
#: app/features/mec/meta_boxes/search_form.php:52
|
3816 |
#: app/features/mec/meta_boxes/search_form.php:114
|
3817 |
+
#: app/features/mec/meta_boxes/search_form.php:176
|
3818 |
+
#: app/features/mec/meta_boxes/search_form.php:237
|
3819 |
+
#: app/features/mec/meta_boxes/search_form.php:298
|
3820 |
+
#: app/features/mec/meta_boxes/search_form.php:359
|
3821 |
+
#: app/features/mec/meta_boxes/search_form.php:420
|
3822 |
+
#: app/features/mec/meta_boxes/search_form.php:474
|
3823 |
+
#: app/features/mec/meta_boxes/search_form.php:535
|
3824 |
+
#: app/features/mec/meta_boxes/search_form.php:596
|
3825 |
+
#: app/features/mec/settings.php:909 app/features/mec/single.php:403
|
3826 |
+
#: app/features/speakers.php:59 app/features/speakers.php:247
|
3827 |
+
#: app/libraries/main.php:4504 app/libraries/skins.php:891
|
3828 |
msgid "Speaker"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
#: app/features/mec/meta_boxes/search_form.php:59
|
3832 |
#: app/features/mec/meta_boxes/search_form.php:121
|
3833 |
+
#: app/features/mec/meta_boxes/search_form.php:183
|
3834 |
+
#: app/features/mec/meta_boxes/search_form.php:244
|
3835 |
+
#: app/features/mec/meta_boxes/search_form.php:305
|
3836 |
+
#: app/features/mec/meta_boxes/search_form.php:366
|
3837 |
+
#: app/features/mec/meta_boxes/search_form.php:427
|
3838 |
+
#: app/features/mec/meta_boxes/search_form.php:481
|
3839 |
+
#: app/features/mec/meta_boxes/search_form.php:542
|
3840 |
+
#: app/features/mec/meta_boxes/search_form.php:603
|
3841 |
+
#: app/features/mec/settings.php:916 app/features/mec/single.php:412
|
3842 |
+
#: app/libraries/skins.php:917
|
3843 |
msgid "Tag"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
#: app/features/mec/meta_boxes/search_form.php:73
|
3847 |
#: app/features/mec/meta_boxes/search_form.php:135
|
3848 |
+
#: app/features/mec/meta_boxes/search_form.php:197
|
3849 |
+
#: app/features/mec/meta_boxes/search_form.php:258
|
3850 |
+
#: app/features/mec/meta_boxes/search_form.php:319
|
3851 |
+
#: app/features/mec/meta_boxes/search_form.php:380
|
3852 |
+
#: app/features/mec/meta_boxes/search_form.php:495
|
3853 |
+
#: app/features/mec/meta_boxes/search_form.php:556
|
3854 |
+
#: app/features/mec/meta_boxes/search_form.php:617
|
3855 |
msgid "Month Filter"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
#: app/features/mec/meta_boxes/search_form.php:80
|
3859 |
#: app/features/mec/meta_boxes/search_form.php:142
|
3860 |
+
#: app/features/mec/meta_boxes/search_form.php:204
|
3861 |
+
#: app/features/mec/meta_boxes/search_form.php:265
|
3862 |
+
#: app/features/mec/meta_boxes/search_form.php:326
|
3863 |
+
#: app/features/mec/meta_boxes/search_form.php:387
|
3864 |
+
#: app/features/mec/meta_boxes/search_form.php:441
|
3865 |
+
#: app/features/mec/meta_boxes/search_form.php:502
|
3866 |
+
#: app/features/mec/meta_boxes/search_form.php:563
|
3867 |
+
#: app/features/mec/meta_boxes/search_form.php:624
|
3868 |
msgid "Text Search"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
#: app/features/mec/meta_boxes/search_form.php:83
|
3872 |
#: app/features/mec/meta_boxes/search_form.php:145
|
3873 |
+
#: app/features/mec/meta_boxes/search_form.php:207
|
3874 |
+
#: app/features/mec/meta_boxes/search_form.php:268
|
3875 |
+
#: app/features/mec/meta_boxes/search_form.php:329
|
3876 |
+
#: app/features/mec/meta_boxes/search_form.php:390
|
3877 |
+
#: app/features/mec/meta_boxes/search_form.php:444
|
3878 |
+
#: app/features/mec/meta_boxes/search_form.php:505
|
3879 |
+
#: app/features/mec/meta_boxes/search_form.php:566
|
3880 |
+
#: app/features/mec/meta_boxes/search_form.php:627
|
3881 |
msgid "Text Input"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: app/features/mec/meta_boxes/search_form.php:635
|
3885 |
+
#: app/features/mec/meta_boxes/search_form.php:641
|
3886 |
+
#: app/features/mec/meta_boxes/search_form.php:647
|
3887 |
+
#: app/features/mec/meta_boxes/search_form.php:653
|
3888 |
+
#: app/features/mec/meta_boxes/search_form.php:659
|
3889 |
+
#: app/features/mec/meta_boxes/search_form.php:665
|
3890 |
msgid "No Search Options"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
#: app/features/mec/modules.php:249
|
3894 |
msgid "Speakers Options"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: app/features/mec/modules.php:255
|
3898 |
msgid "Enable speakers feature"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: app/features/mec/modules.php:259
|
3902 |
+
msgid ""
|
3903 |
+
"Enable this option to have speaker in Hourly Schedule in Single. Refresh "
|
3904 |
+
"after enabling it to see the Speakers menu under MEC dashboard."
|
3905 |
+
msgstr ""
|
3906 |
+
|
3907 |
+
#: app/features/mec/modules.php:264
|
3908 |
msgid ""
|
3909 |
+
"After enabling and saving the settings, you should reload the page to see a "
|
3910 |
+
"new menu on the Dashboard > MEC"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: app/features/mec/modules.php:281
|
3914 |
msgid "Show Google Maps on event page"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
3918 |
+
#: app/features/mec/settings.php:946 app/features/mec/settings.php:951
|
3919 |
msgid "API Key"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:952
|
3923 |
+
#: app/features/mec/settings.php:965
|
3924 |
msgid "Required!"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: app/features/mec/modules.php:299 app/features/mec/modules.php:308
|
3928 |
msgid "Zoom level"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: app/features/mec/modules.php:309
|
3932 |
msgid ""
|
3933 |
"For Google Maps module in single event page. In Google Maps skin, it will "
|
3934 |
"caculate the zoom level automatically based on event boundaries."
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: app/features/mec/modules.php:316
|
3938 |
msgid "Google Maps Style"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: app/features/mec/modules.php:320 app/features/mec/single.php:274
|
3942 |
msgid "Default"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: app/features/mec/modules.php:328
|
3946 |
msgid "Direction on single event"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: app/features/mec/modules.php:332
|
3950 |
msgid "Simple Method"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: app/features/mec/modules.php:333
|
3954 |
msgid "Advanced Method"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: app/features/mec/modules.php:338 app/features/mec/modules.php:343
|
3958 |
msgid "Lightbox Date Format"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
+
#: app/features/mec/modules.php:344
|
3962 |
msgid "Default value is M d Y"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: app/features/mec/modules.php:351 app/features/mec/modules.php:359
|
3966 |
msgid "Google Maps API"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: app/features/mec/modules.php:355
|
3970 |
msgid "Don't load Google Maps API library"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: app/features/mec/modules.php:360
|
3974 |
msgid "Check it only if another plugin/theme is loading the Google Maps API"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: app/features/mec/modules.php:377
|
3978 |
msgid ""
|
3979 |
"Show export module (iCal export and add to Google calendars) on event page"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: app/features/mec/modules.php:384
|
3983 |
msgid "Google Calendar"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: app/features/mec/modules.php:404
|
3987 |
msgid "Show event time based on local time of visitor on event page"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: app/features/mec/modules.php:422
|
3991 |
msgid "Show QR code of event in details page and booking invoice"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: app/features/mec/modules.php:439
|
3995 |
msgid "Show weather module on event page"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: app/features/mec/modules.php:447
|
3999 |
#, php-format
|
4000 |
msgid "You can get a free API Key from %s"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: app/features/mec/modules.php:453
|
4004 |
msgid "Show weather imperial units"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: app/features/mec/modules.php:459
|
4008 |
msgid "Show weather change units button"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
+
#: app/features/mec/modules.php:473
|
4012 |
msgid "Show social network module"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: app/features/mec/modules.php:498
|
4016 |
msgid "Show next event module on event page"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: app/features/mec/modules.php:503
|
4020 |
msgid "Method"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
+
#: app/features/mec/modules.php:506
|
4024 |
msgid "Next Occurrence of Current Event"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: app/features/mec/modules.php:507
|
4028 |
msgid "Next Occurrence of Other Events"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: app/features/mec/modules.php:518 app/features/mec/single.php:228
|
4032 |
msgid "Default is M d Y"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: app/features/mec/modules.php:534
|
4036 |
msgid "Enable BuddyPress Integration"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: app/features/mec/modules.php:541
|
4040 |
msgid "Show \"Attendees Module\" in event details page"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: app/features/mec/modules.php:545
|
4044 |
msgid "Attendees Limit"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: app/features/mec/modules.php:553
|
4048 |
msgid "Add booking activity to user profile"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: app/features/mec/notifications.php:231
|
4052 |
msgid "Enable booking notification"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: app/features/mec/notifications.php:235
|
4056 |
msgid "It sends to attendee after booking for notifying him/her."
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: app/features/mec/notifications.php:237
|
4060 |
+
#: app/features/mec/notifications.php:294
|
4061 |
+
#: app/features/mec/notifications.php:346
|
4062 |
+
#: app/features/mec/notifications.php:405
|
4063 |
+
#: app/features/mec/notifications.php:473
|
4064 |
+
#: app/features/mec/notifications.php:536
|
4065 |
+
#: app/features/mec/notifications.php:609
|
4066 |
msgid "Email Subject"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: app/features/mec/notifications.php:241
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4070 |
#: app/features/mec/notifications.php:245
|
4071 |
+
#: app/features/mec/notifications.php:298
|
4072 |
#: app/features/mec/notifications.php:302
|
4073 |
+
#: app/features/mec/notifications.php:350
|
4074 |
#: app/features/mec/notifications.php:354
|
4075 |
+
#: app/features/mec/notifications.php:409
|
4076 |
#: app/features/mec/notifications.php:413
|
4077 |
+
#: app/features/mec/notifications.php:477
|
4078 |
#: app/features/mec/notifications.php:481
|
4079 |
+
#: app/features/mec/notifications.php:540
|
4080 |
#: app/features/mec/notifications.php:544
|
4081 |
#: app/features/mec/notifications.php:555
|
4082 |
+
#: app/features/mec/notifications.php:613
|
4083 |
#: app/features/mec/notifications.php:617
|
4084 |
+
msgid "Custom Recipients"
|
4085 |
+
msgstr ""
|
4086 |
+
|
4087 |
+
#: app/features/mec/notifications.php:246
|
4088 |
+
#: app/features/mec/notifications.php:303
|
4089 |
+
#: app/features/mec/notifications.php:355
|
4090 |
+
#: app/features/mec/notifications.php:414
|
4091 |
+
#: app/features/mec/notifications.php:482
|
4092 |
+
#: app/features/mec/notifications.php:545
|
4093 |
+
#: app/features/mec/notifications.php:556
|
4094 |
+
#: app/features/mec/notifications.php:618
|
4095 |
msgid "Insert comma separated emails for multiple recipients."
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: app/features/mec/notifications.php:253
|
4099 |
+
#: app/features/mec/notifications.php:425
|
4100 |
+
#: app/features/mec/notifications.php:489
|
4101 |
msgid "Send the email to event organizer"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: app/features/mec/notifications.php:256
|
4105 |
+
#: app/features/mec/notifications.php:309
|
4106 |
+
#: app/features/mec/notifications.php:361
|
4107 |
+
#: app/features/mec/notifications.php:432
|
4108 |
+
#: app/features/mec/notifications.php:492
|
4109 |
+
#: app/features/mec/notifications.php:562
|
4110 |
+
#: app/features/mec/notifications.php:624
|
4111 |
msgid "Email Content"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: app/features/mec/notifications.php:259
|
4115 |
+
#: app/features/mec/notifications.php:312
|
4116 |
+
#: app/features/mec/notifications.php:364
|
4117 |
+
#: app/features/mec/notifications.php:435
|
4118 |
+
#: app/features/mec/notifications.php:495
|
4119 |
+
#: app/features/mec/notifications.php:565
|
4120 |
+
#: app/features/mec/notifications.php:627
|
4121 |
msgid "You can use following placeholders"
|
4122 |
msgstr ""
|
4123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4124 |
#: app/features/mec/notifications.php:261
|
4125 |
#: app/features/mec/notifications.php:314
|
4126 |
#: app/features/mec/notifications.php:366
|
4127 |
#: app/features/mec/notifications.php:437
|
4128 |
#: app/features/mec/notifications.php:497
|
4129 |
#: app/features/mec/notifications.php:567
|
4130 |
+
msgid "First name of attendee"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
#: app/features/mec/notifications.php:262
|
4136 |
#: app/features/mec/notifications.php:438
|
4137 |
#: app/features/mec/notifications.php:498
|
4138 |
#: app/features/mec/notifications.php:568
|
4139 |
+
msgid "Last name of attendee"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
#: app/features/mec/notifications.php:263
|
4145 |
#: app/features/mec/notifications.php:439
|
4146 |
#: app/features/mec/notifications.php:499
|
4147 |
#: app/features/mec/notifications.php:569
|
4148 |
+
msgid "Email of attendee"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
#: app/features/mec/notifications.php:264
|
4154 |
#: app/features/mec/notifications.php:440
|
4155 |
#: app/features/mec/notifications.php:500
|
4156 |
#: app/features/mec/notifications.php:570
|
4157 |
+
msgid "Booked date of event"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
#: app/features/mec/notifications.php:265
|
4163 |
#: app/features/mec/notifications.php:441
|
4164 |
#: app/features/mec/notifications.php:501
|
4165 |
#: app/features/mec/notifications.php:571
|
4166 |
+
msgid "Booked time of event"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
#: app/features/mec/notifications.php:266
|
4172 |
#: app/features/mec/notifications.php:442
|
4173 |
#: app/features/mec/notifications.php:502
|
4174 |
#: app/features/mec/notifications.php:572
|
4175 |
+
msgid "Booking Price"
|
|
|
4176 |
msgstr ""
|
4177 |
|
4178 |
#: app/features/mec/notifications.php:267
|
4182 |
#: app/features/mec/notifications.php:503
|
4183 |
#: app/features/mec/notifications.php:573
|
4184 |
#: app/features/mec/notifications.php:633
|
4185 |
+
msgid "Your website title"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
#: app/features/mec/notifications.php:268
|
4192 |
#: app/features/mec/notifications.php:504
|
4193 |
#: app/features/mec/notifications.php:574
|
4194 |
#: app/features/mec/notifications.php:634
|
4195 |
+
msgid "Your website URL"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
#: app/features/mec/notifications.php:269
|
4201 |
#: app/features/mec/notifications.php:445
|
4202 |
#: app/features/mec/notifications.php:505
|
4203 |
#: app/features/mec/notifications.php:575
|
4204 |
+
#: app/features/mec/notifications.php:635
|
4205 |
+
msgid "Your website description"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
#: app/features/mec/notifications.php:270
|
4211 |
#: app/features/mec/notifications.php:446
|
4212 |
#: app/features/mec/notifications.php:506
|
4213 |
#: app/features/mec/notifications.php:576
|
4214 |
+
msgid "Event title"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
#: app/features/mec/notifications.php:271
|
4220 |
#: app/features/mec/notifications.php:447
|
4221 |
#: app/features/mec/notifications.php:507
|
4222 |
#: app/features/mec/notifications.php:577
|
4223 |
+
msgid "Event link"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
#: app/features/mec/notifications.php:272
|
4229 |
#: app/features/mec/notifications.php:448
|
4230 |
#: app/features/mec/notifications.php:508
|
4231 |
#: app/features/mec/notifications.php:578
|
4232 |
+
msgid "Speaker name of booked event"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
#: app/features/mec/notifications.php:273
|
4238 |
#: app/features/mec/notifications.php:449
|
4239 |
#: app/features/mec/notifications.php:509
|
4240 |
#: app/features/mec/notifications.php:579
|
4241 |
+
msgid "Organizer name of booked event"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
#: app/features/mec/notifications.php:274
|
4247 |
#: app/features/mec/notifications.php:450
|
4248 |
#: app/features/mec/notifications.php:510
|
4249 |
#: app/features/mec/notifications.php:580
|
4250 |
+
msgid "Organizer tel of booked event"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
#: app/features/mec/notifications.php:275
|
4256 |
#: app/features/mec/notifications.php:451
|
4257 |
#: app/features/mec/notifications.php:511
|
4258 |
#: app/features/mec/notifications.php:581
|
4259 |
+
msgid "Organizer email of booked event"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
#: app/features/mec/notifications.php:276
|
4265 |
#: app/features/mec/notifications.php:452
|
4266 |
#: app/features/mec/notifications.php:512
|
4267 |
#: app/features/mec/notifications.php:582
|
4268 |
+
msgid "Location name of booked event"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
#: app/features/mec/notifications.php:277
|
4272 |
+
#: app/features/mec/notifications.php:330
|
4273 |
+
#: app/features/mec/notifications.php:382
|
4274 |
+
#: app/features/mec/notifications.php:453
|
4275 |
+
#: app/features/mec/notifications.php:513
|
4276 |
+
#: app/features/mec/notifications.php:583
|
4277 |
+
msgid "Location address of booked event"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
#: app/features/mec/notifications.php:278
|
4281 |
+
#: app/features/mec/notifications.php:455
|
4282 |
+
#: app/features/mec/notifications.php:515
|
4283 |
+
msgid "Full Attendee info such as booking form data, name, email etc."
|
4284 |
msgstr ""
|
4285 |
|
4286 |
#: app/features/mec/notifications.php:279
|
|
|
4287 |
#: app/features/mec/notifications.php:384
|
|
|
|
|
4288 |
#: app/features/mec/notifications.php:585
|
4289 |
+
msgid "Invoice Link"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
#: app/features/mec/notifications.php:280
|
4293 |
#: app/features/mec/notifications.php:332
|
4294 |
#: app/features/mec/notifications.php:385
|
4295 |
+
#: app/features/mec/notifications.php:456
|
4296 |
+
#: app/features/mec/notifications.php:516
|
4297 |
#: app/features/mec/notifications.php:586
|
4298 |
+
msgid "Total Attendees"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
#: app/features/mec/notifications.php:281
|
4302 |
#: app/features/mec/notifications.php:333
|
4303 |
#: app/features/mec/notifications.php:386
|
4304 |
#: app/features/mec/notifications.php:587
|
4305 |
+
msgid "Ticket name"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
#: app/features/mec/notifications.php:282
|
4309 |
#: app/features/mec/notifications.php:334
|
4310 |
#: app/features/mec/notifications.php:387
|
4311 |
#: app/features/mec/notifications.php:588
|
4312 |
+
msgid "Ticket time"
|
4313 |
+
msgstr ""
|
4314 |
+
|
4315 |
+
#: app/features/mec/notifications.php:283
|
4316 |
+
#: app/features/mec/notifications.php:335
|
4317 |
+
#: app/features/mec/notifications.php:388
|
4318 |
+
#: app/features/mec/notifications.php:589
|
4319 |
msgid "Download ICS file"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: app/features/mec/notifications.php:292
|
4323 |
msgid "It sends to attendee email for verifying their booking/email."
|
4324 |
msgstr ""
|
4325 |
|
4326 |
+
#: app/features/mec/notifications.php:331
|
4327 |
msgid "Email/Booking verification link."
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: app/features/mec/notifications.php:344
|
4331 |
msgid "It sends to attendee after confirming the booking by admin."
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: app/features/mec/notifications.php:383
|
4335 |
+
#: app/features/mec/notificati
|