Version Description
- Added: Ajax live search to search bar
- Added: Filter before wp_mail (Booking Notification) for developers
- Fixed: Simple monthly calendar style
- Fixed: Daylight saving
- Fixed: Multiple days events
- Fixed: A two-year limit for filtering events
- Fixed: Yearly view search filter
- Fixed: Displaying total attendees in Booking Confirmation email
- Fixed: Displaying invoice link in booking when the invoice is disabled
- Fixed: Booking module in some themes (Lity popup)
- Fixed: Some minor issues
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.4.6 |
Comparing to | |
See all releases |
Code changes from version 4.4.5 to 4.4.6
- app/features/mec/settings.php +16 -1
- app/features/search.php +108 -9
- app/features/search_bar/search_bar.php +100 -8
- app/features/search_bar/search_noresult.php +1 -0
- app/features/search_bar/search_result.php +34 -0
- app/libraries/book.php +2 -1
- app/libraries/factory.php +5 -0
- app/libraries/main.php +21 -8
- app/libraries/notifications.php +70 -7
- app/libraries/skins.php +3 -9
- app/modules/export/details.php +1 -1
- app/modules/local-time/details.php +1 -1
- app/skins/agenda.php +0 -3
- app/skins/carousel.php +0 -3
- app/skins/grid.php +0 -3
- app/skins/list.php +0 -3
- app/skins/masonry.php +0 -3
- app/skins/single.php +13 -3
- app/skins/single/default.php +13 -5
- app/skins/single/modern.php +9 -2
- app/skins/slider.php +0 -3
- assets/css/backend.css +5 -0
- assets/css/backend.min.css +1 -1
- assets/css/frontend.css +91 -7
- assets/css/frontend.min.css +1 -1
- assets/js/frontend.js +5 -0
- changelog.txt +14 -1
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +256 -217
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +252 -217
- languages/modern-events-calendar-lite-es_ES.mo +0 -0
- languages/modern-events-calendar-lite-es_ES.po +256 -217
- languages/modern-events-calendar-lite-fr_FR.mo +0 -0
- languages/modern-events-calendar-lite-fr_FR.po +256 -220
- languages/modern-events-calendar-lite-hu_HU.mo +0 -0
- languages/modern-events-calendar-lite-hu_HU.po +252 -217
- languages/modern-events-calendar-lite-it_IT.mo +0 -0
- languages/modern-events-calendar-lite-it_IT.po +256 -217
- languages/modern-events-calendar-lite-nb_NO.mo +0 -0
- languages/modern-events-calendar-lite-nb_NO.po +256 -217
- languages/modern-events-calendar-lite-nl_NL.mo +0 -0
- languages/modern-events-calendar-lite-nl_NL.po +253 -217
- languages/modern-events-calendar-lite-pl_PL.mo +0 -0
- languages/modern-events-calendar-lite-pl_PL.po +256 -220
- languages/modern-events-calendar-lite-pt_BR.mo +0 -0
- languages/modern-events-calendar-lite-pt_BR.po +256 -217
- languages/modern-events-calendar-lite-ru_RU.mo +0 -0
- languages/modern-events-calendar-lite-ru_RU.po +256 -217
- languages/modern-events-calendar-lite-sv_SE.mo +0 -0
- languages/modern-events-calendar-lite-sv_SE.po +28 -28
app/features/mec/settings.php
CHANGED
@@ -884,6 +884,21 @@ $get_n_option = get_option('mec_addons_notification_option');
|
|
884 |
<h4 class="mec-form-subtitle"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></h4>
|
885 |
<div class="mec-form-row">
|
886 |
<p><?php echo sprintf(__('Put %s shortcode into your desired page. Then users are able to search events', 'modern-events-calendar-lite'), '<code>[MEC_search_bar]</code>'); ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
887 |
<div class="mec-form-row">
|
888 |
<label>
|
889 |
<input type="hidden" name="mec[settings][search_bar_category]" value="0" />
|
@@ -925,7 +940,7 @@ $get_n_option = get_option('mec_addons_notification_option');
|
|
925 |
<div class="mec-form-row">
|
926 |
<label>
|
927 |
<input type="hidden" name="mec[settings][search_bar_text_field]" value="0" />
|
928 |
-
<input value="1" type="checkbox" name="mec[settings][search_bar_text_field]" <?php if(isset($settings['search_bar_text_field']) and $settings['search_bar_text_field']) echo 'checked="checked"'; ?> /> <?php _e('Text
|
929 |
</label>
|
930 |
</div>
|
931 |
</div>
|
884 |
<h4 class="mec-form-subtitle"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></h4>
|
885 |
<div class="mec-form-row">
|
886 |
<p><?php echo sprintf(__('Put %s shortcode into your desired page. Then users are able to search events', 'modern-events-calendar-lite'), '<code>[MEC_search_bar]</code>'); ?></p>
|
887 |
+
<div class="mec-form-row">
|
888 |
+
<label>
|
889 |
+
<input type="hidden" name="mec[settings][search_bar_ajax_mode]" value="0" />
|
890 |
+
<input value="1" type="checkbox" name="mec[settings][search_bar_ajax_mode]" <?php if(isset($settings['search_bar_ajax_mode']) and $settings['search_bar_ajax_mode']) echo 'checked="checked"'; ?> /> <?php _e('Ajax Live mode', 'modern-events-calendar-lite'); ?>
|
891 |
+
</label>
|
892 |
+
<span class="mec-tooltip">
|
893 |
+
<div class="box">
|
894 |
+
<h5 class="title"><?php _e('Ajax mode', 'modern-events-calendar-lite'); ?></h5>
|
895 |
+
<div class="content"><p><?php esc_attr_e("if you enable this option, search button disappeared and to use this feature, text input field must be enabled.", 'modern-events-calendar-lite'); ?></p></div>
|
896 |
+
</div>
|
897 |
+
<i title="" class="dashicons-before dashicons-editor-help"></i>
|
898 |
+
</span>
|
899 |
+
</div>
|
900 |
+
<br>
|
901 |
+
<h4 class="mec-form-subtitle"><?php _e('Search bar fields', 'modern-events-calendar-lite'); ?></h4>
|
902 |
<div class="mec-form-row">
|
903 |
<label>
|
904 |
<input type="hidden" name="mec[settings][search_bar_category]" value="0" />
|
940 |
<div class="mec-form-row">
|
941 |
<label>
|
942 |
<input type="hidden" name="mec[settings][search_bar_text_field]" value="0" />
|
943 |
+
<input value="1" type="checkbox" name="mec[settings][search_bar_text_field]" <?php if(isset($settings['search_bar_text_field']) and $settings['search_bar_text_field']) echo 'checked="checked"'; ?> /> <?php _e('Text input', 'modern-events-calendar-lite'); ?>
|
944 |
</label>
|
945 |
</div>
|
946 |
</div>
|
app/features/search.php
CHANGED
@@ -7,15 +7,10 @@ defined('MECEXEC') or die();
|
|
7 |
*/
|
8 |
class MEC_feature_search extends MEC_base
|
9 |
{
|
10 |
-
/**
|
11 |
-
* @var MEC_factory
|
12 |
-
*/
|
13 |
-
public $factory;
|
14 |
|
15 |
-
|
16 |
-
* @var MEC_main
|
17 |
-
*/
|
18 |
public $main;
|
|
|
19 |
|
20 |
/**
|
21 |
* Constructor method
|
@@ -29,6 +24,9 @@ class MEC_feature_search extends MEC_base
|
|
29 |
// Import MEC Main
|
30 |
$this->main = $this->getMain();
|
31 |
|
|
|
|
|
|
|
32 |
}
|
33 |
|
34 |
/**
|
@@ -39,7 +37,14 @@ class MEC_feature_search extends MEC_base
|
|
39 |
{
|
40 |
// search Shortcode
|
41 |
$this->factory->shortcode('MEC_search_bar', array($this, 'search'));
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
}
|
44 |
|
45 |
/**
|
@@ -78,6 +83,100 @@ class MEC_feature_search extends MEC_base
|
|
78 |
return $out;
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
/**
|
82 |
* Search Filter
|
83 |
* @param object $query
|
@@ -153,7 +252,7 @@ class MEC_feature_search extends MEC_base
|
|
153 |
}
|
154 |
|
155 |
$query->set('tax_query', $mec_quesries);
|
156 |
-
$query->set('post_type', array('
|
157 |
|
158 |
return $query;
|
159 |
}
|
7 |
*/
|
8 |
class MEC_feature_search extends MEC_base
|
9 |
{
|
|
|
|
|
|
|
|
|
10 |
|
11 |
+
public $factory;
|
|
|
|
|
12 |
public $main;
|
13 |
+
public $settings;
|
14 |
|
15 |
/**
|
16 |
* Constructor method
|
24 |
// Import MEC Main
|
25 |
$this->main = $this->getMain();
|
26 |
|
27 |
+
// MEC Settings
|
28 |
+
$this->settings = $this->main->get_settings();
|
29 |
+
|
30 |
}
|
31 |
|
32 |
/**
|
37 |
{
|
38 |
// search Shortcode
|
39 |
$this->factory->shortcode('MEC_search_bar', array($this, 'search'));
|
40 |
+
|
41 |
+
if ( isset($this->settings['search_bar_ajax_mode']) && $this->settings['search_bar_ajax_mode'] == '1' )
|
42 |
+
{
|
43 |
+
$this->factory->action('wp_ajax_mec_get_ajax_search_data', array($this, 'mec_get_ajax_search_data'));
|
44 |
+
$this->factory->action('wp_ajax_nopriv_mec_get_ajax_search_data', array($this, 'mec_get_ajax_search_data'));
|
45 |
+
} else {
|
46 |
+
$this->factory->filter('pre_get_posts', array($this, 'mec_search_filter'));
|
47 |
+
}
|
48 |
}
|
49 |
|
50 |
/**
|
83 |
return $out;
|
84 |
}
|
85 |
|
86 |
+
public function mec_get_ajax_search_data(){
|
87 |
+
|
88 |
+
if ( $_POST['length'] < '3' )
|
89 |
+
{
|
90 |
+
_e('Please enter at least 3 characters and try again' , 'modern-events-calendar-lite');
|
91 |
+
die();
|
92 |
+
}
|
93 |
+
|
94 |
+
$mec_quesries = array();
|
95 |
+
|
96 |
+
if(!empty($_POST['location']))
|
97 |
+
{
|
98 |
+
$location = sanitize_text_field( $_POST['location'] );
|
99 |
+
$mec_quesries[] = array(
|
100 |
+
'taxonomy' => 'mec_location',
|
101 |
+
'field' => 'id',
|
102 |
+
'terms' => array( $location ),
|
103 |
+
'operator' => 'IN'
|
104 |
+
);
|
105 |
+
}
|
106 |
+
|
107 |
+
if(!empty($_POST['category']))
|
108 |
+
{
|
109 |
+
$category = sanitize_text_field( $_POST['category'] );
|
110 |
+
$mec_quesries[] = array(
|
111 |
+
'taxonomy' => 'mec_category',
|
112 |
+
'field' => 'id',
|
113 |
+
'terms' => array( $category ),
|
114 |
+
'operator' => 'IN'
|
115 |
+
);
|
116 |
+
}
|
117 |
+
|
118 |
+
if(!empty($_POST['organizer']))
|
119 |
+
{
|
120 |
+
$organizer = sanitize_text_field( $_POST['organizer'] );
|
121 |
+
$mec_quesries[] = array(
|
122 |
+
'taxonomy' => 'mec_organizer',
|
123 |
+
'field' => 'id',
|
124 |
+
'terms' => array( $organizer ),
|
125 |
+
'operator' => 'IN'
|
126 |
+
);
|
127 |
+
}
|
128 |
+
|
129 |
+
if(!empty($_POST['speaker']))
|
130 |
+
{
|
131 |
+
$speaker = sanitize_text_field( $_POST['speaker'] );
|
132 |
+
$mec_quesries[] = array(
|
133 |
+
'taxonomy' => 'mec_speaker',
|
134 |
+
'field' => 'id',
|
135 |
+
'terms' => array( $speaker ),
|
136 |
+
'operator' => 'IN'
|
137 |
+
);
|
138 |
+
}
|
139 |
+
|
140 |
+
if(!empty($_POST['tag']))
|
141 |
+
{
|
142 |
+
$tag = sanitize_text_field( $_POST['tag'] );
|
143 |
+
$mec_quesries[] = array(
|
144 |
+
'taxonomy' => 'post_tag',
|
145 |
+
'field' => 'id',
|
146 |
+
'terms' => array( $tag ),
|
147 |
+
'operator' => 'IN'
|
148 |
+
);
|
149 |
+
}
|
150 |
+
|
151 |
+
if(!empty($_POST['label']))
|
152 |
+
{
|
153 |
+
$label = sanitize_text_field( $_POST['label'] );
|
154 |
+
$mec_quesries[] = array(
|
155 |
+
'taxonomy' => 'mec_label',
|
156 |
+
'field' => 'id',
|
157 |
+
'terms' => array( $label ),
|
158 |
+
'operator' => 'IN'
|
159 |
+
);
|
160 |
+
}
|
161 |
+
|
162 |
+
$the_query = new WP_Query(array(
|
163 |
+
'tax_query' => $mec_quesries,
|
164 |
+
's' => esc_attr( $_POST['keyword'] ),
|
165 |
+
'post_type' => 'mec-events'
|
166 |
+
));
|
167 |
+
|
168 |
+
if( $the_query->have_posts() ) :
|
169 |
+
while( $the_query->have_posts() ): $the_query->the_post();
|
170 |
+
include MEC::import('app.features.search_bar.search_result', true, true);
|
171 |
+
endwhile;
|
172 |
+
wp_reset_postdata();
|
173 |
+
else:
|
174 |
+
include MEC::import('app.features.search_bar.search_noresult', true, true);
|
175 |
+
endif;
|
176 |
+
|
177 |
+
die();
|
178 |
+
}
|
179 |
+
|
180 |
/**
|
181 |
* Search Filter
|
182 |
* @param object $query
|
252 |
}
|
253 |
|
254 |
$query->set('tax_query', $mec_quesries);
|
255 |
+
$query->set('post_type', array('mec-events'));
|
256 |
|
257 |
return $query;
|
258 |
}
|
app/features/search_bar/search_bar.php
CHANGED
@@ -17,15 +17,107 @@ if($settings['search_bar_category'] == '1' || $settings['search_bar_location'] =
|
|
17 |
$output .= '</div>';
|
18 |
}
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
$output .= '
|
23 |
-
|
24 |
-
<
|
|
|
|
|
|
|
|
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
$output .= '</div>';
|
18 |
}
|
19 |
|
20 |
+
|
21 |
+
if ( isset( $settings['search_bar_ajax_mode'] ) && $settings['search_bar_ajax_mode'] == '1' ) :
|
22 |
+
$output .= '
|
23 |
+
<div class="mec-ajax-search-result">
|
24 |
+
<div class="mec-text-input-search">
|
25 |
+
<i class="mec-sl-magnifier"></i>
|
26 |
+
<input type="text" placeholder="'.__('Please enter at least 3 characters' , 'modern-events-calendar-lite').'" value="" id="keyword" name="keyword" />
|
27 |
+
</div>
|
28 |
+
<div id="mec-ajax-search-result-wrap"><div class="mec-ajax-search-result-events">'.__('Search results will show here' ,'modern-events-calendar-lite').'</div></div>
|
29 |
</div>';
|
30 |
+
else:
|
31 |
+
if($settings['search_bar_text_field'] == '1' )
|
32 |
+
{
|
33 |
+
$output .= '
|
34 |
+
<div class="mec-text-input-search">
|
35 |
+
<i class="mec-sl-magnifier"></i>
|
36 |
+
<input type="search" value="" id="s" name="s" />
|
37 |
+
</div>';
|
38 |
+
}
|
39 |
+
$output .= '<input class="mec-search-bar-input" id="mec-search-bar-input" type="submit" alt="'.esc_html__('Search', 'modern-events-calendar-lite').'" value="'.esc_html__('Search', 'modern-events-calendar-lite').'" /><input type="hidden" name="post_type" value="mec-events">';
|
40 |
+
endif;
|
41 |
|
|
|
42 |
$output .= '</form></div>';
|
43 |
|
44 |
+
|
45 |
+
|
46 |
+
echo $output;
|
47 |
+
?>
|
48 |
+
<script type="text/javascript">
|
49 |
+
jQuery("#keyword").typeWatch(
|
50 |
+
{
|
51 |
+
wait: 400,
|
52 |
+
callback: function (value)
|
53 |
+
{
|
54 |
+
if (!value || value == "")
|
55 |
+
{
|
56 |
+
jQuery('#mec-ajax-search-result-wrap').css({opacity: '0', visibility: 'hidden' });
|
57 |
+
}
|
58 |
+
else
|
59 |
+
{
|
60 |
+
var keyword = jQuery('#keyword').val(),
|
61 |
+
minLength = 3,
|
62 |
+
searchWrap = jQuery('.mec-search-bar-wrap');
|
63 |
+
|
64 |
+
var category = '',
|
65 |
+
location = '',
|
66 |
+
organizer = '',
|
67 |
+
speaker = '',
|
68 |
+
tag = '',
|
69 |
+
label = '';
|
70 |
+
|
71 |
+
if ( keyword.length >= minLength ) keyword = jQuery('#keyword').val();
|
72 |
+
if ( keyword.length == 0 ) keyword = 'empty';
|
73 |
+
|
74 |
+
if ( jQuery('#category').length > 0 )
|
75 |
+
{
|
76 |
+
if ( searchWrap.find('#category').val().length !== 0 ) category = searchWrap.find('#category').val();
|
77 |
+
}
|
78 |
+
if ( jQuery('#location').length > 0 )
|
79 |
+
{
|
80 |
+
if ( searchWrap.find('#location').val().length !== 0 ) location = searchWrap.find('#location').val();
|
81 |
+
}
|
82 |
+
if ( jQuery('#organizer').length > 0 )
|
83 |
+
{
|
84 |
+
if ( searchWrap.find('#organizer').val().length !== 0 ) organizer = searchWrap.find('#organizer').val();
|
85 |
+
}
|
86 |
+
if ( jQuery('#speaker').length > 0 )
|
87 |
+
{
|
88 |
+
if ( searchWrap.find('#speaker').val().length !== 0 ) speaker = searchWrap.find('#speaker').val();
|
89 |
+
}
|
90 |
+
if ( jQuery('#Tag').length > 0 )
|
91 |
+
{
|
92 |
+
if ( searchWrap.find('#Tag').val().length !== 0 ) tag = searchWrap.find('#Tag').val();
|
93 |
+
}
|
94 |
+
if ( jQuery('#label').length > 0 )
|
95 |
+
{
|
96 |
+
if ( searchWrap.find('#label').val().length !== 0 ) label = searchWrap.find('#label').val();
|
97 |
+
}
|
98 |
+
jQuery.ajax({
|
99 |
+
url: '<?php echo admin_url('admin-ajax.php'); ?>',
|
100 |
+
type: 'post',
|
101 |
+
data: {
|
102 |
+
action: 'mec_get_ajax_search_data',
|
103 |
+
keyword: keyword,
|
104 |
+
length : keyword.length,
|
105 |
+
category: category,
|
106 |
+
location: location,
|
107 |
+
organizer: organizer,
|
108 |
+
speaker: speaker,
|
109 |
+
tag: tag,
|
110 |
+
label: label
|
111 |
+
},
|
112 |
+
success: function(data) {
|
113 |
+
jQuery('#mec-ajax-search-result-wrap').css({
|
114 |
+
opacity: '1',
|
115 |
+
visibility: 'visible'
|
116 |
+
});
|
117 |
+
if ( keyword != 'empty' ) jQuery('.mec-ajax-search-result-events').html( data );
|
118 |
+
}
|
119 |
+
});
|
120 |
+
}
|
121 |
+
}
|
122 |
+
});
|
123 |
+
</script>
|
app/features/search_bar/search_noresult.php
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<span><?php _e('No search result.', 'modern-events-calendar-lite'); ?></span>
|
app/features/search_bar/search_result.php
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/** no direct access **/
|
3 |
+
defined('MECEXEC') or die();
|
4 |
+
$settings = $this->main->get_settings();
|
5 |
+
$start_hour = get_post_meta( get_the_ID(), 'mec_start_time_hour', true);
|
6 |
+
$start_min = (get_post_meta( get_the_ID(), 'mec_start_time_minutes', true) < '10') ? '0' . get_post_meta( get_the_ID(), 'mec_start_time_minutes', true) : get_post_meta( get_the_ID(), 'mec_start_time_minutes', true);
|
7 |
+
$start_ampm = get_post_meta( get_the_ID(), 'mec_start_time_ampm', true);
|
8 |
+
$end_hour = get_post_meta( get_the_ID(), 'mec_end_time_hour', true);
|
9 |
+
$end_min = (get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) < '10') ? '0' . get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) : get_post_meta( get_the_ID(), 'mec_end_time_minutes', true);
|
10 |
+
$end_ampm = get_post_meta( get_the_ID(), 'mec_end_time_ampm', true);
|
11 |
+
$time = ( get_post_meta( get_the_ID(), 'mec_allday', true) == '1' ) ? __('All of the day' , 'modern-events-calendar-lite') : $start_hour . ':' . $start_min . ' ' . $start_ampm . ' - ' . $end_hour . ':' . $end_min . ' ' . $end_ampm;
|
12 |
+
?>
|
13 |
+
|
14 |
+
<article class="mec-search-bar-result">
|
15 |
+
<div class="mec-event-list-search-bar-date mec-color">
|
16 |
+
<span class="mec-date-day"><?php echo date_i18n('d', strtotime(get_post_meta( get_the_ID(), 'mec_start_date', true ))); ?></span><?php echo date_i18n('F', strtotime(get_post_meta( get_the_ID(), 'mec_start_date', true ))); ?>
|
17 |
+
</div>
|
18 |
+
<div class="mec-event-image">
|
19 |
+
<a href="<?php the_permalink(); ?>" target="_blank"><?php the_post_thumbnail('thumbnail'); ?></a>
|
20 |
+
</div>
|
21 |
+
<div class="mec-event-time mec-color">
|
22 |
+
<i class="mec-sl-clock-o"></i><?php echo $time; ?>
|
23 |
+
</div>
|
24 |
+
<h4 class="mec-event-title">
|
25 |
+
<a class="mec-color-hover" href="<?php the_permalink(); ?>" target="_blank"><?php the_title(); ?></a>
|
26 |
+
</h4>
|
27 |
+
<div class="mec-event-detail">
|
28 |
+
<?php
|
29 |
+
$id = get_post_meta( get_the_ID(), 'mec_location_id' , true );
|
30 |
+
$term = get_term( $id, 'mec_location' );
|
31 |
+
echo $term->name;
|
32 |
+
?>
|
33 |
+
</div>
|
34 |
+
</article>
|
app/libraries/book.php
CHANGED
@@ -218,7 +218,8 @@ class MEC_book extends MEC_base
|
|
218 |
update_post_meta($book_id, 'mec_date', $transaction['date']);
|
219 |
update_post_meta($book_id, 'mec_ticket_id', $ticket_ids);
|
220 |
update_post_meta($book_id, 'mec_booking_time', current_time('Y-m-d H:i:s'));
|
221 |
-
|
|
|
222 |
$price = isset($transaction['price']) ? $transaction['price'] : (isset($transaction['total']) ? $transaction['total'] : 0);
|
223 |
update_post_meta($book_id, 'mec_price', $price);
|
224 |
|
218 |
update_post_meta($book_id, 'mec_date', $transaction['date']);
|
219 |
update_post_meta($book_id, 'mec_ticket_id', $ticket_ids);
|
220 |
update_post_meta($book_id, 'mec_booking_time', current_time('Y-m-d H:i:s'));
|
221 |
+
if(isset($values['mec_attendees'])) update_post_meta($book_id, 'mec_attendees', $values['mec_attendees']);
|
222 |
+
|
223 |
$price = isset($transaction['price']) ? $transaction['price'] : (isset($transaction['total']) ? $transaction['total'] : 0);
|
224 |
update_post_meta($book_id, 'mec_price', $price);
|
225 |
|
app/libraries/factory.php
CHANGED
@@ -291,6 +291,9 @@ class MEC_factory extends MEC_base
|
|
291 |
|
292 |
// Google Fonts Status
|
293 |
$gfonts_status = (isset($styling['disable_gfonts']) and $styling['disable_gfonts']) ? false : true;
|
|
|
|
|
|
|
294 |
|
295 |
// Include WordPress jQuery
|
296 |
wp_enqueue_script('jquery');
|
@@ -300,6 +303,8 @@ class MEC_factory extends MEC_base
|
|
300 |
|
301 |
// Load Isotope
|
302 |
if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
|
|
|
|
|
303 |
|
304 |
// Include MEC frontend script files
|
305 |
wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'));
|
291 |
|
292 |
// Google Fonts Status
|
293 |
$gfonts_status = (isset($styling['disable_gfonts']) and $styling['disable_gfonts']) ? false : true;
|
294 |
+
|
295 |
+
|
296 |
+
|
297 |
|
298 |
// Include WordPress jQuery
|
299 |
wp_enqueue_script('jquery');
|
303 |
|
304 |
// Load Isotope
|
305 |
if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
|
306 |
+
|
307 |
+
wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'));
|
308 |
|
309 |
// Include MEC frontend script files
|
310 |
wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'));
|
app/libraries/main.php
CHANGED
@@ -1912,8 +1912,7 @@ class MEC_main extends MEC_base
|
|
1912 |
$start_time = strtotime((trim($occurrence) ? $occurrence : $dates[0]['start']['date']).' '.sprintf("%02d", $dates[0]['start']['hour']).':'.sprintf("%02d", $dates[0]['start']['minutes']).' '.$dates[0]['start']['ampm']);
|
1913 |
$end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $dates[0]['end']['date']).' '.sprintf("%02d", $dates[0]['end']['hour']).':'.sprintf("%02d", $dates[0]['end']['minutes']).' '.$dates[0]['end']['ampm']);
|
1914 |
|
1915 |
-
$gmt_offset_seconds = $this->get_gmt_offset_seconds();
|
1916 |
-
|
1917 |
$stamp = strtotime($event->post->post_date);
|
1918 |
$modified = strtotime($event->post->post_modified);
|
1919 |
|
@@ -1995,7 +1994,7 @@ class MEC_main extends MEC_base
|
|
1995 |
$start_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_start_hour).':'.sprintf("%02d", $ticket_start_minute).' '.$ticket_start_ampm);
|
1996 |
$end_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_end_hour).':'.sprintf("%02d", $ticket_end_minute).' '.$ticket_end_ampm);
|
1997 |
|
1998 |
-
$gmt_offset_seconds = $this->get_gmt_offset_seconds();
|
1999 |
|
2000 |
$stamp = strtotime($event->post->post_date);
|
2001 |
$modified = strtotime($event->post->post_modified);
|
@@ -2945,14 +2944,28 @@ class MEC_main extends MEC_base
|
|
2945 |
/**
|
2946 |
* Get GMT offset based on seconds
|
2947 |
* @author Webnus <info@webnus.biz>
|
|
|
2948 |
* @return string
|
2949 |
*/
|
2950 |
-
public function get_gmt_offset_seconds()
|
2951 |
{
|
2952 |
-
$
|
2953 |
-
|
2954 |
-
|
2955 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2956 |
}
|
2957 |
|
2958 |
public function get_timezone_by_offset($offset)
|
1912 |
$start_time = strtotime((trim($occurrence) ? $occurrence : $dates[0]['start']['date']).' '.sprintf("%02d", $dates[0]['start']['hour']).':'.sprintf("%02d", $dates[0]['start']['minutes']).' '.$dates[0]['start']['ampm']);
|
1913 |
$end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $dates[0]['end']['date']).' '.sprintf("%02d", $dates[0]['end']['hour']).':'.sprintf("%02d", $dates[0]['end']['minutes']).' '.$dates[0]['end']['ampm']);
|
1914 |
|
1915 |
+
$gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time);
|
|
|
1916 |
$stamp = strtotime($event->post->post_date);
|
1917 |
$modified = strtotime($event->post->post_modified);
|
1918 |
|
1994 |
$start_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_start_hour).':'.sprintf("%02d", $ticket_start_minute).' '.$ticket_start_ampm);
|
1995 |
$end_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_end_hour).':'.sprintf("%02d", $ticket_end_minute).' '.$ticket_end_ampm);
|
1996 |
|
1997 |
+
$gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time);
|
1998 |
|
1999 |
$stamp = strtotime($event->post->post_date);
|
2000 |
$modified = strtotime($event->post->post_modified);
|
2944 |
/**
|
2945 |
* Get GMT offset based on seconds
|
2946 |
* @author Webnus <info@webnus.biz>
|
2947 |
+
* @param $date
|
2948 |
* @return string
|
2949 |
*/
|
2950 |
+
public function get_gmt_offset_seconds($date = NULL)
|
2951 |
{
|
2952 |
+
if($date)
|
2953 |
+
{
|
2954 |
+
$timezone = new DateTimeZone($this->get_timezone());
|
2955 |
+
|
2956 |
+
// Convert to Date
|
2957 |
+
if(is_numeric($date)) $date = date('Y-m-d', $date);
|
2958 |
+
|
2959 |
+
$target = new DateTime($date, $timezone);
|
2960 |
+
return $timezone->getOffset($target);
|
2961 |
+
}
|
2962 |
+
else
|
2963 |
+
{
|
2964 |
+
$gmt_offset = get_option('gmt_offset');
|
2965 |
+
$seconds = $gmt_offset*3600;
|
2966 |
+
|
2967 |
+
return (substr($gmt_offset, 0, 1) == '-' ? '' : '+').$seconds;
|
2968 |
+
}
|
2969 |
}
|
2970 |
|
2971 |
public function get_timezone_by_offset($offset)
|
app/libraries/notifications.php
CHANGED
@@ -86,8 +86,18 @@ class MEC_notifications extends MEC_base
|
|
86 |
// Set Email Type to HTML
|
87 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
// Send the mail
|
90 |
-
wp_mail($to, html_entity_decode(stripslashes($subject), ENT_HTML5), wpautop(stripslashes($message)), $headers);
|
91 |
|
92 |
// Remove the HTML Email filter
|
93 |
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
@@ -147,8 +157,18 @@ class MEC_notifications extends MEC_base
|
|
147 |
// Set Email Type to HTML
|
148 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
// Send the mail
|
151 |
-
wp_mail($to, html_entity_decode(stripslashes($subject), ENT_HTML5), wpautop(stripslashes($message)), $headers);
|
152 |
|
153 |
// Remove the HTML Email filter
|
154 |
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
@@ -189,8 +209,18 @@ class MEC_notifications extends MEC_base
|
|
189 |
// Set Email Type to HTML
|
190 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
191 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
// Send the mail
|
193 |
-
wp_mail($to, html_entity_decode(stripslashes($subject), ENT_HTML5), wpautop(stripslashes($message)), $headers);
|
194 |
|
195 |
// Remove the HTML Email filter
|
196 |
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
@@ -272,8 +302,19 @@ class MEC_notifications extends MEC_base
|
|
272 |
foreach($tos as $to)
|
273 |
{
|
274 |
if($i > 1) $headers = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
|
276 |
-
wp_mail($to, html_entity_decode(stripslashes($subject), ENT_HTML5), wpautop(stripslashes($message)), $headers);
|
277 |
$i++;
|
278 |
}
|
279 |
|
@@ -331,8 +372,18 @@ class MEC_notifications extends MEC_base
|
|
331 |
// Set Email Type to HTML
|
332 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
// Send the mail
|
335 |
-
wp_mail($to, html_entity_decode(stripslashes($subject), ENT_HTML5), wpautop(stripslashes($message)), $headers);
|
336 |
|
337 |
// Remove the HTML Email filter
|
338 |
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
@@ -383,7 +434,19 @@ class MEC_notifications extends MEC_base
|
|
383 |
|
384 |
if(!trim($to)) continue;
|
385 |
|
386 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
387 |
}
|
388 |
|
389 |
// Remove the HTML Email filter
|
@@ -616,7 +679,7 @@ class MEC_notifications extends MEC_base
|
|
616 |
$start_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_start_hour).':'.sprintf("%02d", $ticket_start_minute).' '.$ticket_start_ampm);
|
617 |
$end_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_end_hour).':'.sprintf("%02d", $ticket_end_minute).' '.$ticket_end_ampm);
|
618 |
|
619 |
-
$gmt_offset_seconds = $this->main->get_gmt_offset_seconds();
|
620 |
$event_title = get_the_title($event_id);
|
621 |
$event_info = get_post($event_id);
|
622 |
$event_content = trim($event_info->post_content) ? strip_shortcodes(strip_tags($event_info->post_content)) : $event_title;
|
86 |
// Set Email Type to HTML
|
87 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
88 |
|
89 |
+
// Filter the email
|
90 |
+
$mail_arg = array(
|
91 |
+
'to' => $to,
|
92 |
+
'subject' => $subject,
|
93 |
+
'message' => $message,
|
94 |
+
'headers' => $headers,
|
95 |
+
'attachments' => array(),
|
96 |
+
);
|
97 |
+
$mail_arg = apply_filters( 'mec_before_send_email_verification', $mail_arg, $book_id, 'email_verification');
|
98 |
+
|
99 |
// Send the mail
|
100 |
+
wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
|
101 |
|
102 |
// Remove the HTML Email filter
|
103 |
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
157 |
// Set Email Type to HTML
|
158 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
159 |
|
160 |
+
// Filter the email
|
161 |
+
$mail_arg = array(
|
162 |
+
'to' => $to,
|
163 |
+
'subject' => $subject,
|
164 |
+
'message' => $message,
|
165 |
+
'headers' => $headers,
|
166 |
+
'attachments' => array(),
|
167 |
+
);
|
168 |
+
$mail_arg = apply_filters( 'mec_before_send_booking_notification', $mail_arg, $book_id, 'booking_notification');
|
169 |
+
|
170 |
// Send the mail
|
171 |
+
wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
|
172 |
|
173 |
// Remove the HTML Email filter
|
174 |
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
209 |
// Set Email Type to HTML
|
210 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
211 |
|
212 |
+
// Filter the email
|
213 |
+
$mail_arg = array(
|
214 |
+
'to' => $to,
|
215 |
+
'subject' => $subject,
|
216 |
+
'message' => $message,
|
217 |
+
'headers' => $headers,
|
218 |
+
'attachments' => array(),
|
219 |
+
);
|
220 |
+
$mail_arg = apply_filters( 'mec_before_send_booking_confirmation', $mail_arg, $book_id, 'booking_confirmation');
|
221 |
+
|
222 |
// Send the mail
|
223 |
+
wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
|
224 |
|
225 |
// Remove the HTML Email filter
|
226 |
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
302 |
foreach($tos as $to)
|
303 |
{
|
304 |
if($i > 1) $headers = array();
|
305 |
+
// Filter the email
|
306 |
+
$mail_arg = array(
|
307 |
+
'to' => $to,
|
308 |
+
'subject' => $subject,
|
309 |
+
'message' => $message,
|
310 |
+
'headers' => $headers,
|
311 |
+
'attachments' => array(),
|
312 |
+
);
|
313 |
+
$mail_arg = apply_filters( 'mec_before_send_booking_cancellation', $mail_arg, $book_id, 'booking_cancellation');
|
314 |
+
|
315 |
+
// Send the mail
|
316 |
+
wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
|
317 |
|
|
|
318 |
$i++;
|
319 |
}
|
320 |
|
372 |
// Set Email Type to HTML
|
373 |
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
374 |
|
375 |
+
// Filter the email
|
376 |
+
$mail_arg = array(
|
377 |
+
'to' => $to,
|
378 |
+
'subject' => $subject,
|
379 |
+
'message' => $message,
|
380 |
+
'headers' => $headers,
|
381 |
+
'attachments' => array(),
|
382 |
+
);
|
383 |
+
$mail_arg = apply_filters( 'mec_before_send_admin_notification', $mail_arg, $book_id, 'admin_notification');
|
384 |
+
|
385 |
// Send the mail
|
386 |
+
wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
|
387 |
|
388 |
// Remove the HTML Email filter
|
389 |
remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
434 |
|
435 |
if(!trim($to)) continue;
|
436 |
|
437 |
+
// Filter the email
|
438 |
+
$mail_arg = array(
|
439 |
+
'to' => $to,
|
440 |
+
'subject' => $subject,
|
441 |
+
'message' => $message,
|
442 |
+
'headers' => $headers,
|
443 |
+
'attachments' => array(),
|
444 |
+
);
|
445 |
+
$mail_arg = apply_filters( 'mec_before_send_booking_reminder', $mail_arg, $book_id, 'booking_reminder');
|
446 |
+
|
447 |
+
// Send the mail
|
448 |
+
wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
|
449 |
+
|
450 |
}
|
451 |
|
452 |
// Remove the HTML Email filter
|
679 |
$start_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_start_hour).':'.sprintf("%02d", $ticket_start_minute).' '.$ticket_start_ampm);
|
680 |
$end_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_end_hour).':'.sprintf("%02d", $ticket_end_minute).' '.$ticket_end_ampm);
|
681 |
|
682 |
+
$gmt_offset_seconds = $this->main->get_gmt_offset_seconds($start_time);
|
683 |
$event_title = get_the_title($event_id);
|
684 |
$event_info = get_post($event_id);
|
685 |
$event_content = trim($event_info->post_content) ? strip_shortcodes(strip_tags($event_info->post_content)) : $event_title;
|
app/libraries/skins.php
CHANGED
@@ -29,12 +29,6 @@ class MEC_skins extends MEC_base
|
|
29 |
*/
|
30 |
public $maximum_dates = 6;
|
31 |
|
32 |
-
/**
|
33 |
-
* Maximum days for loop
|
34 |
-
* @var int
|
35 |
-
*/
|
36 |
-
public $max_days_loop = 366;
|
37 |
-
|
38 |
/**
|
39 |
* Offset for don't load duplicated events in list/grid views on load more action
|
40 |
* @var int
|
@@ -552,7 +546,7 @@ class MEC_skins extends MEC_base
|
|
552 |
$not_in_day = $this->db->select($query);
|
553 |
}
|
554 |
|
555 |
-
if(array_key_exists($mec_date->post_id, $not_in_day) and trim($not_in_day[$mec_date->post_id]->not_in_days)
|
556 |
{
|
557 |
$days = $not_in_day[$mec_date->post_id]->not_in_days;
|
558 |
$current_id = $mec_date->post_id;
|
@@ -586,12 +580,12 @@ class MEC_skins extends MEC_base
|
|
586 |
if($this->show_only_expired_events)
|
587 |
{
|
588 |
$start = $this->start_date;
|
589 |
-
$end = date('Y-m-01', strtotime('-
|
590 |
}
|
591 |
else
|
592 |
{
|
593 |
$start = $this->start_date;
|
594 |
-
$end = date('Y-m-t', strtotime('+
|
595 |
}
|
596 |
|
597 |
// Date Events
|
29 |
*/
|
30 |
public $maximum_dates = 6;
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
/**
|
33 |
* Offset for don't load duplicated events in list/grid views on load more action
|
34 |
* @var int
|
546 |
$not_in_day = $this->db->select($query);
|
547 |
}
|
548 |
|
549 |
+
if(array_key_exists($mec_date->post_id, $not_in_day) and trim($not_in_day[$mec_date->post_id]->not_in_days))
|
550 |
{
|
551 |
$days = $not_in_day[$mec_date->post_id]->not_in_days;
|
552 |
$current_id = $mec_date->post_id;
|
580 |
if($this->show_only_expired_events)
|
581 |
{
|
582 |
$start = $this->start_date;
|
583 |
+
$end = date('Y-m-01', strtotime('-10 Year', strtotime($start)));
|
584 |
}
|
585 |
else
|
586 |
{
|
587 |
$start = $this->start_date;
|
588 |
+
$end = date('Y-m-t', strtotime('+10 Year', strtotime($start)));
|
589 |
}
|
590 |
|
591 |
// Date Events
|
app/modules/export/details.php
CHANGED
@@ -18,7 +18,7 @@ $occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($ev
|
|
18 |
$start_time = strtotime((trim($occurrence) ? $occurrence : $event->date['start']['date']).' '.sprintf("%02d", $event->date['start']['hour']).':'.sprintf("%02d", $event->date['start']['minutes']).' '.$event->date['start']['ampm']);
|
19 |
$end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $event->date['end']['date']).' '.sprintf("%02d", $event->date['end']['hour']).':'.sprintf("%02d", $event->date['end']['minutes']).' '.$event->date['end']['ampm']);
|
20 |
|
21 |
-
$gmt_offset_seconds = $this->get_gmt_offset_seconds();
|
22 |
?>
|
23 |
<div class="mec-event-export-module mec-frontbox">
|
24 |
<div class="mec-event-exporting">
|
18 |
$start_time = strtotime((trim($occurrence) ? $occurrence : $event->date['start']['date']).' '.sprintf("%02d", $event->date['start']['hour']).':'.sprintf("%02d", $event->date['start']['minutes']).' '.$event->date['start']['ampm']);
|
19 |
$end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $event->date['end']['date']).' '.sprintf("%02d", $event->date['end']['hour']).':'.sprintf("%02d", $event->date['end']['minutes']).' '.$event->date['end']['ampm']);
|
20 |
|
21 |
+
$gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time);
|
22 |
?>
|
23 |
<div class="mec-event-export-module mec-frontbox">
|
24 |
<div class="mec-event-exporting">
|
app/modules/local-time/details.php
CHANGED
@@ -20,7 +20,7 @@ $date_format1 = (isset($settings['single_date_format1']) and trim($settings['sin
|
|
20 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
|
21 |
$occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
|
22 |
|
23 |
-
$gmt_offset_seconds = $this->get_gmt_offset_seconds();
|
24 |
|
25 |
$gmt_start_time = strtotime((trim($occurrence) ? $occurrence : $event->date['start']['date']).' '.sprintf("%02d", $event->date['start']['hour']).':'.sprintf("%02d", $event->date['start']['minutes']).' '.$event->date['start']['ampm']) - $gmt_offset_seconds;
|
26 |
$gmt_end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $event->date['end']['date']).' '.sprintf("%02d", $event->date['end']['hour']).':'.sprintf("%02d", $event->date['end']['minutes']).' '.$event->date['end']['ampm']) - $gmt_offset_seconds;
|
20 |
$occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
|
21 |
$occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
|
22 |
|
23 |
+
$gmt_offset_seconds = $this->get_gmt_offset_seconds((trim($occurrence) ? $occurrence : $event->date['start']['date']));
|
24 |
|
25 |
$gmt_start_time = strtotime((trim($occurrence) ? $occurrence : $event->date['start']['date']).' '.sprintf("%02d", $event->date['start']['hour']).':'.sprintf("%02d", $event->date['start']['minutes']).' '.$event->date['start']['ampm']) - $gmt_offset_seconds;
|
26 |
$gmt_end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $event->date['end']['date']).' '.sprintf("%02d", $event->date['end']['hour']).':'.sprintf("%02d", $event->date['end']['minutes']).' '.$event->date['end']['ampm']) - $gmt_offset_seconds;
|
app/skins/agenda.php
CHANGED
@@ -171,9 +171,6 @@ class MEC_skin_agenda extends MEC_skins
|
|
171 |
// Apply Maximum Date
|
172 |
if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
173 |
|
174 |
-
// Maximum days for loop
|
175 |
-
$this->max_days_loop = 732; // 2 years
|
176 |
-
|
177 |
// Found Events
|
178 |
$this->found = 0;
|
179 |
}
|
171 |
// Apply Maximum Date
|
172 |
if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
173 |
|
|
|
|
|
|
|
174 |
// Found Events
|
175 |
$this->found = 0;
|
176 |
}
|
app/skins/carousel.php
CHANGED
@@ -148,9 +148,6 @@ class MEC_skin_carousel extends MEC_skins
|
|
148 |
// Apply Maximum Date
|
149 |
if($this->request->getVar('apply_sf_date', 0) == 1) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
150 |
|
151 |
-
// Maximum days for loop
|
152 |
-
$this->max_days_loop = 366;
|
153 |
-
|
154 |
// Found Events
|
155 |
$this->found = 0;
|
156 |
}
|
148 |
// Apply Maximum Date
|
149 |
if($this->request->getVar('apply_sf_date', 0) == 1) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
150 |
|
|
|
|
|
|
|
151 |
// Found Events
|
152 |
$this->found = 0;
|
153 |
}
|
app/skins/grid.php
CHANGED
@@ -202,9 +202,6 @@ class MEC_skin_grid extends MEC_skins
|
|
202 |
// Apply Maximum Date
|
203 |
if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
204 |
|
205 |
-
// Maximum days for loop
|
206 |
-
$this->max_days_loop = 732; // 2 years
|
207 |
-
|
208 |
// Found Events
|
209 |
$this->found = 0;
|
210 |
}
|
202 |
// Apply Maximum Date
|
203 |
if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
204 |
|
|
|
|
|
|
|
205 |
// Found Events
|
206 |
$this->found = 0;
|
207 |
}
|
app/skins/list.php
CHANGED
@@ -198,9 +198,6 @@ class MEC_skin_list extends MEC_skins
|
|
198 |
// Apply Maximum Date
|
199 |
if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
200 |
|
201 |
-
// Maximum days for loop
|
202 |
-
$this->max_days_loop = 732; // 2 years
|
203 |
-
|
204 |
// Found Events
|
205 |
$this->found = 0;
|
206 |
}
|
198 |
// Apply Maximum Date
|
199 |
if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
200 |
|
|
|
|
|
|
|
201 |
// Found Events
|
202 |
$this->found = 0;
|
203 |
}
|
app/skins/masonry.php
CHANGED
@@ -161,9 +161,6 @@ class MEC_skin_masonry extends MEC_skins
|
|
161 |
// Apply Maximum Date
|
162 |
if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
163 |
|
164 |
-
// Maximum days for loop
|
165 |
-
$this->max_days_loop = 732; // 2 years
|
166 |
-
|
167 |
// Found Events
|
168 |
$this->found = 0;
|
169 |
}
|
161 |
// Apply Maximum Date
|
162 |
if($this->request->getVar('apply_sf_date', 0) == 1 and isset($this->sf) and isset($this->sf['month']) and trim($this->sf['month'])) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
163 |
|
|
|
|
|
|
|
164 |
// Found Events
|
165 |
$this->found = 0;
|
166 |
}
|
app/skins/single.php
CHANGED
@@ -150,6 +150,13 @@ class MEC_skin_single extends MEC_skins
|
|
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>
|
@@ -168,6 +175,10 @@ class MEC_skin_single extends MEC_skins
|
|
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 |
|
@@ -710,9 +721,8 @@ class MEC_skin_single extends MEC_skins
|
|
710 |
{
|
711 |
if ($this->main->can_show_booking_module($event)) : ?>
|
712 |
<div class="mec-reg-btn mec-frontbox">
|
713 |
-
<?php $data_lity = '';
|
714 |
-
if (isset($this->settings['single_booking_style']) and $this->settings['single_booking_style']
|
715 |
-
<a class="mec-booking-button mec-bg-color <?php if (isset($this->settings['single_booking_style']) and $this->settings['single_booking_style'] != 'modal') echo 'simple-booking'; ?>" href="#mec-events-meta-group-booking-<?php echo $single->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder'))); ?></a>
|
716 |
<?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://') : ?>
|
717 |
<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']), 'mec-single-builder');
|
718 |
else echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder')));
|
150 |
$query = new WP_Query($related_args);
|
151 |
|
152 |
if ( $query->have_posts() ):
|
153 |
+
$start_hour = get_post_meta( get_the_ID(), 'mec_start_time_hour', true);
|
154 |
+
$start_min = (get_post_meta( get_the_ID(), 'mec_start_time_minutes', true) < '10') ? '0' . get_post_meta( get_the_ID(), 'mec_start_time_minutes', true) : get_post_meta( get_the_ID(), 'mec_start_time_minutes', true);
|
155 |
+
$start_ampm = get_post_meta( get_the_ID(), 'mec_start_time_ampm', true);
|
156 |
+
$end_hour = get_post_meta( get_the_ID(), 'mec_end_time_hour', true);
|
157 |
+
$end_min = (get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) < '10') ? '0' . get_post_meta( get_the_ID(), 'mec_end_time_minutes', true) : get_post_meta( get_the_ID(), 'mec_end_time_minutes', true);
|
158 |
+
$end_ampm = get_post_meta( get_the_ID(), 'mec_end_time_ampm', true);
|
159 |
+
$time = ( get_post_meta( get_the_ID(), 'mec_allday', true) == '1' ) ? __('All of the day' , 'modern-events-calendar-lite') : $start_hour . ':' . $start_min . ' ' . $start_ampm . ' - ' . $end_hour . ':' . $end_min . ' ' . $end_ampm;
|
160 |
?>
|
161 |
<div class="row mec-related-events-wrap">
|
162 |
<h3 class="mec-rec-events-title"><?php echo __('Related Events' ,'modern-events-calendar-lite'); ?></h3>
|
175 |
</a>
|
176 |
</figure>
|
177 |
<div class="mec-related-event-content">
|
178 |
+
<span><?php
|
179 |
+
$date = date(get_option('date_format'), strtotime(get_post_meta( get_the_ID(), 'mec_start_date', true )));
|
180 |
+
echo $date;
|
181 |
+
?></span>
|
182 |
<h5><a class="mec-color-hover" href="<?php echo get_the_permalink(); ?>"><?php echo get_the_title(); ?></a></h5>
|
183 |
</div>
|
184 |
|
721 |
{
|
722 |
if ($this->main->can_show_booking_module($event)) : ?>
|
723 |
<div class="mec-reg-btn mec-frontbox">
|
724 |
+
<?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'data-lity'; $data_lity_class = 'mec-booking-data-lity'; } ?>
|
725 |
+
<a class="mec-booking-button mec-bg-color <?php echo $data_lity_class; ?> <?php if (isset($this->settings['single_booking_style']) and $this->settings['single_booking_style'] != 'modal') echo 'simple-booking'; ?>" href="#mec-events-meta-group-booking-<?php echo $single->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder'))); ?></a>
|
|
|
726 |
<?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://') : ?>
|
727 |
<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']), 'mec-single-builder');
|
728 |
else echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder')));
|
app/skins/single/default.php
CHANGED
@@ -229,8 +229,8 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
229 |
|
230 |
<!-- Register Booking Button -->
|
231 |
<?php if($this->main->can_show_booking_module($event)): ?>
|
232 |
-
<?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
|
233 |
-
<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; ?>"
|
234 |
<?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://'): ?>
|
235 |
<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')));
|
236 |
?>
|
@@ -441,8 +441,8 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
441 |
|
442 |
<!-- Register Booking Button -->
|
443 |
<?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
|
444 |
-
<?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
|
445 |
-
<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; ?>"
|
446 |
<?php elseif($single->found_value('register_btn', $settings) == 'on' and isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
|
447 |
<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')));
|
448 |
?></a>
|
@@ -525,9 +525,17 @@ if(!empty($event->data->speakers))
|
|
525 |
}
|
526 |
</script>
|
527 |
<script>
|
|
|
528 |
jQuery( ".mec-speaker-avatar a" ).click(function(e) {
|
529 |
e.preventDefault();
|
530 |
var id = jQuery(this).attr('href');
|
531 |
lity(id);
|
532 |
});
|
533 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
|
230 |
<!-- Register Booking Button -->
|
231 |
<?php if($this->main->can_show_booking_module($event)): ?>
|
232 |
+
<?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'data-lity'; $data_lity_class = 'mec-booking-data-lity'; } ?>
|
233 |
+
<a class="mec-booking-button mec-bg-color <?php echo $data_lity_class; ?> <?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 esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
|
234 |
<?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://'): ?>
|
235 |
<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')));
|
236 |
?>
|
441 |
|
442 |
<!-- Register Booking Button -->
|
443 |
<?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
|
444 |
+
<?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'data-lity'; $data_lity_class = 'mec-booking-data-lity'; } ?>
|
445 |
+
<a class="mec-booking-button mec-bg-color <?php echo $data_lity_class; ?> <?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 esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
|
446 |
<?php elseif($single->found_value('register_btn', $settings) == 'on' and isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
|
447 |
<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')));
|
448 |
?></a>
|
525 |
}
|
526 |
</script>
|
527 |
<script>
|
528 |
+
// Fix modal speaker in some themes
|
529 |
jQuery( ".mec-speaker-avatar a" ).click(function(e) {
|
530 |
e.preventDefault();
|
531 |
var id = jQuery(this).attr('href');
|
532 |
lity(id);
|
533 |
});
|
534 |
+
|
535 |
+
// Fix modal booking in some themes
|
536 |
+
jQuery( ".mec-booking-button.mec-booking-data-lity" ).click(function(e) {
|
537 |
+
e.preventDefault();
|
538 |
+
var book_id = jQuery(this).attr('href');
|
539 |
+
lity(book_id);
|
540 |
+
});
|
541 |
+
</script>
|
app/skins/single/modern.php
CHANGED
@@ -64,8 +64,8 @@ defined('MECEXEC') or die();
|
|
64 |
|
65 |
<!-- Register Booking Button -->
|
66 |
<?php if($this->main->can_show_booking_module($event)): ?>
|
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; ?>"
|
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>
|
@@ -321,4 +321,11 @@ jQuery( ".mec-speaker-avatar a" ).click(function(e) {
|
|
321 |
var id = jQuery(this).attr('href');
|
322 |
lity(id);
|
323 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
</script>
|
64 |
|
65 |
<!-- Register Booking Button -->
|
66 |
<?php if($this->main->can_show_booking_module($event)): ?>
|
67 |
+
<?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'data-lity'; $data_lity_class = 'mec-booking-data-lity'; } ?>
|
68 |
+
<a class="mec-booking-button mec-bg-color <?php echo $data_lity_class; ?> <?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 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>
|
321 |
var id = jQuery(this).attr('href');
|
322 |
lity(id);
|
323 |
});
|
324 |
+
|
325 |
+
// Fix modal booking in some themes
|
326 |
+
jQuery( ".mec-booking-button.mec-booking-data-lity" ).click(function(e) {
|
327 |
+
e.preventDefault();
|
328 |
+
var book_id = jQuery(this).attr('href');
|
329 |
+
lity(book_id);
|
330 |
+
});
|
331 |
</script>
|
app/skins/slider.php
CHANGED
@@ -154,9 +154,6 @@ class MEC_skin_slider extends MEC_skins
|
|
154 |
// Apply Maximum Date
|
155 |
if($this->request->getVar('apply_sf_date', 0) == 1) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
156 |
|
157 |
-
// Maximum days for loop
|
158 |
-
$this->max_days_loop = 366;
|
159 |
-
|
160 |
// Found Events
|
161 |
$this->found = 0;
|
162 |
}
|
154 |
// Apply Maximum Date
|
155 |
if($this->request->getVar('apply_sf_date', 0) == 1) $this->maximum_date = date('Y-m-t', strtotime($this->start_date));
|
156 |
|
|
|
|
|
|
|
157 |
// Found Events
|
158 |
$this->found = 0;
|
159 |
}
|
assets/css/backend.css
CHANGED
@@ -1444,6 +1444,11 @@ h4.mec-form-subtitle {
|
|
1444 |
margin-top: 0
|
1445 |
}
|
1446 |
|
|
|
|
|
|
|
|
|
|
|
1447 |
#webnus-dashboard * {
|
1448 |
box-sizing: border-box
|
1449 |
}
|
1444 |
margin-top: 0
|
1445 |
}
|
1446 |
|
1447 |
+
h5.mec-form-second-title {
|
1448 |
+
font-size: 15px;
|
1449 |
+
margin-top: 0
|
1450 |
+
}
|
1451 |
+
|
1452 |
#webnus-dashboard * {
|
1453 |
box-sizing: border-box
|
1454 |
}
|
assets/css/backend.min.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:5px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:16px;position:absolute;margin-top:0}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 10px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect 1s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0}to{opacity:1}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:26px;padding-left:12px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 8px rgba(1,138,255,.5) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:18px;font-weight:700;padding:10px;cursor:pointer;background-color:#f1f1f1;border:1px solid #ccc}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;box-shadow:0 3px 22px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{background-color:#008aff}.mec-switcher input:checked+label:before{background-color:#008aff}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;border:3px solid transparent}.mec-image-select-wrap li input:checked+span{border-color:#e3e3e3}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #f99170;border-radius:20px;padding:0 0 0 2px;color:#f99170}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1 |
+
#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:5px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:16px;position:absolute;margin-top:0}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 10px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect 1s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0}to{opacity:1}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:26px;padding-left:12px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 8px rgba(1,138,255,.5) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:18px;font-weight:700;padding:10px;cursor:pointer;background-color:#f1f1f1;border:1px solid #ccc}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;box-shadow:0 3px 22px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{background-color:#008aff}.mec-switcher input:checked+label:before{background-color:#008aff}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;border:3px solid transparent}.mec-image-select-wrap li input:checked+span{border-color:#e3e3e3}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #f99170;border-radius:20px;padding:0 0 0 2px;color:#f99170}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
assets/css/frontend.css
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
|
2 |
Plug-in Name: Modern Events Calendar
|
3 |
Author: WEBNUS
|
4 |
Author URI: http://codecanyon.net/user/WEBNUS
|
5 |
Description: Modern Events Calendar
|
6 |
License: GNU General Public License
|
7 |
License: codecanyon.net
|
8 |
-
|
9 |
|
10 |
|
11 |
/* #CSS Base & Typography
|
@@ -143,6 +143,10 @@
|
|
143 |
color: #fff;
|
144 |
}
|
145 |
|
|
|
|
|
|
|
|
|
146 |
|
147 |
/* Distance (Vertical Spaces) */
|
148 |
.vertical-space,
|
@@ -4502,16 +4506,64 @@ address.mec-events-address {
|
|
4502 |
}
|
4503 |
|
4504 |
.mec-event-container-simple .mec-monthly-tooltip h4 {
|
4505 |
-
|
4506 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4507 |
}
|
4508 |
|
4509 |
.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple {
|
4510 |
-
border-bottom: 1px
|
4511 |
-
padding:
|
4512 |
display: block;
|
4513 |
}
|
4514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4515 |
.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover {
|
4516 |
background: #f4f4f4
|
4517 |
}
|
@@ -8755,9 +8807,17 @@ li.mec-no-event-found .mec-event-title {
|
|
8755 |
}
|
8756 |
|
8757 |
.mec-modal-wrap {
|
8758 |
-
max-width:
|
|
|
8759 |
background: #fff;
|
8760 |
box-shadow: 0 1px 55px rgba(0, 0, 0, 0.5);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8761 |
}
|
8762 |
|
8763 |
.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,
|
@@ -12272,6 +12332,10 @@ ul.mec-weekly-view-dates-events article:before,
|
|
12272 |
.mec-search-bar-wrap .mec-search-form .mec-text-input-search {
|
12273 |
width: 83%;
|
12274 |
}
|
|
|
|
|
|
|
|
|
12275 |
.mec-search-bar-wrap input#mec-search-bar-input {
|
12276 |
width: calc(100% - 84%);
|
12277 |
margin-left: 11px;
|
@@ -12286,6 +12350,26 @@ ul.mec-weekly-view-dates-events article:before,
|
|
12286 |
background: #000;
|
12287 |
}
|
12288 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12289 |
/* Related Events */
|
12290 |
.mec-related-events-wrap {
|
12291 |
margin-top: 50px;
|
1 |
+
/*----------------------------------
|
2 |
Plug-in Name: Modern Events Calendar
|
3 |
Author: WEBNUS
|
4 |
Author URI: http://codecanyon.net/user/WEBNUS
|
5 |
Description: Modern Events Calendar
|
6 |
License: GNU General Public License
|
7 |
License: codecanyon.net
|
8 |
+
/*-----------------------------------------------------------------------------------*/
|
9 |
|
10 |
|
11 |
/* #CSS Base & Typography
|
143 |
color: #fff;
|
144 |
}
|
145 |
|
146 |
+
/* Form Builder Button */
|
147 |
+
.mec-booking-form-container button {
|
148 |
+
display: block !important;
|
149 |
+
}
|
150 |
|
151 |
/* Distance (Vertical Spaces) */
|
152 |
.vertical-space,
|
4506 |
}
|
4507 |
|
4508 |
.mec-event-container-simple .mec-monthly-tooltip h4 {
|
4509 |
+
font-size: 13px;
|
4510 |
+
font-weight: 500;
|
4511 |
+
margin: 0;
|
4512 |
+
color: #444;
|
4513 |
+
}
|
4514 |
+
|
4515 |
+
.mec-event-container-simple .mec-monthly-tooltip h4:hover {
|
4516 |
+
text-decoration: underline;
|
4517 |
+
color: #111;
|
4518 |
}
|
4519 |
|
4520 |
.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple {
|
4521 |
+
border-bottom: 1px dashed #e3e3e3;
|
4522 |
+
padding: 10px 2px;
|
4523 |
display: block;
|
4524 |
}
|
4525 |
|
4526 |
+
.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day {
|
4527 |
+
font-size: 30px;
|
4528 |
+
color: #000;
|
4529 |
+
}
|
4530 |
+
|
4531 |
+
.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover {
|
4532 |
+
background: unset;
|
4533 |
+
}
|
4534 |
+
|
4535 |
+
.mec-calendar.mec-event-container-simple .mec-calendar-row dt,
|
4536 |
+
.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,
|
4537 |
+
.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,
|
4538 |
+
.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child {
|
4539 |
+
border-width: 2px;
|
4540 |
+
}
|
4541 |
+
|
4542 |
+
.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,
|
4543 |
+
.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover {
|
4544 |
+
border-bottom: 2px solid #40d9f1;
|
4545 |
+
background: unset;
|
4546 |
+
}
|
4547 |
+
|
4548 |
+
.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt {
|
4549 |
+
line-height: 36px;
|
4550 |
+
}
|
4551 |
+
|
4552 |
+
@media (max-width: 768px) {
|
4553 |
+
.mec-calendar.mec-event-container-simple {
|
4554 |
+
overflow-x: scroll;
|
4555 |
+
}
|
4556 |
+
|
4557 |
+
.mec-calendar.mec-event-container-simple .mec-calendar-side {
|
4558 |
+
min-width: 700px;
|
4559 |
+
}
|
4560 |
+
|
4561 |
+
.mec-event-container-simple .mec-monthly-tooltip h4 {
|
4562 |
+
font-size: 12px;
|
4563 |
+
}
|
4564 |
+
}
|
4565 |
+
|
4566 |
+
|
4567 |
.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover {
|
4568 |
background: #f4f4f4
|
4569 |
}
|
8807 |
}
|
8808 |
|
8809 |
.mec-modal-wrap {
|
8810 |
+
max-width: 60vw;
|
8811 |
+
max-height:90vh !important;
|
8812 |
background: #fff;
|
8813 |
box-shadow: 0 1px 55px rgba(0, 0, 0, 0.5);
|
8814 |
+
overflow-x: hidden !important;
|
8815 |
+
}
|
8816 |
+
|
8817 |
+
@media(max-width: 1023px) {
|
8818 |
+
.mec-modal-wrap {
|
8819 |
+
max-width: 80vw;
|
8820 |
+
}
|
8821 |
}
|
8822 |
|
8823 |
.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,
|
12332 |
.mec-search-bar-wrap .mec-search-form .mec-text-input-search {
|
12333 |
width: 83%;
|
12334 |
}
|
12335 |
+
.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search {
|
12336 |
+
width: 100%;
|
12337 |
+
float: none;
|
12338 |
+
}
|
12339 |
.mec-search-bar-wrap input#mec-search-bar-input {
|
12340 |
width: calc(100% - 84%);
|
12341 |
margin-left: 11px;
|
12350 |
background: #000;
|
12351 |
}
|
12352 |
|
12353 |
+
|
12354 |
+
|
12355 |
+
/* Ajax search bar result */
|
12356 |
+
.mec-wrap.mec-search-bar-wrap .mec-totalcal-box { overflow: visible; }
|
12357 |
+
.mec-ajax-search-result { position: relative; }
|
12358 |
+
.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text] { width: calc(100% - 36px); }
|
12359 |
+
.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{ border-color: #efefef; }
|
12360 |
+
div#mec-ajax-search-result-wrap { position: absolute; top: 100%; opacity: 0; visibility: hidden; width: calc(100% - 2px); min-height: 50px; left: 0; right: 0; padding: 0 10px; z-index: 9999; transition: all 0.3s ease; }
|
12361 |
+
.mec-ajax-search-result-events { background: #ffffff; padding: 10px 20px; border: 1px solid #efefef; border-top: none; }
|
12362 |
+
.mec-ajax-search-result-events article:first-of-type { border: none; }
|
12363 |
+
article.mec-search-bar-result { text-align: left; margin-bottom: 0; padding-bottom: 25px; padding-top: 26px; border-top: 1px solid #efefef; transition: all .33s ease; clear: both; }
|
12364 |
+
.mec-search-bar-result .mec-event-list-search-bar-date { width: 64px; height: 64px; margin-right: 10px; font-size: 11px; text-transform: uppercase; float: left; text-align: center; padding-top: 2px; }
|
12365 |
+
.mec-search-bar-result .mec-event-list-search-bar-date span { font-size: 40px; line-height: 30px; font-weight: 700; display: block; margin-bottom: 6px; letter-spacing: 1px; }
|
12366 |
+
.mec-search-bar-result .mec-event-image { float: left; margin-right: 20px; width: 65px; height: auto; }
|
12367 |
+
.mec-search-bar-result .mec-event-time { font-size: 11px; line-height: 1.1; margin: 0; }
|
12368 |
+
.mec-search-bar-result .mec-event-time i { color: #40d9f1; float: none; width: unset; height: unset; font-size: inherit; margin-right: 3px; border: none; padding: 0; }
|
12369 |
+
.mec-search-bar-result .mec-event-title { font-size: 13px; padding: 0; margin: 10px 0 8px; font-weight: 700; text-transform: uppercase; }
|
12370 |
+
.mec-search-bar-result .mec-event-title a { text-decoration: none; color: #494949; transition: color .3s ease; }
|
12371 |
+
.mec-search-bar-result .mec-event-detail { font-size: 13px; line-height: 1.3; font-family: Roboto, sans-serif; color: #9a9a9a; margin-bottom: 0; }
|
12372 |
+
|
12373 |
/* Related Events */
|
12374 |
.mec-related-events-wrap {
|
12375 |
margin-top: 50px;
|
assets/css/frontend.min.css
CHANGED
@@ -1 +1 @@
|
|
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}
|
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}.mec-booking-form-container button{display:block!important}.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:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-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:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.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 .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-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/js/frontend.js
CHANGED
@@ -606,6 +606,11 @@ var mecSingleEventDisplayer = {
|
|
606 |
callback: function(atts)
|
607 |
{
|
608 |
settings.atts = atts;
|
|
|
|
|
|
|
|
|
|
|
609 |
search(active_year);
|
610 |
}
|
611 |
});
|
606 |
callback: function(atts)
|
607 |
{
|
608 |
settings.atts = atts;
|
609 |
+
active_year = $('.mec-yearly-view-wrap .mec-year-navigator').filter(function()
|
610 |
+
{
|
611 |
+
return $(this).css('display') == "block";
|
612 |
+
});
|
613 |
+
active_year = parseInt(active_year.find('h2').text());
|
614 |
search(active_year);
|
615 |
}
|
616 |
});
|
changelog.txt
CHANGED
@@ -1,4 +1,17 @@
|
|
1 |
-
v 4.4.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
1 |
+
v 4.4.6 - 13 August 2019
|
2 |
+
- Added: Ajax live search to search bar
|
3 |
+
- Added: Filter before wp_mail (Booking Notification) for developers
|
4 |
+
- Fixed: Simple monthly calendar style
|
5 |
+
- Fixed: Daylight saving
|
6 |
+
- Fixed: Multiple days events
|
7 |
+
- Fixed: A two-year limit for filtering events
|
8 |
+
- Fixed: Yearly view search filter
|
9 |
+
- Fixed: Displaying total attendees in Booking Confirmation email
|
10 |
+
- Fixed: Displaying invoice link in booking when the invoice is disabled
|
11 |
+
- Fixed: Booking module in some themes (Lity popup)
|
12 |
+
- Fixed: Some minor issues
|
13 |
+
|
14 |
+
v 4.4.5 - 3 August 2019
|
15 |
- Added: Stripe Connect gateway to divide the booking payment between organizer and site owner
|
16 |
- Added: Ability to insert new speakers from "Frontend Event Submission"
|
17 |
- Improved: Only the role of administrators can see the license
|
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-08-
|
6 |
-
"PO-Revision-Date: 2019-08-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -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"
|
@@ -423,9 +423,9 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
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:
|
427 |
-
#: app/libraries/main.php:
|
428 |
-
#: app/skins/single.php:
|
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"
|
@@ -433,7 +433,7 @@ 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 |
|
@@ -508,14 +508,14 @@ msgstr "Veranstaltungsdetails"
|
|
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:
|
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:104 app/skins/single/default.php:316
|
520 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
521 |
msgid "Cost"
|
@@ -532,7 +532,7 @@ msgstr "Gäste Daten"
|
|
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:
|
536 |
#: app/modules/booking/steps/form.php:37
|
537 |
msgid "Name"
|
538 |
msgstr "Name"
|
@@ -543,10 +543,10 @@ msgstr "Name"
|
|
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:
|
547 |
-
#: app/libraries/notifications.php:
|
548 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
549 |
-
#: app/skins/single.php:
|
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"
|
@@ -692,14 +692,14 @@ msgstr ""
|
|
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:
|
696 |
-
#: app/features/mec/settings.php:
|
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:
|
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
|
@@ -911,9 +911,9 @@ 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:
|
915 |
#: app/modules/booking/steps/tickets.php:22
|
916 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
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"
|
@@ -931,7 +931,7 @@ msgid "Day 1"
|
|
931 |
msgstr ""
|
932 |
|
933 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
934 |
-
#: app/skins/single.php:
|
935 |
msgid "Hourly Schedule"
|
936 |
msgstr "Stundenplan"
|
937 |
|
@@ -970,14 +970,14 @@ msgstr "Titel"
|
|
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:
|
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 |
-
#: app/libraries/main.php:
|
980 |
-
#: app/libraries/main.php:
|
981 |
msgid "Remove"
|
982 |
msgstr "Entfernen"
|
983 |
|
@@ -1010,7 +1010,7 @@ msgstr "Beschreibung"
|
|
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:
|
1014 |
#: app/modules/speakers/details.php:18
|
1015 |
msgid "Speakers"
|
1016 |
msgstr ""
|
@@ -1027,7 +1027,7 @@ 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:
|
1031 |
msgid "Event Link"
|
1032 |
msgstr "Veranstaltungslink"
|
1033 |
|
@@ -1055,8 +1055,8 @@ msgid "URL Shortener"
|
|
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:
|
1059 |
-
#: app/skins/single.php:
|
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
|
@@ -1124,7 +1124,7 @@ msgid "12"
|
|
1124 |
msgstr ""
|
1125 |
|
1126 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1127 |
-
#: app/libraries/main.php:
|
1128 |
msgid "Tickets"
|
1129 |
msgstr "Tickets"
|
1130 |
|
@@ -1198,8 +1198,8 @@ msgstr "Preisschild"
|
|
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:
|
1202 |
-
#: app/libraries/skins.php:
|
1203 |
msgid "Label"
|
1204 |
msgstr "Label"
|
1205 |
|
@@ -1274,48 +1274,48 @@ 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:
|
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:
|
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:
|
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:
|
1299 |
msgid "Tel"
|
1300 |
msgstr "Tel"
|
1301 |
|
1302 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1303 |
-
#: app/libraries/main.php:
|
1304 |
msgid "File"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1308 |
-
#: app/libraries/main.php:
|
1309 |
msgid "Textarea"
|
1310 |
msgstr "Textbereich"
|
1311 |
|
1312 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1313 |
-
#: app/libraries/main.php:
|
1314 |
msgid "Checkboxes"
|
1315 |
msgstr "Checkboxes"
|
1316 |
|
1317 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1318 |
-
#: app/libraries/main.php:
|
1319 |
msgid "Radio Buttons"
|
1320 |
msgstr "Radio Buttons"
|
1321 |
|
@@ -1388,17 +1388,17 @@ msgstr "Radio Buttons"
|
|
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:
|
1392 |
msgid "Dropdown"
|
1393 |
msgstr "Dropdown"
|
1394 |
|
1395 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1396 |
-
#: app/libraries/main.php:
|
1397 |
msgid "Agreement"
|
1398 |
msgstr "Zustimmung"
|
1399 |
|
1400 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1401 |
-
#: app/libraries/main.php:
|
1402 |
msgid "Paragraph"
|
1403 |
msgstr "Absatz"
|
1404 |
|
@@ -1436,10 +1436,10 @@ msgstr "Veranstalter"
|
|
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:
|
1440 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1441 |
-
#: app/libraries/skins.php:
|
1442 |
-
#: app/skins/single.php:
|
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"
|
@@ -1458,11 +1458,11 @@ msgstr "Ort"
|
|
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:
|
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:
|
1465 |
-
#: app/libraries/skins.php:
|
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
|
@@ -1621,8 +1621,8 @@ 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:
|
1625 |
-
#: app/skins/single.php:
|
1626 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1627 |
#: app/skins/single/modern.php:214
|
1628 |
msgid "Labels"
|
@@ -1967,7 +1967,7 @@ 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:
|
1971 |
msgid "Checking ..."
|
1972 |
msgstr "Überprüfung"
|
1973 |
|
@@ -2392,7 +2392,7 @@ msgid "Featured"
|
|
2392 |
msgstr "Ausgewähltes Bild"
|
2393 |
|
2394 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2395 |
-
#: app/libraries/main.php:
|
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
|
@@ -2427,7 +2427,7 @@ 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:
|
2431 |
msgid "Locations"
|
2432 |
msgstr "Orte"
|
2433 |
|
@@ -2539,7 +2539,7 @@ msgstr "Bild wählen"
|
|
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:
|
2543 |
#, fuzzy
|
2544 |
#| msgid "Locations"
|
2545 |
msgid "Other Locations"
|
@@ -2596,7 +2596,7 @@ 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:
|
2600 |
msgid "Organizers"
|
2601 |
msgstr "Veranstalter"
|
2602 |
|
@@ -2717,9 +2717,9 @@ msgstr ""
|
|
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:
|
2721 |
-
#: app/features/mec/settings.php:
|
2722 |
-
#: app/features/mec/settings.php:
|
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
|
@@ -2818,7 +2818,7 @@ msgstr "Zusätzliche Organisatoren"
|
|
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:
|
2822 |
#, fuzzy
|
2823 |
#| msgid "featured event"
|
2824 |
msgid "Related Events"
|
@@ -2949,7 +2949,7 @@ msgstr ""
|
|
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:
|
2953 |
msgid "Booking Reminder"
|
2954 |
msgstr "Buchungs Erinnerung"
|
2955 |
|
@@ -3131,7 +3131,7 @@ msgstr ""
|
|
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:
|
3135 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3136 |
msgid "Saved"
|
3137 |
msgstr "Gesichert"
|
@@ -3139,7 +3139,7 @@ msgstr "Gesichert"
|
|
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:
|
3143 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3144 |
msgid "Settings Saved!"
|
3145 |
msgstr ""
|
@@ -3147,14 +3147,14 @@ msgstr ""
|
|
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:
|
3151 |
-
#: app/features/mec/settings.php:
|
3152 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
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:
|
3158 |
#: app/features/mec/single.php:502
|
3159 |
msgid "Please Refresh Page"
|
3160 |
msgstr "Bitte Seiten Refresh vornehmen"
|
@@ -4103,9 +4103,9 @@ msgstr "Deaktiviert"
|
|
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:
|
4107 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4108 |
-
#: app/libraries/main.php:
|
4109 |
msgid "Speaker"
|
4110 |
msgstr ""
|
4111 |
|
@@ -4119,8 +4119,8 @@ msgstr ""
|
|
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:
|
4123 |
-
#: app/libraries/skins.php:
|
4124 |
#, fuzzy
|
4125 |
#| msgid "Tags"
|
4126 |
msgid "Tag"
|
@@ -4202,12 +4202,12 @@ 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:
|
4206 |
msgid "API Key"
|
4207 |
msgstr "API Schlüssel"
|
4208 |
|
4209 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
4210 |
-
#: app/features/mec/settings.php:
|
4211 |
msgid "Required!"
|
4212 |
msgstr "Erforderlich (Pflichtfeld)"
|
4213 |
|
@@ -4838,7 +4838,7 @@ msgid ""
|
|
4838 |
msgstr ""
|
4839 |
|
4840 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4841 |
-
#: app/libraries/main.php:
|
4842 |
msgid "Weekdays"
|
4843 |
msgstr "Wochentage"
|
4844 |
|
@@ -5175,33 +5175,55 @@ 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:
|
5179 |
-
msgid "
|
|
|
|
|
|
|
|
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5183 |
msgid "Enable Mailchimp Integration"
|
5184 |
msgstr "Mailchimp Integration deaktivieren"
|
5185 |
|
5186 |
-
#: app/features/mec/settings.php:
|
5187 |
msgid "List ID"
|
5188 |
msgstr "List ID"
|
5189 |
|
5190 |
-
#: app/features/mec/settings.php:
|
5191 |
msgid "Subscription Status"
|
5192 |
msgstr "Buchungsstatus"
|
5193 |
|
5194 |
-
#: app/features/mec/settings.php:
|
5195 |
msgid "Subscribe automatically"
|
5196 |
msgstr "automatisch Anmelden/Abonnieren"
|
5197 |
|
5198 |
-
#: app/features/mec/settings.php:
|
5199 |
msgid "Subscribe by verification"
|
5200 |
msgstr ""
|
5201 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
5202 |
" "
|
5203 |
|
5204 |
-
#: app/features/mec/settings.php:
|
5205 |
msgid ""
|
5206 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5207 |
"by mailchimp for subscription verification."
|
@@ -5209,31 +5231,31 @@ msgstr ""
|
|
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:
|
5213 |
#, fuzzy
|
5214 |
#| msgid "Filter Options"
|
5215 |
msgid "Upload Field Options"
|
5216 |
msgstr "Filteroptionen"
|
5217 |
|
5218 |
-
#: app/features/mec/settings.php:
|
5219 |
msgid "Mime types"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: app/features/mec/settings.php:
|
5223 |
msgid "Split mime types with \",\"."
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: app/features/mec/settings.php:
|
5227 |
msgid "Default: jpeg,jpg,png,pdf"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: app/features/mec/settings.php:
|
5231 |
#, fuzzy
|
5232 |
#| msgid "Amount (Per Ticket)"
|
5233 |
msgid "Maximum file size"
|
5234 |
msgstr "Betrag (pro Ticket)"
|
5235 |
|
5236 |
-
#: app/features/mec/settings.php:
|
5237 |
msgid "The unit is Megabyte \"MB\""
|
5238 |
msgstr ""
|
5239 |
|
@@ -5963,8 +5985,8 @@ msgstr "z.B.. max@mustermann.com"
|
|
5963 |
msgid "eg. https://webnus.net"
|
5964 |
msgstr "http://webnus.net"
|
5965 |
|
5966 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5967 |
-
#: app/skins/single.php:
|
5968 |
msgid "Other Organizers"
|
5969 |
msgstr "Andere Veranstalter"
|
5970 |
|
@@ -5985,7 +6007,7 @@ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
|
|
5985 |
msgid "#"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5989 |
msgid "Status"
|
5990 |
msgstr ""
|
5991 |
|
@@ -6005,7 +6027,7 @@ 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:
|
6009 |
msgid "Ticket"
|
6010 |
msgstr "Ticket"
|
6011 |
|
@@ -6019,12 +6041,37 @@ msgstr "Verifizierung"
|
|
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
|
@@ -6091,11 +6138,11 @@ msgstr ""
|
|
6091 |
msgid "%s Price"
|
6092 |
msgstr "%s Preis"
|
6093 |
|
6094 |
-
#: app/libraries/book.php:
|
6095 |
msgid "Discount"
|
6096 |
msgstr "Rabatt"
|
6097 |
|
6098 |
-
#: app/libraries/book.php:
|
6099 |
#: app/modules/booking/default.php:401
|
6100 |
msgid "Download Invoice"
|
6101 |
msgstr "Download Rechnung"
|
@@ -6121,51 +6168,51 @@ msgctxt "plugin link"
|
|
6121 |
msgid "Upgrade"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: app/libraries/factory.php:
|
6125 |
msgid "day"
|
6126 |
msgstr "Tag"
|
6127 |
|
6128 |
-
#: app/libraries/factory.php:
|
6129 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6130 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6131 |
msgid "days"
|
6132 |
msgstr "Tage"
|
6133 |
|
6134 |
-
#: app/libraries/factory.php:
|
6135 |
msgid "hour"
|
6136 |
msgstr "Stunde"
|
6137 |
|
6138 |
-
#: app/libraries/factory.php:
|
6139 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6140 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6141 |
msgid "hours"
|
6142 |
msgstr "Stunden"
|
6143 |
|
6144 |
-
#: app/libraries/factory.php:
|
6145 |
msgid "minute"
|
6146 |
msgstr "Minute"
|
6147 |
|
6148 |
-
#: app/libraries/factory.php:
|
6149 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6150 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6151 |
msgid "minutes"
|
6152 |
msgstr "Minuten"
|
6153 |
|
6154 |
-
#: app/libraries/factory.php:
|
6155 |
msgid "second"
|
6156 |
msgstr "Sekunde"
|
6157 |
|
6158 |
-
#: app/libraries/factory.php:
|
6159 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6160 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6161 |
msgid "seconds"
|
6162 |
msgstr "Sekunden"
|
6163 |
|
6164 |
-
#: app/libraries/factory.php:
|
6165 |
msgid "MEC Single Sidebar"
|
6166 |
msgstr "MEC Single Sidebar"
|
6167 |
|
6168 |
-
#: app/libraries/factory.php:
|
6169 |
msgid "Custom sidebar for single and modal page of MEC."
|
6170 |
msgstr "Custom sidebar for single and modal page of MEC."
|
6171 |
|
@@ -6230,31 +6277,31 @@ msgstr "Karussellansicht"
|
|
6230 |
msgid "Slider View"
|
6231 |
msgstr "Slideransicht"
|
6232 |
|
6233 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6234 |
msgid "SU"
|
6235 |
msgstr "SO"
|
6236 |
|
6237 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6238 |
msgid "MO"
|
6239 |
msgstr "MO"
|
6240 |
|
6241 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6242 |
msgid "TU"
|
6243 |
msgstr "DI"
|
6244 |
|
6245 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6246 |
msgid "WE"
|
6247 |
msgstr "MI"
|
6248 |
|
6249 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6250 |
msgid "TH"
|
6251 |
msgstr "DO"
|
6252 |
|
6253 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6254 |
msgid "FR"
|
6255 |
msgstr "FR"
|
6256 |
|
6257 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6258 |
msgid "SA"
|
6259 |
msgstr "SA"
|
6260 |
|
@@ -6408,177 +6455,177 @@ msgstr "iCal Export wurde unterbrochen!"
|
|
6408 |
msgid "Request is not valid."
|
6409 |
msgstr "Die Anfrage ist ungültig!"
|
6410 |
|
6411 |
-
#: app/libraries/main.php:
|
6412 |
-
#: app/libraries/main.php:
|
6413 |
-
#: app/libraries/main.php:
|
6414 |
-
#: app/libraries/main.php:
|
6415 |
-
#: app/libraries/main.php:
|
6416 |
-
#: app/libraries/main.php:
|
6417 |
-
#: app/libraries/main.php:
|
6418 |
msgid "Sort"
|
6419 |
msgstr "Sortieren"
|
6420 |
|
6421 |
-
#: app/libraries/main.php:
|
6422 |
-
#: app/libraries/main.php:
|
6423 |
-
#: app/libraries/main.php:
|
6424 |
-
#: app/libraries/main.php:
|
6425 |
-
#: app/libraries/main.php:
|
6426 |
-
#: app/libraries/main.php:
|
6427 |
msgid "Required Field"
|
6428 |
msgstr "Pflichtfeld"
|
6429 |
|
6430 |
-
#: app/libraries/main.php:
|
6431 |
-
#: app/libraries/main.php:
|
6432 |
-
#: app/libraries/main.php:
|
6433 |
-
#: app/libraries/main.php:
|
6434 |
-
#: app/libraries/main.php:
|
6435 |
-
#: app/libraries/main.php:
|
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:
|
6440 |
msgid "HTML and shortcode are allowed."
|
6441 |
msgstr "HTML und shortcodes sind erlaubt."
|
6442 |
|
6443 |
-
#: app/libraries/main.php:
|
6444 |
-
#: app/libraries/main.php:
|
6445 |
msgid "Option"
|
6446 |
msgstr "Option"
|
6447 |
|
6448 |
-
#: app/libraries/main.php:
|
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:
|
6454 |
msgid "Agreement Page"
|
6455 |
msgstr "Zustimmungsseite"
|
6456 |
|
6457 |
-
#: app/libraries/main.php:
|
6458 |
msgid "Checked by default"
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: app/libraries/main.php:
|
6462 |
msgid "Unchecked by default"
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: app/libraries/main.php:
|
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:
|
6470 |
msgid "Free"
|
6471 |
msgstr "kostenfrei"
|
6472 |
|
6473 |
-
#: app/libraries/main.php:
|
6474 |
#, fuzzy
|
6475 |
#| msgid "M.E. Calendar"
|
6476 |
msgid "M.E. Calender"
|
6477 |
msgstr "M.E. Calender"
|
6478 |
|
6479 |
-
#: app/libraries/main.php:
|
6480 |
#, php-format
|
6481 |
msgid "Copy of %s"
|
6482 |
msgstr "Kopie von %s"
|
6483 |
|
6484 |
-
#: app/libraries/main.php:
|
6485 |
msgid "Booked an event."
|
6486 |
msgstr "Eine Veranstaltung wurde gebucht."
|
6487 |
|
6488 |
-
#: app/libraries/main.php:
|
6489 |
#, php-format
|
6490 |
msgid "%s booked %s event."
|
6491 |
msgstr "%s gebuchtes %s Event"
|
6492 |
|
6493 |
-
#: app/libraries/main.php:
|
6494 |
msgid "Taxonomies"
|
6495 |
msgstr "Klassifizierung "
|
6496 |
|
6497 |
-
#: app/libraries/main.php:
|
6498 |
msgid "Category Plural Label"
|
6499 |
msgstr "Kategorien"
|
6500 |
|
6501 |
-
#: app/libraries/main.php:
|
6502 |
msgid "Category Singular Label"
|
6503 |
msgstr "Kategorie"
|
6504 |
|
6505 |
-
#: app/libraries/main.php:
|
6506 |
msgid "Label Plural Label"
|
6507 |
msgstr "Labels"
|
6508 |
|
6509 |
-
#: app/libraries/main.php:
|
6510 |
msgid "Label Singular Label"
|
6511 |
msgstr "Label"
|
6512 |
|
6513 |
-
#: app/libraries/main.php:
|
6514 |
msgid "label"
|
6515 |
msgstr "label"
|
6516 |
|
6517 |
-
#: app/libraries/main.php:
|
6518 |
msgid "Location Plural Label"
|
6519 |
msgstr "Veranstaltungsorte"
|
6520 |
|
6521 |
-
#: app/libraries/main.php:
|
6522 |
msgid "Location Singular Label"
|
6523 |
msgstr "Veranstaltungsort"
|
6524 |
|
6525 |
-
#: app/libraries/main.php:
|
6526 |
msgid "Organizer Plural Label"
|
6527 |
msgstr "Veranstalter"
|
6528 |
|
6529 |
-
#: app/libraries/main.php:
|
6530 |
msgid "Organizer Singular Label"
|
6531 |
msgstr "Veranstalter"
|
6532 |
|
6533 |
-
#: app/libraries/main.php:
|
6534 |
#, fuzzy
|
6535 |
#| msgid "Label Plural Label"
|
6536 |
msgid "Speaker Plural Label"
|
6537 |
msgstr "Labels"
|
6538 |
|
6539 |
-
#: app/libraries/main.php:
|
6540 |
#, fuzzy
|
6541 |
#| msgid "Label Singular Label"
|
6542 |
msgid "Speaker Singular Label"
|
6543 |
msgstr "Label"
|
6544 |
|
6545 |
-
#: app/libraries/main.php:
|
6546 |
msgid "Sunday abbreviation"
|
6547 |
msgstr "Sonntag Abkürzung"
|
6548 |
|
6549 |
-
#: app/libraries/main.php:
|
6550 |
msgid "Monday abbreviation"
|
6551 |
msgstr "Montag Abkürzung"
|
6552 |
|
6553 |
-
#: app/libraries/main.php:
|
6554 |
msgid "Tuesday abbreviation"
|
6555 |
msgstr "Dienstag Abkürzung"
|
6556 |
|
6557 |
-
#: app/libraries/main.php:
|
6558 |
msgid "Wednesday abbreviation"
|
6559 |
msgstr "Mittwoch Abkürzung"
|
6560 |
|
6561 |
-
#: app/libraries/main.php:
|
6562 |
msgid "Thursday abbreviation"
|
6563 |
msgstr "Donnerstag Abkürzung"
|
6564 |
|
6565 |
-
#: app/libraries/main.php:
|
6566 |
msgid "Friday abbreviation"
|
6567 |
msgstr "Freitag Abkürzung"
|
6568 |
|
6569 |
-
#: app/libraries/main.php:
|
6570 |
msgid "Saturday abbreviation"
|
6571 |
msgstr "Samstag Abkürzung "
|
6572 |
|
6573 |
-
#: app/libraries/main.php:
|
6574 |
msgid "Others"
|
6575 |
msgstr "Andere"
|
6576 |
|
6577 |
-
#: app/libraries/main.php:
|
6578 |
msgid "Booking Success Message"
|
6579 |
msgstr "Buchung erfolgreich Mitteilung"
|
6580 |
|
6581 |
-
#: app/libraries/main.php:
|
6582 |
msgid ""
|
6583 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6584 |
"needed, please check your email."
|
@@ -6586,17 +6633,17 @@ msgstr ""
|
|
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:
|
6590 |
msgid "Register Button"
|
6591 |
msgstr "Register Button"
|
6592 |
|
6593 |
-
#: app/libraries/main.php:
|
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:
|
6599 |
-
#: app/skins/single.php:
|
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
|
@@ -6607,11 +6654,11 @@ msgstr "Register Button"
|
|
6607 |
msgid "REGISTER"
|
6608 |
msgstr "ANMELDEN"
|
6609 |
|
6610 |
-
#: app/libraries/main.php:
|
6611 |
msgid "View Detail Button"
|
6612 |
msgstr "Ansicht Detail Button"
|
6613 |
|
6614 |
-
#: app/libraries/main.php:
|
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
|
@@ -6622,59 +6669,59 @@ msgstr "Ansicht Detail Button"
|
|
6622 |
msgid "View Detail"
|
6623 |
msgstr "Details "
|
6624 |
|
6625 |
-
#: app/libraries/main.php:
|
6626 |
msgid "Event Detail Button"
|
6627 |
msgstr "Event Detail Button"
|
6628 |
|
6629 |
-
#: app/libraries/main.php:
|
6630 |
msgid "Event Detail"
|
6631 |
msgstr "Veranstaltungsdetails"
|
6632 |
|
6633 |
-
#: app/libraries/main.php:
|
6634 |
msgid "More Info Link"
|
6635 |
msgstr "Link Mehr Informationen"
|
6636 |
|
6637 |
-
#: app/libraries/main.php:
|
6638 |
msgid "Ticket (Singular)"
|
6639 |
msgstr "Ticket"
|
6640 |
|
6641 |
-
#: app/libraries/main.php:
|
6642 |
msgid "Tickets (Plural)"
|
6643 |
msgstr "Tickets"
|
6644 |
|
6645 |
-
#: app/libraries/main.php:
|
6646 |
msgid "EventON"
|
6647 |
msgstr "EventON"
|
6648 |
|
6649 |
-
#: app/libraries/main.php:
|
6650 |
msgid "The Events Calendar"
|
6651 |
msgstr "The Events Calendar"
|
6652 |
|
6653 |
-
#: app/libraries/main.php:
|
6654 |
msgid "Events Schedule WP Plugin"
|
6655 |
msgstr "Event Zeitplan WP-Plugin"
|
6656 |
|
6657 |
-
#: app/libraries/main.php:
|
6658 |
msgid "Calendarize It"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#: app/libraries/main.php:
|
6662 |
msgid "Confirmed"
|
6663 |
msgstr "Bestätigt"
|
6664 |
|
6665 |
-
#: app/libraries/main.php:
|
6666 |
msgid "Rejected"
|
6667 |
msgstr "Abgelehnt"
|
6668 |
|
6669 |
-
#: app/libraries/main.php:
|
6670 |
msgid "Pending"
|
6671 |
msgstr "Ausstehend"
|
6672 |
|
6673 |
-
#: app/libraries/main.php:
|
6674 |
msgid "Waiting"
|
6675 |
msgstr "in Bearbeitung"
|
6676 |
|
6677 |
-
#: app/libraries/main.php:
|
6678 |
msgid "Skin controller does not exist."
|
6679 |
msgstr "Skin contoller existiert nicht."
|
6680 |
|
@@ -6682,57 +6729,49 @@ msgstr "Skin contoller existiert nicht."
|
|
6682 |
msgid "Please verify your email."
|
6683 |
msgstr "Bitte bestätigen Sie Ihre email."
|
6684 |
|
6685 |
-
#: app/libraries/notifications.php:
|
6686 |
msgid "Your booking is received."
|
6687 |
msgstr "Ihre Buchung ist eingegangen"
|
6688 |
|
6689 |
-
#: app/libraries/notifications.php:
|
6690 |
msgid "Your booking is confirmed."
|
6691 |
msgstr "Ihre Buchung wurde bestätigt."
|
6692 |
|
6693 |
-
#: app/libraries/notifications.php:
|
6694 |
#, fuzzy
|
6695 |
#| msgid "Your booking cannot be canceled."
|
6696 |
msgid "booking canceled."
|
6697 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
6698 |
|
6699 |
-
#: app/libraries/notifications.php:
|
6700 |
msgid "A new booking is received."
|
6701 |
msgstr "Eine neue Buchung ist eingegangen."
|
6702 |
|
6703 |
-
#: app/libraries/notifications.php:
|
6704 |
msgid "A new event is added."
|
6705 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
6706 |
|
6707 |
-
#: app/libraries/notifications.php:
|
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"
|
6714 |
-
|
6715 |
-
#: app/libraries/notifications.php:611
|
6716 |
msgid "to"
|
6717 |
msgstr ""
|
6718 |
|
6719 |
-
#: app/libraries/notifications.php:
|
6720 |
msgid "+ Add to Google Calendar"
|
6721 |
msgstr "+ zum Google Calendar hinzufügen"
|
6722 |
|
6723 |
-
#: app/libraries/notifications.php:
|
6724 |
msgid "+ iCal export"
|
6725 |
msgstr "+ zu iCal exportieren"
|
6726 |
|
6727 |
-
#: app/libraries/notifications.php:
|
6728 |
msgid "Yes"
|
6729 |
msgstr "Ja"
|
6730 |
|
6731 |
-
#: app/libraries/notifications.php:
|
6732 |
msgid "No"
|
6733 |
msgstr "Nein"
|
6734 |
|
6735 |
-
#: app/libraries/skins.php:
|
6736 |
msgid "Ignore month and years"
|
6737 |
msgstr "Monat und Jahre ignorieren"
|
6738 |
|
@@ -6814,7 +6853,7 @@ msgstr "Adresse von..."
|
|
6814 |
msgid "Get Directions"
|
6815 |
msgstr "Wegbeschreibung"
|
6816 |
|
6817 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6818 |
msgid "Share this event"
|
6819 |
msgstr "Diese Veranstaltung teilen"
|
6820 |
|
@@ -6841,7 +6880,7 @@ msgstr "Nächstes Event"
|
|
6841 |
msgid "Go to occurrence page"
|
6842 |
msgstr "Zum Event"
|
6843 |
|
6844 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
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"
|
@@ -6953,7 +6992,7 @@ msgstr "Keine Veranstaltung"
|
|
6953 |
msgid "List"
|
6954 |
msgstr "Liste / Listenansicht"
|
6955 |
|
6956 |
-
#: app/skins/masonry.php:
|
6957 |
msgid "All"
|
6958 |
msgstr "Alle"
|
6959 |
|
@@ -6971,31 +7010,31 @@ msgstr "Veranstaltungen für %s"
|
|
6971 |
msgid "No Events"
|
6972 |
msgstr "Keine Veranstaltungen"
|
6973 |
|
6974 |
-
#: app/skins/single.php:
|
6975 |
msgid "Home"
|
6976 |
msgstr ""
|
6977 |
|
6978 |
-
#: app/skins/single.php:
|
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:
|
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:
|
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:
|
6999 |
#, fuzzy
|
7000 |
#| msgid "No Search Options"
|
7001 |
msgid "Speakers:"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
6 |
+
"PO-Revision-Date: 2019-08-13 16:44+0430\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
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:952
|
361 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
362 |
#: app/features/mec/styling.php:59
|
363 |
msgid "Mailchimp Integration"
|
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:905 app/features/mec/single.php:390
|
427 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
428 |
+
#: app/skins/single.php:530 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"
|
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:4508
|
437 |
msgid "Categories"
|
438 |
msgstr "Kategorien"
|
439 |
|
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:4541
|
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:4542 app/skins/single.php:553
|
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"
|
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:736
|
536 |
#: app/modules/booking/steps/form.php:37
|
537 |
msgid "Name"
|
538 |
msgstr "Name"
|
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:2261
|
547 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
548 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
549 |
+
#: app/skins/single.php:835 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"
|
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:967
|
696 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
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:628
|
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
|
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:2319
|
915 |
#: app/modules/booking/steps/tickets.php:22
|
916 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
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"
|
931 |
msgstr ""
|
932 |
|
933 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
934 |
+
#: app/skins/single.php:898
|
935 |
msgid "Hourly Schedule"
|
936 |
msgstr "Stundenplan"
|
937 |
|
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:2180
|
974 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
975 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
976 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
977 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
978 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
979 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
980 |
+
#: app/libraries/main.php:2612
|
981 |
msgid "Remove"
|
982 |
msgstr "Entfernen"
|
983 |
|
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:4516
|
1014 |
#: app/modules/speakers/details.php:18
|
1015 |
msgid "Speakers"
|
1016 |
msgstr ""
|
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:4539
|
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:4540
|
1059 |
+
#: app/skins/single.php:627 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
|
1124 |
msgstr ""
|
1125 |
|
1126 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1127 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1128 |
msgid "Tickets"
|
1129 |
msgstr "Tickets"
|
1130 |
|
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:937 app/features/mec/single.php:408
|
1202 |
+
#: app/libraries/skins.php:937
|
1203 |
msgid "Label"
|
1204 |
msgstr "Label"
|
1205 |
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1277 |
+
#: app/libraries/main.php:2202
|
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:2231
|
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:2172
|
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:2348
|
1299 |
msgid "Tel"
|
1300 |
msgstr "Tel"
|
1301 |
|
1302 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1303 |
+
#: app/libraries/main.php:2290
|
1304 |
msgid "File"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1308 |
+
#: app/libraries/main.php:2377
|
1309 |
msgid "Textarea"
|
1310 |
msgstr "Textbereich"
|
1311 |
|
1312 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1313 |
+
#: app/libraries/main.php:2430
|
1314 |
msgid "Checkboxes"
|
1315 |
msgstr "Checkboxes"
|
1316 |
|
1317 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1318 |
+
#: app/libraries/main.php:2474
|
1319 |
msgid "Radio Buttons"
|
1320 |
msgstr "Radio Buttons"
|
1321 |
|
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:2518
|
1392 |
msgid "Dropdown"
|
1393 |
msgstr "Dropdown"
|
1394 |
|
1395 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1396 |
+
#: app/libraries/main.php:2565
|
1397 |
msgid "Agreement"
|
1398 |
msgstr "Zustimmung"
|
1399 |
|
1400 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1401 |
+
#: app/libraries/main.php:2406
|
1402 |
msgid "Paragraph"
|
1403 |
msgstr "Absatz"
|
1404 |
|
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:911 app/features/mec/single.php:398
|
1440 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1441 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1442 |
+
#: app/skins/single.php:875 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"
|
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:917 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:4515
|
1465 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
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
|
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:4510
|
1625 |
+
#: app/skins/single.php:656 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"
|
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:1103 app/features/mec/single.php:480
|
1971 |
msgid "Checking ..."
|
1972 |
msgstr "Überprüfung"
|
1973 |
|
2392 |
msgstr "Ausgewähltes Bild"
|
2393 |
|
2394 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2395 |
+
#: app/libraries/main.php:4756 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
|
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:4512
|
2431 |
msgid "Locations"
|
2432 |
msgstr "Orte"
|
2433 |
|
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:4546
|
2543 |
#, fuzzy
|
2544 |
#| msgid "Locations"
|
2545 |
msgid "Other Locations"
|
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:4514
|
2600 |
msgid "Organizers"
|
2601 |
msgstr "Veranstalter"
|
2602 |
|
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:1027
|
2721 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2722 |
+
#: app/features/mec/settings.php:1134 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
|
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:162
|
2822 |
#, fuzzy
|
2823 |
#| msgid "featured event"
|
2824 |
msgid "Related Events"
|
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:405
|
2953 |
msgid "Booking Reminder"
|
2954 |
msgstr "Buchungs Erinnerung"
|
2955 |
|
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:1098 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"
|
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:1099 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 ""
|
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:1101
|
3151 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
3152 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
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:1125
|
3158 |
#: app/features/mec/single.php:502
|
3159 |
msgid "Please Refresh Page"
|
3160 |
msgstr "Bitte Seiten Refresh vornehmen"
|
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:924 app/features/mec/single.php:403
|
4107 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4108 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
4109 |
msgid "Speaker"
|
4110 |
msgstr ""
|
4111 |
|
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:931 app/features/mec/single.php:412
|
4123 |
+
#: app/libraries/skins.php:911
|
4124 |
#, fuzzy
|
4125 |
#| msgid "Tags"
|
4126 |
msgid "Tag"
|
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:961 app/features/mec/settings.php:966
|
4206 |
msgid "API Key"
|
4207 |
msgstr "API Schlüssel"
|
4208 |
|
4209 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
4210 |
+
#: app/features/mec/settings.php:980
|
4211 |
msgid "Required!"
|
4212 |
msgstr "Erforderlich (Pflichtfeld)"
|
4213 |
|
4838 |
msgstr ""
|
4839 |
|
4840 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4841 |
+
#: app/libraries/main.php:4521
|
4842 |
msgid "Weekdays"
|
4843 |
msgstr "Wochentage"
|
4844 |
|
5175 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: app/features/mec/settings.php:890
|
5179 |
+
msgid "Ajax Live mode"
|
5180 |
+
msgstr ""
|
5181 |
+
|
5182 |
+
#: app/features/mec/settings.php:894
|
5183 |
+
msgid "Ajax mode"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: app/features/mec/settings.php:895
|
5187 |
+
msgid ""
|
5188 |
+
"if you enable this option, search button disappeared and to use this "
|
5189 |
+
"feature, text input field must be enabled."
|
5190 |
+
msgstr ""
|
5191 |
+
|
5192 |
+
#: app/features/mec/settings.php:901
|
5193 |
+
#, fuzzy
|
5194 |
+
#| msgid "Search Form"
|
5195 |
+
msgid "Search bar fields"
|
5196 |
+
msgstr "Suche Formular"
|
5197 |
+
|
5198 |
+
#: app/features/mec/settings.php:943
|
5199 |
+
#, fuzzy
|
5200 |
+
#| msgid "Text Input"
|
5201 |
+
msgid "Text input"
|
5202 |
+
msgstr "Text eingeben"
|
5203 |
+
|
5204 |
+
#: app/features/mec/settings.php:956
|
5205 |
msgid "Enable Mailchimp Integration"
|
5206 |
msgstr "Mailchimp Integration deaktivieren"
|
5207 |
|
5208 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
5209 |
msgid "List ID"
|
5210 |
msgstr "List ID"
|
5211 |
|
5212 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
5213 |
msgid "Subscription Status"
|
5214 |
msgstr "Buchungsstatus"
|
5215 |
|
5216 |
+
#: app/features/mec/settings.php:990
|
5217 |
msgid "Subscribe automatically"
|
5218 |
msgstr "automatisch Anmelden/Abonnieren"
|
5219 |
|
5220 |
+
#: app/features/mec/settings.php:991
|
5221 |
msgid "Subscribe by verification"
|
5222 |
msgstr ""
|
5223 |
"Anmelden/Abonnieren durch Bestätigung\n"
|
5224 |
" "
|
5225 |
|
5226 |
+
#: app/features/mec/settings.php:996
|
5227 |
msgid ""
|
5228 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5229 |
"by mailchimp for subscription verification."
|
5231 |
"Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
|
5232 |
"Benutzer per Mailchimp zur Bestätigung gesendet."
|
5233 |
|
5234 |
+
#: app/features/mec/settings.php:1008
|
5235 |
#, fuzzy
|
5236 |
#| msgid "Filter Options"
|
5237 |
msgid "Upload Field Options"
|
5238 |
msgstr "Filteroptionen"
|
5239 |
|
5240 |
+
#: app/features/mec/settings.php:1010
|
5241 |
msgid "Mime types"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
+
#: app/features/mec/settings.php:1014
|
5245 |
msgid "Split mime types with \",\"."
|
5246 |
msgstr ""
|
5247 |
|
5248 |
+
#: app/features/mec/settings.php:1014
|
5249 |
msgid "Default: jpeg,jpg,png,pdf"
|
5250 |
msgstr ""
|
5251 |
|
5252 |
+
#: app/features/mec/settings.php:1017
|
5253 |
#, fuzzy
|
5254 |
#| msgid "Amount (Per Ticket)"
|
5255 |
msgid "Maximum file size"
|
5256 |
msgstr "Betrag (pro Ticket)"
|
5257 |
|
5258 |
+
#: app/features/mec/settings.php:1021
|
5259 |
msgid "The unit is Megabyte \"MB\""
|
5260 |
msgstr ""
|
5261 |
|
5985 |
msgid "eg. https://webnus.net"
|
5986 |
msgstr "http://webnus.net"
|
5987 |
|
5988 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5989 |
+
#: app/skins/single.php:813
|
5990 |
msgid "Other Organizers"
|
5991 |
msgstr "Andere Veranstalter"
|
5992 |
|
6007 |
msgid "#"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
6011 |
msgid "Status"
|
6012 |
msgstr ""
|
6013 |
|
6027 |
msgstr ""
|
6028 |
|
6029 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
6030 |
+
#: app/libraries/main.php:4543
|
6031 |
msgid "Ticket"
|
6032 |
msgstr "Ticket"
|
6033 |
|
6041 |
msgid "No bookings found!"
|
6042 |
msgstr "Keine Buchungen gefunden"
|
6043 |
|
6044 |
+
#: app/features/search.php:90
|
6045 |
+
msgid "Please enter at least 3 characters and try again"
|
6046 |
+
msgstr ""
|
6047 |
+
|
6048 |
+
#: app/features/search_bar/search_bar.php:26
|
6049 |
+
msgid "Please enter at least 3 characters"
|
6050 |
+
msgstr ""
|
6051 |
+
|
6052 |
#: app/features/search_bar/search_bar.php:28
|
6053 |
+
msgid "Search results will show here"
|
6054 |
+
msgstr ""
|
6055 |
+
|
6056 |
+
#: app/features/search_bar/search_bar.php:39
|
6057 |
#, fuzzy
|
6058 |
#| msgid "Search %s"
|
6059 |
msgid "Search"
|
6060 |
msgstr "Suche %s"
|
6061 |
|
6062 |
+
#: app/features/search_bar/search_noresult.php:1
|
6063 |
+
msgid "No search result."
|
6064 |
+
msgstr ""
|
6065 |
+
|
6066 |
+
#: app/features/search_bar/search_result.php:11
|
6067 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
6068 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6069 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
6070 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
6071 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
6072 |
+
msgid "All of the day"
|
6073 |
+
msgstr "Den ganzen Tag"
|
6074 |
+
|
6075 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
6076 |
#: app/features/speakers.php:248
|
6077 |
#, fuzzy
|
6138 |
msgid "%s Price"
|
6139 |
msgstr "%s Preis"
|
6140 |
|
6141 |
+
#: app/libraries/book.php:539
|
6142 |
msgid "Discount"
|
6143 |
msgstr "Rabatt"
|
6144 |
|
6145 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
6146 |
#: app/modules/booking/default.php:401
|
6147 |
msgid "Download Invoice"
|
6148 |
msgstr "Download Rechnung"
|
6168 |
msgid "Upgrade"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
+
#: app/libraries/factory.php:333
|
6172 |
msgid "day"
|
6173 |
msgstr "Tag"
|
6174 |
|
6175 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
6176 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6177 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6178 |
msgid "days"
|
6179 |
msgstr "Tage"
|
6180 |
|
6181 |
+
#: app/libraries/factory.php:335
|
6182 |
msgid "hour"
|
6183 |
msgstr "Stunde"
|
6184 |
|
6185 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
6186 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6187 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6188 |
msgid "hours"
|
6189 |
msgstr "Stunden"
|
6190 |
|
6191 |
+
#: app/libraries/factory.php:337
|
6192 |
msgid "minute"
|
6193 |
msgstr "Minute"
|
6194 |
|
6195 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
6196 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6197 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6198 |
msgid "minutes"
|
6199 |
msgstr "Minuten"
|
6200 |
|
6201 |
+
#: app/libraries/factory.php:339
|
6202 |
msgid "second"
|
6203 |
msgstr "Sekunde"
|
6204 |
|
6205 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
6206 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6207 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6208 |
msgid "seconds"
|
6209 |
msgstr "Sekunden"
|
6210 |
|
6211 |
+
#: app/libraries/factory.php:383
|
6212 |
msgid "MEC Single Sidebar"
|
6213 |
msgstr "MEC Single Sidebar"
|
6214 |
|
6215 |
+
#: app/libraries/factory.php:384
|
6216 |
msgid "Custom sidebar for single and modal page of MEC."
|
6217 |
msgstr "Custom sidebar for single and modal page of MEC."
|
6218 |
|
6277 |
msgid "Slider View"
|
6278 |
msgstr "Slideransicht"
|
6279 |
|
6280 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
6281 |
msgid "SU"
|
6282 |
msgstr "SO"
|
6283 |
|
6284 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
6285 |
msgid "MO"
|
6286 |
msgstr "MO"
|
6287 |
|
6288 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
6289 |
msgid "TU"
|
6290 |
msgstr "DI"
|
6291 |
|
6292 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
6293 |
msgid "WE"
|
6294 |
msgstr "MI"
|
6295 |
|
6296 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
6297 |
msgid "TH"
|
6298 |
msgstr "DO"
|
6299 |
|
6300 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
6301 |
msgid "FR"
|
6302 |
msgstr "FR"
|
6303 |
|
6304 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
6305 |
msgid "SA"
|
6306 |
msgstr "SA"
|
6307 |
|
6455 |
msgid "Request is not valid."
|
6456 |
msgstr "Die Anfrage ist ungültig!"
|
6457 |
|
6458 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
6459 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
6460 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
6461 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
6462 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
6463 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
6464 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
6465 |
msgid "Sort"
|
6466 |
msgstr "Sortieren"
|
6467 |
|
6468 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
6469 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
6470 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
6471 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
6472 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
6473 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
6474 |
msgid "Required Field"
|
6475 |
msgstr "Pflichtfeld"
|
6476 |
|
6477 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
6478 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
6479 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
6480 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
6481 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
6482 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
6483 |
msgid "Insert a label for this field"
|
6484 |
msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
|
6485 |
|
6486 |
+
#: app/libraries/main.php:2411
|
6487 |
msgid "HTML and shortcode are allowed."
|
6488 |
msgstr "HTML und shortcodes sind erlaubt."
|
6489 |
|
6490 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
6491 |
+
#: app/libraries/main.php:2542
|
6492 |
msgid "Option"
|
6493 |
msgstr "Option"
|
6494 |
|
6495 |
+
#: app/libraries/main.php:2576
|
6496 |
#, php-format
|
6497 |
msgid "Instead of %s, the page title with a link will be show."
|
6498 |
msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
|
6499 |
|
6500 |
+
#: app/libraries/main.php:2578
|
6501 |
msgid "Agreement Page"
|
6502 |
msgstr "Zustimmungsseite"
|
6503 |
|
6504 |
+
#: app/libraries/main.php:2589
|
6505 |
msgid "Checked by default"
|
6506 |
msgstr ""
|
6507 |
|
6508 |
+
#: app/libraries/main.php:2590
|
6509 |
msgid "Unchecked by default"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: app/libraries/main.php:2613
|
6513 |
msgid "Insert a label for this option"
|
6514 |
msgstr "Ein neues Label für diese Option einfügen"
|
6515 |
|
6516 |
+
#: app/libraries/main.php:2628
|
6517 |
msgid "Free"
|
6518 |
msgstr "kostenfrei"
|
6519 |
|
6520 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6521 |
#, fuzzy
|
6522 |
#| msgid "M.E. Calendar"
|
6523 |
msgid "M.E. Calender"
|
6524 |
msgstr "M.E. Calender"
|
6525 |
|
6526 |
+
#: app/libraries/main.php:3349
|
6527 |
#, php-format
|
6528 |
msgid "Copy of %s"
|
6529 |
msgstr "Kopie von %s"
|
6530 |
|
6531 |
+
#: app/libraries/main.php:4022
|
6532 |
msgid "Booked an event."
|
6533 |
msgstr "Eine Veranstaltung wurde gebucht."
|
6534 |
|
6535 |
+
#: app/libraries/main.php:4063
|
6536 |
#, php-format
|
6537 |
msgid "%s booked %s event."
|
6538 |
msgstr "%s gebuchtes %s Event"
|
6539 |
|
6540 |
+
#: app/libraries/main.php:4506
|
6541 |
msgid "Taxonomies"
|
6542 |
msgstr "Klassifizierung "
|
6543 |
|
6544 |
+
#: app/libraries/main.php:4508
|
6545 |
msgid "Category Plural Label"
|
6546 |
msgstr "Kategorien"
|
6547 |
|
6548 |
+
#: app/libraries/main.php:4509
|
6549 |
msgid "Category Singular Label"
|
6550 |
msgstr "Kategorie"
|
6551 |
|
6552 |
+
#: app/libraries/main.php:4510
|
6553 |
msgid "Label Plural Label"
|
6554 |
msgstr "Labels"
|
6555 |
|
6556 |
+
#: app/libraries/main.php:4511
|
6557 |
msgid "Label Singular Label"
|
6558 |
msgstr "Label"
|
6559 |
|
6560 |
+
#: app/libraries/main.php:4511
|
6561 |
msgid "label"
|
6562 |
msgstr "label"
|
6563 |
|
6564 |
+
#: app/libraries/main.php:4512
|
6565 |
msgid "Location Plural Label"
|
6566 |
msgstr "Veranstaltungsorte"
|
6567 |
|
6568 |
+
#: app/libraries/main.php:4513
|
6569 |
msgid "Location Singular Label"
|
6570 |
msgstr "Veranstaltungsort"
|
6571 |
|
6572 |
+
#: app/libraries/main.php:4514
|
6573 |
msgid "Organizer Plural Label"
|
6574 |
msgstr "Veranstalter"
|
6575 |
|
6576 |
+
#: app/libraries/main.php:4515
|
6577 |
msgid "Organizer Singular Label"
|
6578 |
msgstr "Veranstalter"
|
6579 |
|
6580 |
+
#: app/libraries/main.php:4516
|
6581 |
#, fuzzy
|
6582 |
#| msgid "Label Plural Label"
|
6583 |
msgid "Speaker Plural Label"
|
6584 |
msgstr "Labels"
|
6585 |
|
6586 |
+
#: app/libraries/main.php:4517
|
6587 |
#, fuzzy
|
6588 |
#| msgid "Label Singular Label"
|
6589 |
msgid "Speaker Singular Label"
|
6590 |
msgstr "Label"
|
6591 |
|
6592 |
+
#: app/libraries/main.php:4523
|
6593 |
msgid "Sunday abbreviation"
|
6594 |
msgstr "Sonntag Abkürzung"
|
6595 |
|
6596 |
+
#: app/libraries/main.php:4524
|
6597 |
msgid "Monday abbreviation"
|
6598 |
msgstr "Montag Abkürzung"
|
6599 |
|
6600 |
+
#: app/libraries/main.php:4525
|
6601 |
msgid "Tuesday abbreviation"
|
6602 |
msgstr "Dienstag Abkürzung"
|
6603 |
|
6604 |
+
#: app/libraries/main.php:4526
|
6605 |
msgid "Wednesday abbreviation"
|
6606 |
msgstr "Mittwoch Abkürzung"
|
6607 |
|
6608 |
+
#: app/libraries/main.php:4527
|
6609 |
msgid "Thursday abbreviation"
|
6610 |
msgstr "Donnerstag Abkürzung"
|
6611 |
|
6612 |
+
#: app/libraries/main.php:4528
|
6613 |
msgid "Friday abbreviation"
|
6614 |
msgstr "Freitag Abkürzung"
|
6615 |
|
6616 |
+
#: app/libraries/main.php:4529
|
6617 |
msgid "Saturday abbreviation"
|
6618 |
msgstr "Samstag Abkürzung "
|
6619 |
|
6620 |
+
#: app/libraries/main.php:4533
|
6621 |
msgid "Others"
|
6622 |
msgstr "Andere"
|
6623 |
|
6624 |
+
#: app/libraries/main.php:4535
|
6625 |
msgid "Booking Success Message"
|
6626 |
msgstr "Buchung erfolgreich Mitteilung"
|
6627 |
|
6628 |
+
#: app/libraries/main.php:4535
|
6629 |
msgid ""
|
6630 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6631 |
"needed, please check your email."
|
6633 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
6634 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
6635 |
|
6636 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6637 |
msgid "Register Button"
|
6638 |
msgstr "Register Button"
|
6639 |
|
6640 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6641 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6642 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6643 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6644 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6645 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6646 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6647 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6648 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6649 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6654 |
msgid "REGISTER"
|
6655 |
msgstr "ANMELDEN"
|
6656 |
|
6657 |
+
#: app/libraries/main.php:4537
|
6658 |
msgid "View Detail Button"
|
6659 |
msgstr "Ansicht Detail Button"
|
6660 |
|
6661 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6662 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6663 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6664 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6669 |
msgid "View Detail"
|
6670 |
msgstr "Details "
|
6671 |
|
6672 |
+
#: app/libraries/main.php:4538
|
6673 |
msgid "Event Detail Button"
|
6674 |
msgstr "Event Detail Button"
|
6675 |
|
6676 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6677 |
msgid "Event Detail"
|
6678 |
msgstr "Veranstaltungsdetails"
|
6679 |
|
6680 |
+
#: app/libraries/main.php:4540
|
6681 |
msgid "More Info Link"
|
6682 |
msgstr "Link Mehr Informationen"
|
6683 |
|
6684 |
+
#: app/libraries/main.php:4543
|
6685 |
msgid "Ticket (Singular)"
|
6686 |
msgstr "Ticket"
|
6687 |
|
6688 |
+
#: app/libraries/main.php:4544
|
6689 |
msgid "Tickets (Plural)"
|
6690 |
msgstr "Tickets"
|
6691 |
|
6692 |
+
#: app/libraries/main.php:4630
|
6693 |
msgid "EventON"
|
6694 |
msgstr "EventON"
|
6695 |
|
6696 |
+
#: app/libraries/main.php:4631
|
6697 |
msgid "The Events Calendar"
|
6698 |
msgstr "The Events Calendar"
|
6699 |
|
6700 |
+
#: app/libraries/main.php:4632
|
6701 |
msgid "Events Schedule WP Plugin"
|
6702 |
msgstr "Event Zeitplan WP-Plugin"
|
6703 |
|
6704 |
+
#: app/libraries/main.php:4633
|
6705 |
msgid "Calendarize It"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6709 |
msgid "Confirmed"
|
6710 |
msgstr "Bestätigt"
|
6711 |
|
6712 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6713 |
msgid "Rejected"
|
6714 |
msgstr "Abgelehnt"
|
6715 |
|
6716 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6717 |
msgid "Pending"
|
6718 |
msgstr "Ausstehend"
|
6719 |
|
6720 |
+
#: app/libraries/main.php:4757
|
6721 |
msgid "Waiting"
|
6722 |
msgstr "in Bearbeitung"
|
6723 |
|
6724 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6725 |
msgid "Skin controller does not exist."
|
6726 |
msgstr "Skin contoller existiert nicht."
|
6727 |
|
6729 |
msgid "Please verify your email."
|
6730 |
msgstr "Bitte bestätigen Sie Ihre email."
|
6731 |
|
6732 |
+
#: app/libraries/notifications.php:125
|
6733 |
msgid "Your booking is received."
|
6734 |
msgstr "Ihre Buchung ist eingegangen"
|
6735 |
|
6736 |
+
#: app/libraries/notifications.php:193
|
6737 |
msgid "Your booking is confirmed."
|
6738 |
msgstr "Ihre Buchung wurde bestätigt."
|
6739 |
|
6740 |
+
#: app/libraries/notifications.php:282
|
6741 |
#, fuzzy
|
6742 |
#| msgid "Your booking cannot be canceled."
|
6743 |
msgid "booking canceled."
|
6744 |
msgstr "Ihre Buchung kann nicht storniert werden."
|
6745 |
|
6746 |
+
#: app/libraries/notifications.php:337
|
6747 |
msgid "A new booking is received."
|
6748 |
msgstr "Eine neue Buchung ist eingegangen."
|
6749 |
|
6750 |
+
#: app/libraries/notifications.php:488
|
6751 |
msgid "A new event is added."
|
6752 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
6753 |
|
6754 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6755 |
msgid "to"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6759 |
msgid "+ Add to Google Calendar"
|
6760 |
msgstr "+ zum Google Calendar hinzufügen"
|
6761 |
|
6762 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6763 |
msgid "+ iCal export"
|
6764 |
msgstr "+ zu iCal exportieren"
|
6765 |
|
6766 |
+
#: app/libraries/notifications.php:752
|
6767 |
msgid "Yes"
|
6768 |
msgstr "Ja"
|
6769 |
|
6770 |
+
#: app/libraries/notifications.php:752
|
6771 |
msgid "No"
|
6772 |
msgstr "Nein"
|
6773 |
|
6774 |
+
#: app/libraries/skins.php:958
|
6775 |
msgid "Ignore month and years"
|
6776 |
msgstr "Monat und Jahre ignorieren"
|
6777 |
|
6853 |
msgid "Get Directions"
|
6854 |
msgstr "Wegbeschreibung"
|
6855 |
|
6856 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6857 |
msgid "Share this event"
|
6858 |
msgstr "Diese Veranstaltung teilen"
|
6859 |
|
6880 |
msgid "Go to occurrence page"
|
6881 |
msgstr "Zum Event"
|
6882 |
|
6883 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6884 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6885 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6886 |
msgid "Time"
|
6992 |
msgid "List"
|
6993 |
msgstr "Liste / Listenansicht"
|
6994 |
|
6995 |
+
#: app/skins/masonry.php:238
|
6996 |
msgid "All"
|
6997 |
msgstr "Alle"
|
6998 |
|
7010 |
msgid "No Events"
|
7011 |
msgstr "Keine Veranstaltungen"
|
7012 |
|
7013 |
+
#: app/skins/single.php:204
|
7014 |
msgid "Home"
|
7015 |
msgstr ""
|
7016 |
|
7017 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
7018 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
7019 |
#: app/skins/single/modern.php:256
|
7020 |
msgid "Sold out!"
|
7021 |
msgstr "Ausverkauft!"
|
7022 |
|
7023 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
7024 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
7025 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
7026 |
#: app/skins/single/modern.php:41
|
7027 |
msgid "Phone"
|
7028 |
msgstr "Phone"
|
7029 |
|
7030 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
7031 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
7032 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
7033 |
#: app/skins/single/modern.php:55
|
7034 |
msgid "Website"
|
7035 |
msgstr "Website"
|
7036 |
|
7037 |
+
#: app/skins/single.php:912
|
7038 |
#, fuzzy
|
7039 |
#| msgid "No Search Options"
|
7040 |
msgid "Speakers:"
|
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-08-
|
5 |
-
"PO-Revision-Date: 2019-08-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -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"
|
@@ -387,9 +387,9 @@ msgstr ""
|
|
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:
|
391 |
-
#: app/libraries/main.php:
|
392 |
-
#: app/skins/single.php:
|
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"
|
@@ -397,7 +397,7 @@ 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 |
|
@@ -472,13 +472,13 @@ msgstr ""
|
|
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:
|
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:104 app/skins/single/default.php:316
|
483 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
484 |
msgid "Cost"
|
@@ -495,7 +495,7 @@ msgstr ""
|
|
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:
|
499 |
#: app/modules/booking/steps/form.php:37
|
500 |
msgid "Name"
|
501 |
msgstr ""
|
@@ -506,10 +506,10 @@ msgstr ""
|
|
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:
|
510 |
-
#: app/libraries/notifications.php:
|
511 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
512 |
-
#: app/skins/single.php:
|
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"
|
@@ -649,14 +649,14 @@ msgstr ""
|
|
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:
|
653 |
-
#: app/features/mec/settings.php:
|
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:
|
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
|
@@ -852,9 +852,9 @@ 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:
|
856 |
#: app/modules/booking/steps/tickets.php:22
|
857 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
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"
|
@@ -872,7 +872,7 @@ msgid "Day 1"
|
|
872 |
msgstr ""
|
873 |
|
874 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
875 |
-
#: app/skins/single.php:
|
876 |
msgid "Hourly Schedule"
|
877 |
msgstr ""
|
878 |
|
@@ -911,14 +911,14 @@ msgstr ""
|
|
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:
|
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 |
-
#: app/libraries/main.php:
|
921 |
-
#: app/libraries/main.php:
|
922 |
msgid "Remove"
|
923 |
msgstr ""
|
924 |
|
@@ -951,7 +951,7 @@ msgstr ""
|
|
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:
|
955 |
#: app/modules/speakers/details.php:18
|
956 |
msgid "Speakers"
|
957 |
msgstr ""
|
@@ -966,7 +966,7 @@ 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:
|
970 |
msgid "Event Link"
|
971 |
msgstr ""
|
972 |
|
@@ -987,8 +987,8 @@ msgid "URL Shortener"
|
|
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:
|
991 |
-
#: app/skins/single.php:
|
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
|
@@ -1047,7 +1047,7 @@ msgid "12"
|
|
1047 |
msgstr ""
|
1048 |
|
1049 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1050 |
-
#: app/libraries/main.php:
|
1051 |
msgid "Tickets"
|
1052 |
msgstr ""
|
1053 |
|
@@ -1119,8 +1119,8 @@ msgstr ""
|
|
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:
|
1123 |
-
#: app/libraries/skins.php:
|
1124 |
msgid "Label"
|
1125 |
msgstr ""
|
1126 |
|
@@ -1189,44 +1189,44 @@ 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:
|
1193 |
msgid "MEC Name"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1197 |
-
#: app/libraries/main.php:
|
1198 |
msgid "MEC Email"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1202 |
-
#: app/libraries/main.php:
|
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:
|
1210 |
msgid "Tel"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1214 |
-
#: app/libraries/main.php:
|
1215 |
msgid "File"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1219 |
-
#: app/libraries/main.php:
|
1220 |
msgid "Textarea"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1224 |
-
#: app/libraries/main.php:
|
1225 |
msgid "Checkboxes"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1229 |
-
#: app/libraries/main.php:
|
1230 |
msgid "Radio Buttons"
|
1231 |
msgstr ""
|
1232 |
|
@@ -1299,17 +1299,17 @@ msgstr ""
|
|
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:
|
1303 |
msgid "Dropdown"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1307 |
-
#: app/libraries/main.php:
|
1308 |
msgid "Agreement"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1312 |
-
#: app/libraries/main.php:
|
1313 |
msgid "Paragraph"
|
1314 |
msgstr ""
|
1315 |
|
@@ -1347,10 +1347,10 @@ msgstr ""
|
|
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:
|
1351 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1352 |
-
#: app/libraries/skins.php:
|
1353 |
-
#: app/skins/single.php:
|
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"
|
@@ -1369,11 +1369,11 @@ msgstr ""
|
|
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:
|
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:
|
1376 |
-
#: app/libraries/skins.php:
|
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
|
@@ -1524,8 +1524,8 @@ 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:
|
1528 |
-
#: app/skins/single.php:
|
1529 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1530 |
#: app/skins/single/modern.php:214
|
1531 |
msgid "Labels"
|
@@ -1845,7 +1845,7 @@ 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:
|
1849 |
msgid "Checking ..."
|
1850 |
msgstr ""
|
1851 |
|
@@ -2210,7 +2210,7 @@ msgid "Featured"
|
|
2210 |
msgstr ""
|
2211 |
|
2212 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2213 |
-
#: app/libraries/main.php:
|
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
|
@@ -2245,7 +2245,7 @@ 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:
|
2249 |
msgid "Locations"
|
2250 |
msgstr ""
|
2251 |
|
@@ -2350,7 +2350,7 @@ msgstr ""
|
|
2350 |
msgid "Don't show map in single event page"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2354 |
msgid "Other Locations"
|
2355 |
msgstr ""
|
2356 |
|
@@ -2394,7 +2394,7 @@ 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:
|
2398 |
msgid "Organizers"
|
2399 |
msgstr ""
|
2400 |
|
@@ -2513,9 +2513,9 @@ msgstr ""
|
|
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:
|
2517 |
-
#: app/features/mec/settings.php:
|
2518 |
-
#: app/features/mec/settings.php:
|
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
|
@@ -2604,7 +2604,7 @@ msgstr ""
|
|
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:
|
2608 |
msgid "Related Events"
|
2609 |
msgstr ""
|
2610 |
|
@@ -2727,7 +2727,7 @@ msgstr ""
|
|
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:
|
2731 |
msgid "Booking Reminder"
|
2732 |
msgstr ""
|
2733 |
|
@@ -2897,7 +2897,7 @@ msgstr ""
|
|
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:
|
2901 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
2902 |
msgid "Saved"
|
2903 |
msgstr ""
|
@@ -2905,7 +2905,7 @@ msgstr ""
|
|
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:
|
2909 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
2910 |
msgid "Settings Saved!"
|
2911 |
msgstr ""
|
@@ -2913,14 +2913,14 @@ msgstr ""
|
|
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:
|
2917 |
-
#: app/features/mec/settings.php:
|
2918 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
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:
|
2924 |
#: app/features/mec/single.php:502
|
2925 |
msgid "Please Refresh Page"
|
2926 |
msgstr ""
|
@@ -3822,9 +3822,9 @@ msgstr ""
|
|
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:
|
3826 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
3827 |
-
#: app/libraries/main.php:
|
3828 |
msgid "Speaker"
|
3829 |
msgstr ""
|
3830 |
|
@@ -3838,8 +3838,8 @@ msgstr ""
|
|
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:
|
3842 |
-
#: app/libraries/skins.php:
|
3843 |
msgid "Tag"
|
3844 |
msgstr ""
|
3845 |
|
@@ -3915,12 +3915,12 @@ 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:
|
3919 |
msgid "API Key"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
3923 |
-
#: app/features/mec/settings.php:
|
3924 |
msgid "Required!"
|
3925 |
msgstr ""
|
3926 |
|
@@ -4492,7 +4492,7 @@ msgid ""
|
|
4492 |
msgstr ""
|
4493 |
|
4494 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4495 |
-
#: app/libraries/main.php:
|
4496 |
msgid "Weekdays"
|
4497 |
msgstr ""
|
4498 |
|
@@ -4779,57 +4779,75 @@ msgid ""
|
|
4779 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
-
#: app/features/mec/settings.php:
|
4783 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: app/features/mec/settings.php:
|
4787 |
msgid "Enable Mailchimp Integration"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: app/features/mec/settings.php:
|
4791 |
msgid "List ID"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: app/features/mec/settings.php:
|
4795 |
msgid "Subscription Status"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: app/features/mec/settings.php:
|
4799 |
msgid "Subscribe automatically"
|
4800 |
msgstr ""
|
4801 |
|
4802 |
-
#: app/features/mec/settings.php:
|
4803 |
msgid "Subscribe by verification"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: app/features/mec/settings.php:
|
4807 |
msgid ""
|
4808 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
4809 |
"by mailchimp for subscription verification."
|
4810 |
msgstr ""
|
4811 |
|
4812 |
-
#: app/features/mec/settings.php:
|
4813 |
msgid "Upload Field Options"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
-
#: app/features/mec/settings.php:
|
4817 |
msgid "Mime types"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: app/features/mec/settings.php:
|
4821 |
msgid "Split mime types with \",\"."
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: app/features/mec/settings.php:
|
4825 |
msgid "Default: jpeg,jpg,png,pdf"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
-
#: app/features/mec/settings.php:
|
4829 |
msgid "Maximum file size"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: app/features/mec/settings.php:
|
4833 |
msgid "The unit is Megabyte \"MB\""
|
4834 |
msgstr ""
|
4835 |
|
@@ -5452,8 +5470,8 @@ msgstr ""
|
|
5452 |
msgid "eg. https://webnus.net"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5456 |
-
#: app/skins/single.php:
|
5457 |
msgid "Other Organizers"
|
5458 |
msgstr ""
|
5459 |
|
@@ -5471,7 +5489,7 @@ msgstr ""
|
|
5471 |
msgid "#"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5475 |
msgid "Status"
|
5476 |
msgstr ""
|
5477 |
|
@@ -5489,7 +5507,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5489 |
msgstr ""
|
5490 |
|
5491 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5492 |
-
#: app/libraries/main.php:
|
5493 |
msgid "Ticket"
|
5494 |
msgstr ""
|
5495 |
|
@@ -5501,10 +5519,35 @@ msgstr ""
|
|
5501 |
msgid "No bookings found!"
|
5502 |
msgstr ""
|
5503 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5504 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5505 |
msgid "Search"
|
5506 |
msgstr ""
|
5507 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5508 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5509 |
#: app/features/speakers.php:248
|
5510 |
msgid "Job Title"
|
@@ -5555,11 +5598,11 @@ msgstr ""
|
|
5555 |
msgid "%s Price"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: app/libraries/book.php:
|
5559 |
msgid "Discount"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: app/libraries/book.php:
|
5563 |
#: app/modules/booking/default.php:401
|
5564 |
msgid "Download Invoice"
|
5565 |
msgstr ""
|
@@ -5583,51 +5626,51 @@ msgctxt "plugin link"
|
|
5583 |
msgid "Upgrade"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
-
#: app/libraries/factory.php:
|
5587 |
msgid "day"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: app/libraries/factory.php:
|
5591 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5592 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5593 |
msgid "days"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: app/libraries/factory.php:
|
5597 |
msgid "hour"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: app/libraries/factory.php:
|
5601 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5602 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5603 |
msgid "hours"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: app/libraries/factory.php:
|
5607 |
msgid "minute"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: app/libraries/factory.php:
|
5611 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5612 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5613 |
msgid "minutes"
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
#: app/libraries/factory.php:
|
5617 |
msgid "second"
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#: app/libraries/factory.php:
|
5621 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
5622 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
5623 |
msgid "seconds"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: app/libraries/factory.php:
|
5627 |
msgid "MEC Single Sidebar"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
-
#: app/libraries/factory.php:
|
5631 |
msgid "Custom sidebar for single and modal page of MEC."
|
5632 |
msgstr ""
|
5633 |
|
@@ -5690,31 +5733,31 @@ msgstr ""
|
|
5690 |
msgid "Slider View"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5694 |
msgid "SU"
|
5695 |
msgstr ""
|
5696 |
|
5697 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5698 |
msgid "MO"
|
5699 |
msgstr ""
|
5700 |
|
5701 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5702 |
msgid "TU"
|
5703 |
msgstr ""
|
5704 |
|
5705 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5706 |
msgid "WE"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5710 |
msgid "TH"
|
5711 |
msgstr ""
|
5712 |
|
5713 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5714 |
msgid "FR"
|
5715 |
msgstr ""
|
5716 |
|
5717 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
5718 |
msgid "SA"
|
5719 |
msgstr ""
|
5720 |
|
@@ -5860,187 +5903,187 @@ msgstr ""
|
|
5860 |
msgid "Request is not valid."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: app/libraries/main.php:
|
5864 |
-
#: app/libraries/main.php:
|
5865 |
-
#: app/libraries/main.php:
|
5866 |
-
#: app/libraries/main.php:
|
5867 |
-
#: app/libraries/main.php:
|
5868 |
-
#: app/libraries/main.php:
|
5869 |
-
#: app/libraries/main.php:
|
5870 |
msgid "Sort"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: app/libraries/main.php:
|
5874 |
-
#: app/libraries/main.php:
|
5875 |
-
#: app/libraries/main.php:
|
5876 |
-
#: app/libraries/main.php:
|
5877 |
-
#: app/libraries/main.php:
|
5878 |
-
#: app/libraries/main.php:
|
5879 |
msgid "Required Field"
|
5880 |
msgstr ""
|
5881 |
|
5882 |
-
#: app/libraries/main.php:
|
5883 |
-
#: app/libraries/main.php:
|
5884 |
-
#: app/libraries/main.php:
|
5885 |
-
#: app/libraries/main.php:
|
5886 |
-
#: app/libraries/main.php:
|
5887 |
-
#: app/libraries/main.php:
|
5888 |
msgid "Insert a label for this field"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
-
#: app/libraries/main.php:
|
5892 |
msgid "HTML and shortcode are allowed."
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#: app/libraries/main.php:
|
5896 |
-
#: app/libraries/main.php:
|
5897 |
msgid "Option"
|
5898 |
msgstr ""
|
5899 |
|
5900 |
-
#: app/libraries/main.php:
|
5901 |
#, php-format
|
5902 |
msgid "Instead of %s, the page title with a link will be show."
|
5903 |
msgstr ""
|
5904 |
|
5905 |
-
#: app/libraries/main.php:
|
5906 |
msgid "Agreement Page"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
-
#: app/libraries/main.php:
|
5910 |
msgid "Checked by default"
|
5911 |
msgstr ""
|
5912 |
|
5913 |
-
#: app/libraries/main.php:
|
5914 |
msgid "Unchecked by default"
|
5915 |
msgstr ""
|
5916 |
|
5917 |
-
#: app/libraries/main.php:
|
5918 |
msgid "Insert a label for this option"
|
5919 |
msgstr ""
|
5920 |
|
5921 |
-
#: app/libraries/main.php:
|
5922 |
msgid "Free"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
-
#: app/libraries/main.php:
|
5926 |
msgid "M.E. Calender"
|
5927 |
msgstr ""
|
5928 |
|
5929 |
-
#: app/libraries/main.php:
|
5930 |
#, php-format
|
5931 |
msgid "Copy of %s"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
-
#: app/libraries/main.php:
|
5935 |
msgid "Booked an event."
|
5936 |
msgstr ""
|
5937 |
|
5938 |
-
#: app/libraries/main.php:
|
5939 |
#, php-format
|
5940 |
msgid "%s booked %s event."
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#: app/libraries/main.php:
|
5944 |
msgid "Taxonomies"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
-
#: app/libraries/main.php:
|
5948 |
msgid "Category Plural Label"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: app/libraries/main.php:
|
5952 |
msgid "Category Singular Label"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: app/libraries/main.php:
|
5956 |
msgid "Label Plural Label"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: app/libraries/main.php:
|
5960 |
msgid "Label Singular Label"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: app/libraries/main.php:
|
5964 |
msgid "label"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: app/libraries/main.php:
|
5968 |
msgid "Location Plural Label"
|
5969 |
msgstr ""
|
5970 |
|
5971 |
-
#: app/libraries/main.php:
|
5972 |
msgid "Location Singular Label"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: app/libraries/main.php:
|
5976 |
msgid "Organizer Plural Label"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: app/libraries/main.php:
|
5980 |
msgid "Organizer Singular Label"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: app/libraries/main.php:
|
5984 |
msgid "Speaker Plural Label"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#: app/libraries/main.php:
|
5988 |
msgid "Speaker Singular Label"
|
5989 |
msgstr ""
|
5990 |
|
5991 |
-
#: app/libraries/main.php:
|
5992 |
msgid "Sunday abbreviation"
|
5993 |
msgstr ""
|
5994 |
|
5995 |
-
#: app/libraries/main.php:
|
5996 |
msgid "Monday abbreviation"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
-
#: app/libraries/main.php:
|
6000 |
msgid "Tuesday abbreviation"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
-
#: app/libraries/main.php:
|
6004 |
msgid "Wednesday abbreviation"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#: app/libraries/main.php:
|
6008 |
msgid "Thursday abbreviation"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#: app/libraries/main.php:
|
6012 |
msgid "Friday abbreviation"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
-
#: app/libraries/main.php:
|
6016 |
msgid "Saturday abbreviation"
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
#: app/libraries/main.php:
|
6020 |
msgid "Others"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
-
#: app/libraries/main.php:
|
6024 |
msgid "Booking Success Message"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
-
#: app/libraries/main.php:
|
6028 |
msgid ""
|
6029 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6030 |
"needed, please check your email."
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#: app/libraries/main.php:
|
6034 |
msgid "Register Button"
|
6035 |
msgstr ""
|
6036 |
|
6037 |
-
#: app/libraries/main.php:
|
6038 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6039 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6040 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6041 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6042 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6043 |
-
#: app/skins/single.php:
|
6044 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6045 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6046 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6051,11 +6094,11 @@ msgstr ""
|
|
6051 |
msgid "REGISTER"
|
6052 |
msgstr ""
|
6053 |
|
6054 |
-
#: app/libraries/main.php:
|
6055 |
msgid "View Detail Button"
|
6056 |
msgstr ""
|
6057 |
|
6058 |
-
#: app/libraries/main.php:
|
6059 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6060 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6061 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6066,59 +6109,59 @@ msgstr ""
|
|
6066 |
msgid "View Detail"
|
6067 |
msgstr ""
|
6068 |
|
6069 |
-
#: app/libraries/main.php:
|
6070 |
msgid "Event Detail Button"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
-
#: app/libraries/main.php:
|
6074 |
msgid "Event Detail"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
-
#: app/libraries/main.php:
|
6078 |
msgid "More Info Link"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
-
#: app/libraries/main.php:
|
6082 |
msgid "Ticket (Singular)"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
-
#: app/libraries/main.php:
|
6086 |
msgid "Tickets (Plural)"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: app/libraries/main.php:
|
6090 |
msgid "EventON"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: app/libraries/main.php:
|
6094 |
msgid "The Events Calendar"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
-
#: app/libraries/main.php:
|
6098 |
msgid "Events Schedule WP Plugin"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#: app/libraries/main.php:
|
6102 |
msgid "Calendarize It"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: app/libraries/main.php:
|
6106 |
msgid "Confirmed"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: app/libraries/main.php:
|
6110 |
msgid "Rejected"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: app/libraries/main.php:
|
6114 |
msgid "Pending"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: app/libraries/main.php:
|
6118 |
msgid "Waiting"
|
6119 |
msgstr ""
|
6120 |
|
6121 |
-
#: app/libraries/main.php:
|
6122 |
msgid "Skin controller does not exist."
|
6123 |
msgstr ""
|
6124 |
|
@@ -6126,55 +6169,47 @@ msgstr ""
|
|
6126 |
msgid "Please verify your email."
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#: app/libraries/notifications.php:
|
6130 |
msgid "Your booking is received."
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: app/libraries/notifications.php:
|
6134 |
msgid "Your booking is confirmed."
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: app/libraries/notifications.php:
|
6138 |
msgid "booking canceled."
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: app/libraries/notifications.php:
|
6142 |
msgid "A new booking is received."
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: app/libraries/notifications.php:
|
6146 |
msgid "A new event is added."
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: app/libraries/notifications.php:
|
6150 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6151 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6152 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6153 |
-
#: app/skins/single/modern.php:184
|
6154 |
-
msgid "All of the day"
|
6155 |
-
msgstr ""
|
6156 |
-
|
6157 |
-
#: app/libraries/notifications.php:611
|
6158 |
msgid "to"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
-
#: app/libraries/notifications.php:
|
6162 |
msgid "+ Add to Google Calendar"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
-
#: app/libraries/notifications.php:
|
6166 |
msgid "+ iCal export"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
-
#: app/libraries/notifications.php:
|
6170 |
msgid "Yes"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
-
#: app/libraries/notifications.php:
|
6174 |
msgid "No"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
-
#: app/libraries/skins.php:
|
6178 |
msgid "Ignore month and years"
|
6179 |
msgstr ""
|
6180 |
|
@@ -6251,7 +6286,7 @@ msgstr ""
|
|
6251 |
msgid "Get Directions"
|
6252 |
msgstr ""
|
6253 |
|
6254 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6255 |
msgid "Share this event"
|
6256 |
msgstr ""
|
6257 |
|
@@ -6278,7 +6313,7 @@ msgstr ""
|
|
6278 |
msgid "Go to occurrence page"
|
6279 |
msgstr ""
|
6280 |
|
6281 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6282 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6283 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6284 |
msgid "Time"
|
@@ -6384,7 +6419,7 @@ msgstr ""
|
|
6384 |
msgid "List"
|
6385 |
msgstr ""
|
6386 |
|
6387 |
-
#: app/skins/masonry.php:
|
6388 |
msgid "All"
|
6389 |
msgstr ""
|
6390 |
|
@@ -6402,31 +6437,31 @@ msgstr ""
|
|
6402 |
msgid "No Events"
|
6403 |
msgstr ""
|
6404 |
|
6405 |
-
#: app/skins/single.php:
|
6406 |
msgid "Home"
|
6407 |
msgstr ""
|
6408 |
|
6409 |
-
#: app/skins/single.php:
|
6410 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6411 |
#: app/skins/single/modern.php:256
|
6412 |
msgid "Sold out!"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
-
#: app/skins/single.php:
|
6416 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6417 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6418 |
#: app/skins/single/modern.php:41
|
6419 |
msgid "Phone"
|
6420 |
msgstr ""
|
6421 |
|
6422 |
-
#: app/skins/single.php:
|
6423 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6424 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6425 |
#: app/skins/single/modern.php:55
|
6426 |
msgid "Website"
|
6427 |
msgstr ""
|
6428 |
|
6429 |
-
#: app/skins/single.php:
|
6430 |
msgid "Speakers:"
|
6431 |
msgstr ""
|
6432 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-13 16:45+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
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:952
|
325 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
326 |
#: app/features/mec/styling.php:59
|
327 |
msgid "Mailchimp Integration"
|
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:905 app/features/mec/single.php:390
|
391 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
392 |
+
#: app/skins/single.php:530 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"
|
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:4508
|
401 |
msgid "Categories"
|
402 |
msgstr ""
|
403 |
|
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:4541
|
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:4542 app/skins/single.php:553
|
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"
|
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:736
|
499 |
#: app/modules/booking/steps/form.php:37
|
500 |
msgid "Name"
|
501 |
msgstr ""
|
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:2261
|
510 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
511 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
512 |
+
#: app/skins/single.php:835 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"
|
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:967
|
653 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
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:628
|
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
|
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:2319
|
856 |
#: app/modules/booking/steps/tickets.php:22
|
857 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
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"
|
872 |
msgstr ""
|
873 |
|
874 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
875 |
+
#: app/skins/single.php:898
|
876 |
msgid "Hourly Schedule"
|
877 |
msgstr ""
|
878 |
|
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:2180
|
915 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
916 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
917 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
918 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
919 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
920 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
921 |
+
#: app/libraries/main.php:2612
|
922 |
msgid "Remove"
|
923 |
msgstr ""
|
924 |
|
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:4516
|
955 |
#: app/modules/speakers/details.php:18
|
956 |
msgid "Speakers"
|
957 |
msgstr ""
|
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:4539
|
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:4540
|
991 |
+
#: app/skins/single.php:627 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
|
1047 |
msgstr ""
|
1048 |
|
1049 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1050 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1051 |
msgid "Tickets"
|
1052 |
msgstr ""
|
1053 |
|
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:937 app/features/mec/single.php:408
|
1123 |
+
#: app/libraries/skins.php:937
|
1124 |
msgid "Label"
|
1125 |
msgstr ""
|
1126 |
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1192 |
+
#: app/libraries/main.php:2202
|
1193 |
msgid "MEC Name"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1197 |
+
#: app/libraries/main.php:2231
|
1198 |
msgid "MEC Email"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1202 |
+
#: app/libraries/main.php:2172
|
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:2348
|
1210 |
msgid "Tel"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1214 |
+
#: app/libraries/main.php:2290
|
1215 |
msgid "File"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1219 |
+
#: app/libraries/main.php:2377
|
1220 |
msgid "Textarea"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1224 |
+
#: app/libraries/main.php:2430
|
1225 |
msgid "Checkboxes"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1229 |
+
#: app/libraries/main.php:2474
|
1230 |
msgid "Radio Buttons"
|
1231 |
msgstr ""
|
1232 |
|
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:2518
|
1303 |
msgid "Dropdown"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1307 |
+
#: app/libraries/main.php:2565
|
1308 |
msgid "Agreement"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1312 |
+
#: app/libraries/main.php:2406
|
1313 |
msgid "Paragraph"
|
1314 |
msgstr ""
|
1315 |
|
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:911 app/features/mec/single.php:398
|
1351 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1352 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1353 |
+
#: app/skins/single.php:875 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"
|
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:917 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:4515
|
1376 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
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
|
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:4510
|
1528 |
+
#: app/skins/single.php:656 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"
|
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:1103 app/features/mec/single.php:480
|
1849 |
msgid "Checking ..."
|
1850 |
msgstr ""
|
1851 |
|
2210 |
msgstr ""
|
2211 |
|
2212 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2213 |
+
#: app/libraries/main.php:4756 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
|
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:4512
|
2249 |
msgid "Locations"
|
2250 |
msgstr ""
|
2251 |
|
2350 |
msgid "Don't show map in single event page"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2354 |
msgid "Other Locations"
|
2355 |
msgstr ""
|
2356 |
|
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:4514
|
2398 |
msgid "Organizers"
|
2399 |
msgstr ""
|
2400 |
|
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:1027
|
2517 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2518 |
+
#: app/features/mec/settings.php:1134 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
|
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:162
|
2608 |
msgid "Related Events"
|
2609 |
msgstr ""
|
2610 |
|
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:405
|
2731 |
msgid "Booking Reminder"
|
2732 |
msgstr ""
|
2733 |
|
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:1098 app/features/mec/single.php:475
|
2901 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
2902 |
msgid "Saved"
|
2903 |
msgstr ""
|
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:1099 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 ""
|
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:1101
|
2917 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
2918 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
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:1125
|
2924 |
#: app/features/mec/single.php:502
|
2925 |
msgid "Please Refresh Page"
|
2926 |
msgstr ""
|
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:924 app/features/mec/single.php:403
|
3826 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
3827 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
3828 |
msgid "Speaker"
|
3829 |
msgstr ""
|
3830 |
|
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:931 app/features/mec/single.php:412
|
3842 |
+
#: app/libraries/skins.php:911
|
3843 |
msgid "Tag"
|
3844 |
msgstr ""
|
3845 |
|
3915 |
msgstr ""
|
3916 |
|
3917 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
3918 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
3919 |
msgid "API Key"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
3923 |
+
#: app/features/mec/settings.php:980
|
3924 |
msgid "Required!"
|
3925 |
msgstr ""
|
3926 |
|
4492 |
msgstr ""
|
4493 |
|
4494 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4495 |
+
#: app/libraries/main.php:4521
|
4496 |
msgid "Weekdays"
|
4497 |
msgstr ""
|
4498 |
|
4779 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
+
#: app/features/mec/settings.php:890
|
4783 |
+
msgid "Ajax Live mode"
|
4784 |
+
msgstr ""
|
4785 |
+
|
4786 |
+
#: app/features/mec/settings.php:894
|
4787 |
+
msgid "Ajax mode"
|
4788 |
+
msgstr ""
|
4789 |
+
|
4790 |
+
#: app/features/mec/settings.php:895
|
4791 |
+
msgid ""
|
4792 |
+
"if you enable this option, search button disappeared and to use this "
|
4793 |
+
"feature, text input field must be enabled."
|
4794 |
+
msgstr ""
|
4795 |
+
|
4796 |
+
#: app/features/mec/settings.php:901
|
4797 |
+
msgid "Search bar fields"
|
4798 |
+
msgstr ""
|
4799 |
+
|
4800 |
+
#: app/features/mec/settings.php:943
|
4801 |
+
msgid "Text input"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
+
#: app/features/mec/settings.php:956
|
4805 |
msgid "Enable Mailchimp Integration"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
4809 |
msgid "List ID"
|
4810 |
msgstr ""
|
4811 |
|
4812 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
4813 |
msgid "Subscription Status"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
+
#: app/features/mec/settings.php:990
|
4817 |
msgid "Subscribe automatically"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
+
#: app/features/mec/settings.php:991
|
4821 |
msgid "Subscribe by verification"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
+
#: app/features/mec/settings.php:996
|
4825 |
msgid ""
|
4826 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
4827 |
"by mailchimp for subscription verification."
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: app/features/mec/settings.php:1008
|
4831 |
msgid "Upload Field Options"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: app/features/mec/settings.php:1010
|
4835 |
msgid "Mime types"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: app/features/mec/settings.php:1014
|
4839 |
msgid "Split mime types with \",\"."
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: app/features/mec/settings.php:1014
|
4843 |
msgid "Default: jpeg,jpg,png,pdf"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: app/features/mec/settings.php:1017
|
4847 |
msgid "Maximum file size"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: app/features/mec/settings.php:1021
|
4851 |
msgid "The unit is Megabyte \"MB\""
|
4852 |
msgstr ""
|
4853 |
|
5470 |
msgid "eg. https://webnus.net"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5474 |
+
#: app/skins/single.php:813
|
5475 |
msgid "Other Organizers"
|
5476 |
msgstr ""
|
5477 |
|
5489 |
msgid "#"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5493 |
msgid "Status"
|
5494 |
msgstr ""
|
5495 |
|
5507 |
msgstr ""
|
5508 |
|
5509 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5510 |
+
#: app/libraries/main.php:4543
|
5511 |
msgid "Ticket"
|
5512 |
msgstr ""
|
5513 |
|
5519 |
msgid "No bookings found!"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
+
#: app/features/search.php:90
|
5523 |
+
msgid "Please enter at least 3 characters and try again"
|
5524 |
+
msgstr ""
|
5525 |
+
|
5526 |
+
#: app/features/search_bar/search_bar.php:26
|
5527 |
+
msgid "Please enter at least 3 characters"
|
5528 |
+
msgstr ""
|
5529 |
+
|
5530 |
#: app/features/search_bar/search_bar.php:28
|
5531 |
+
msgid "Search results will show here"
|
5532 |
+
msgstr ""
|
5533 |
+
|
5534 |
+
#: app/features/search_bar/search_bar.php:39
|
5535 |
msgid "Search"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
+
#: app/features/search_bar/search_noresult.php:1
|
5539 |
+
msgid "No search result."
|
5540 |
+
msgstr ""
|
5541 |
+
|
5542 |
+
#: app/features/search_bar/search_result.php:11
|
5543 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5544 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5545 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5546 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5547 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5548 |
+
msgid "All of the day"
|
5549 |
+
msgstr ""
|
5550 |
+
|
5551 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5552 |
#: app/features/speakers.php:248
|
5553 |
msgid "Job Title"
|
5598 |
msgid "%s Price"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
+
#: app/libraries/book.php:539
|
5602 |
msgid "Discount"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
5606 |
#: app/modules/booking/default.php:401
|
5607 |
msgid "Download Invoice"
|
5608 |
msgstr ""
|
5626 |
msgid "Upgrade"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: app/libraries/factory.php:333
|
5630 |
msgid "day"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
5634 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5635 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5636 |
msgid "days"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
+
#: app/libraries/factory.php:335
|
5640 |
msgid "hour"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
5644 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5645 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5646 |
msgid "hours"
|
5647 |
msgstr ""
|
5648 |
|
5649 |
+
#: app/libraries/factory.php:337
|
5650 |
msgid "minute"
|
5651 |
msgstr ""
|
5652 |
|
5653 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
5654 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5655 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5656 |
msgid "minutes"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: app/libraries/factory.php:339
|
5660 |
msgid "second"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
5664 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
5665 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
5666 |
msgid "seconds"
|
5667 |
msgstr ""
|
5668 |
|
5669 |
+
#: app/libraries/factory.php:383
|
5670 |
msgid "MEC Single Sidebar"
|
5671 |
msgstr ""
|
5672 |
|
5673 |
+
#: app/libraries/factory.php:384
|
5674 |
msgid "Custom sidebar for single and modal page of MEC."
|
5675 |
msgstr ""
|
5676 |
|
5733 |
msgid "Slider View"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
5737 |
msgid "SU"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
5741 |
msgid "MO"
|
5742 |
msgstr ""
|
5743 |
|
5744 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
5745 |
msgid "TU"
|
5746 |
msgstr ""
|
5747 |
|
5748 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
5749 |
msgid "WE"
|
5750 |
msgstr ""
|
5751 |
|
5752 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
5753 |
msgid "TH"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
5757 |
msgid "FR"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
5761 |
msgid "SA"
|
5762 |
msgstr ""
|
5763 |
|
5903 |
msgid "Request is not valid."
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
5907 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
5908 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
5909 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
5910 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
5911 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
5912 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
5913 |
msgid "Sort"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
5917 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
5918 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
5919 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
5920 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
5921 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
5922 |
msgid "Required Field"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
5926 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
5927 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
5928 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
5929 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
5930 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
5931 |
msgid "Insert a label for this field"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
+
#: app/libraries/main.php:2411
|
5935 |
msgid "HTML and shortcode are allowed."
|
5936 |
msgstr ""
|
5937 |
|
5938 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
5939 |
+
#: app/libraries/main.php:2542
|
5940 |
msgid "Option"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
+
#: app/libraries/main.php:2576
|
5944 |
#, php-format
|
5945 |
msgid "Instead of %s, the page title with a link will be show."
|
5946 |
msgstr ""
|
5947 |
|
5948 |
+
#: app/libraries/main.php:2578
|
5949 |
msgid "Agreement Page"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: app/libraries/main.php:2589
|
5953 |
msgid "Checked by default"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
+
#: app/libraries/main.php:2590
|
5957 |
msgid "Unchecked by default"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
+
#: app/libraries/main.php:2613
|
5961 |
msgid "Insert a label for this option"
|
5962 |
msgstr ""
|
5963 |
|
5964 |
+
#: app/libraries/main.php:2628
|
5965 |
msgid "Free"
|
5966 |
msgstr ""
|
5967 |
|
5968 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
5969 |
msgid "M.E. Calender"
|
5970 |
msgstr ""
|
5971 |
|
5972 |
+
#: app/libraries/main.php:3349
|
5973 |
#, php-format
|
5974 |
msgid "Copy of %s"
|
5975 |
msgstr ""
|
5976 |
|
5977 |
+
#: app/libraries/main.php:4022
|
5978 |
msgid "Booked an event."
|
5979 |
msgstr ""
|
5980 |
|
5981 |
+
#: app/libraries/main.php:4063
|
5982 |
#, php-format
|
5983 |
msgid "%s booked %s event."
|
5984 |
msgstr ""
|
5985 |
|
5986 |
+
#: app/libraries/main.php:4506
|
5987 |
msgid "Taxonomies"
|
5988 |
msgstr ""
|
5989 |
|
5990 |
+
#: app/libraries/main.php:4508
|
5991 |
msgid "Category Plural Label"
|
5992 |
msgstr ""
|
5993 |
|
5994 |
+
#: app/libraries/main.php:4509
|
5995 |
msgid "Category Singular Label"
|
5996 |
msgstr ""
|
5997 |
|
5998 |
+
#: app/libraries/main.php:4510
|
5999 |
msgid "Label Plural Label"
|
6000 |
msgstr ""
|
6001 |
|
6002 |
+
#: app/libraries/main.php:4511
|
6003 |
msgid "Label Singular Label"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
+
#: app/libraries/main.php:4511
|
6007 |
msgid "label"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: app/libraries/main.php:4512
|
6011 |
msgid "Location Plural Label"
|
6012 |
msgstr ""
|
6013 |
|
6014 |
+
#: app/libraries/main.php:4513
|
6015 |
msgid "Location Singular Label"
|
6016 |
msgstr ""
|
6017 |
|
6018 |
+
#: app/libraries/main.php:4514
|
6019 |
msgid "Organizer Plural Label"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
+
#: app/libraries/main.php:4515
|
6023 |
msgid "Organizer Singular Label"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: app/libraries/main.php:4516
|
6027 |
msgid "Speaker Plural Label"
|
6028 |
msgstr ""
|
6029 |
|
6030 |
+
#: app/libraries/main.php:4517
|
6031 |
msgid "Speaker Singular Label"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: app/libraries/main.php:4523
|
6035 |
msgid "Sunday abbreviation"
|
6036 |
msgstr ""
|
6037 |
|
6038 |
+
#: app/libraries/main.php:4524
|
6039 |
msgid "Monday abbreviation"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
+
#: app/libraries/main.php:4525
|
6043 |
msgid "Tuesday abbreviation"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
+
#: app/libraries/main.php:4526
|
6047 |
msgid "Wednesday abbreviation"
|
6048 |
msgstr ""
|
6049 |
|
6050 |
+
#: app/libraries/main.php:4527
|
6051 |
msgid "Thursday abbreviation"
|
6052 |
msgstr ""
|
6053 |
|
6054 |
+
#: app/libraries/main.php:4528
|
6055 |
msgid "Friday abbreviation"
|
6056 |
msgstr ""
|
6057 |
|
6058 |
+
#: app/libraries/main.php:4529
|
6059 |
msgid "Saturday abbreviation"
|
6060 |
msgstr ""
|
6061 |
|
6062 |
+
#: app/libraries/main.php:4533
|
6063 |
msgid "Others"
|
6064 |
msgstr ""
|
6065 |
|
6066 |
+
#: app/libraries/main.php:4535
|
6067 |
msgid "Booking Success Message"
|
6068 |
msgstr ""
|
6069 |
|
6070 |
+
#: app/libraries/main.php:4535
|
6071 |
msgid ""
|
6072 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6073 |
"needed, please check your email."
|
6074 |
msgstr ""
|
6075 |
|
6076 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6077 |
msgid "Register Button"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6081 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6082 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6083 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6084 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6085 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6086 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6087 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6088 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6089 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6094 |
msgid "REGISTER"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
+
#: app/libraries/main.php:4537
|
6098 |
msgid "View Detail Button"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6102 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6103 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6104 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6109 |
msgid "View Detail"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
+
#: app/libraries/main.php:4538
|
6113 |
msgid "Event Detail Button"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6117 |
msgid "Event Detail"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
+
#: app/libraries/main.php:4540
|
6121 |
msgid "More Info Link"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: app/libraries/main.php:4543
|
6125 |
msgid "Ticket (Singular)"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
+
#: app/libraries/main.php:4544
|
6129 |
msgid "Tickets (Plural)"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
+
#: app/libraries/main.php:4630
|
6133 |
msgid "EventON"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
+
#: app/libraries/main.php:4631
|
6137 |
msgid "The Events Calendar"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
+
#: app/libraries/main.php:4632
|
6141 |
msgid "Events Schedule WP Plugin"
|
6142 |
msgstr ""
|
6143 |
|
6144 |
+
#: app/libraries/main.php:4633
|
6145 |
msgid "Calendarize It"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6149 |
msgid "Confirmed"
|
6150 |
msgstr ""
|
6151 |
|
6152 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6153 |
msgid "Rejected"
|
6154 |
msgstr ""
|
6155 |
|
6156 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6157 |
msgid "Pending"
|
6158 |
msgstr ""
|
6159 |
|
6160 |
+
#: app/libraries/main.php:4757
|
6161 |
msgid "Waiting"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6165 |
msgid "Skin controller does not exist."
|
6166 |
msgstr ""
|
6167 |
|
6169 |
msgid "Please verify your email."
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: app/libraries/notifications.php:125
|
6173 |
msgid "Your booking is received."
|
6174 |
msgstr ""
|
6175 |
|
6176 |
+
#: app/libraries/notifications.php:193
|
6177 |
msgid "Your booking is confirmed."
|
6178 |
msgstr ""
|
6179 |
|
6180 |
+
#: app/libraries/notifications.php:282
|
6181 |
msgid "booking canceled."
|
6182 |
msgstr ""
|
6183 |
|
6184 |
+
#: app/libraries/notifications.php:337
|
6185 |
msgid "A new booking is received."
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: app/libraries/notifications.php:488
|
6189 |
msgid "A new event is added."
|
6190 |
msgstr ""
|
6191 |
|
6192 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6193 |
msgid "to"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6197 |
msgid "+ Add to Google Calendar"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6201 |
msgid "+ iCal export"
|
6202 |
msgstr ""
|
6203 |
|
6204 |
+
#: app/libraries/notifications.php:752
|
6205 |
msgid "Yes"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
+
#: app/libraries/notifications.php:752
|
6209 |
msgid "No"
|
6210 |
msgstr ""
|
6211 |
|
6212 |
+
#: app/libraries/skins.php:958
|
6213 |
msgid "Ignore month and years"
|
6214 |
msgstr ""
|
6215 |
|
6286 |
msgid "Get Directions"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6290 |
msgid "Share this event"
|
6291 |
msgstr ""
|
6292 |
|
6313 |
msgid "Go to occurrence page"
|
6314 |
msgstr ""
|
6315 |
|
6316 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6317 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6318 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6319 |
msgid "Time"
|
6419 |
msgid "List"
|
6420 |
msgstr ""
|
6421 |
|
6422 |
+
#: app/skins/masonry.php:238
|
6423 |
msgid "All"
|
6424 |
msgstr ""
|
6425 |
|
6437 |
msgid "No Events"
|
6438 |
msgstr ""
|
6439 |
|
6440 |
+
#: app/skins/single.php:204
|
6441 |
msgid "Home"
|
6442 |
msgstr ""
|
6443 |
|
6444 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6445 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6446 |
#: app/skins/single/modern.php:256
|
6447 |
msgid "Sold out!"
|
6448 |
msgstr ""
|
6449 |
|
6450 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6451 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6452 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6453 |
#: app/skins/single/modern.php:41
|
6454 |
msgid "Phone"
|
6455 |
msgstr ""
|
6456 |
|
6457 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6458 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6459 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6460 |
#: app/skins/single/modern.php:55
|
6461 |
msgid "Website"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
+
#: app/skins/single.php:912
|
6465 |
msgid "Speakers:"
|
6466 |
msgstr ""
|
6467 |
|
languages/modern-events-calendar-lite-es_ES.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-es_ES.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
-
"POT-Creation-Date: 2019-08-
|
8 |
-
"PO-Revision-Date: 2019-08-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
@@ -350,7 +350,7 @@ msgstr "Integración de BuddyPress"
|
|
350 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
351 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
352 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
353 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
354 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
355 |
#: app/features/mec/styling.php:59
|
356 |
msgid "Mailchimp Integration"
|
@@ -416,9 +416,9 @@ msgstr "No hay eventos en la papelera"
|
|
416 |
#: app/features/mec/meta_boxes/search_form.php:453
|
417 |
#: app/features/mec/meta_boxes/search_form.php:514
|
418 |
#: app/features/mec/meta_boxes/search_form.php:575
|
419 |
-
#: app/features/mec/settings.php:
|
420 |
-
#: app/libraries/main.php:
|
421 |
-
#: app/skins/single.php:
|
422 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
423 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
424 |
msgid "Category"
|
@@ -426,7 +426,7 @@ msgstr "Categoría"
|
|
426 |
|
427 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
428 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
429 |
-
#: app/libraries/main.php:
|
430 |
msgid "Categories"
|
431 |
msgstr "Categorías"
|
432 |
|
@@ -501,13 +501,13 @@ msgstr "Detalle de evento"
|
|
501 |
#: app/features/events.php:322 app/features/events.php:3168
|
502 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
503 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
504 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
505 |
#: app/widgets/single.php:103
|
506 |
msgid "Event Cost"
|
507 |
msgstr "Coste del evento"
|
508 |
|
509 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
510 |
-
#: app/libraries/main.php:
|
511 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
512 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
513 |
msgid "Cost"
|
@@ -524,7 +524,7 @@ msgstr "Datos del invitado"
|
|
524 |
#: app/features/events.php:432 app/features/events.php:2250
|
525 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
526 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
527 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
528 |
#: app/modules/booking/steps/form.php:37
|
529 |
msgid "Name"
|
530 |
msgstr "Nombre"
|
@@ -535,10 +535,10 @@ msgstr "Nombre"
|
|
535 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
536 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
537 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
538 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
539 |
-
#: app/libraries/notifications.php:
|
540 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
541 |
-
#: app/skins/single.php:
|
542 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
543 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
544 |
msgid "Email"
|
@@ -684,14 +684,14 @@ msgstr ""
|
|
684 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
685 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
686 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
687 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
688 |
-
#: app/features/mec/settings.php:
|
689 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
690 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
691 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
692 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
693 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
694 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
695 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
696 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
697 |
#: app/skins/single/modern.php:133
|
@@ -901,9 +901,9 @@ msgstr "Excluir ciertos días"
|
|
901 |
|
902 |
#: app/features/events.php:1130 app/features/events.php:2340
|
903 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
904 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
905 |
#: app/modules/booking/steps/tickets.php:22
|
906 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
907 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
908 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
909 |
msgid "Date"
|
@@ -921,7 +921,7 @@ msgid "Day 1"
|
|
921 |
msgstr ""
|
922 |
|
923 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
924 |
-
#: app/skins/single.php:
|
925 |
msgid "Hourly Schedule"
|
926 |
msgstr "Programación horaria"
|
927 |
|
@@ -960,14 +960,14 @@ msgstr "Titulo"
|
|
960 |
#: app/features/events.php:2154 app/features/events.php:2196
|
961 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
962 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
963 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
964 |
-
#: app/libraries/main.php:
|
965 |
-
#: app/libraries/main.php:
|
966 |
-
#: app/libraries/main.php:
|
967 |
-
#: app/libraries/main.php:
|
968 |
-
#: app/libraries/main.php:
|
969 |
-
#: app/libraries/main.php:
|
970 |
-
#: app/libraries/main.php:
|
971 |
msgid "Remove"
|
972 |
msgstr "Eliminar"
|
973 |
|
@@ -1000,7 +1000,7 @@ msgstr "Descripción"
|
|
1000 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
1001 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
1002 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
1003 |
-
#: app/features/speakers.php:60 app/libraries/main.php:
|
1004 |
#: app/modules/speakers/details.php:18
|
1005 |
msgid "Speakers"
|
1006 |
msgstr ""
|
@@ -1017,7 +1017,7 @@ msgid "Event Links"
|
|
1017 |
msgstr "Enlaces de eventos"
|
1018 |
|
1019 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1020 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1021 |
msgid "Event Link"
|
1022 |
msgstr "Enlace del evento"
|
1023 |
|
@@ -1044,8 +1044,8 @@ msgid "URL Shortener"
|
|
1044 |
msgstr ""
|
1045 |
|
1046 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1047 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1048 |
-
#: app/skins/single.php:
|
1049 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1050 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1051 |
#: app/widgets/single.php:107
|
@@ -1108,7 +1108,7 @@ msgid "12"
|
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1111 |
-
#: app/libraries/main.php:
|
1112 |
msgid "Tickets"
|
1113 |
msgstr "Tickets"
|
1114 |
|
@@ -1184,8 +1184,8 @@ msgstr ""
|
|
1184 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1185 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1186 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1187 |
-
#: app/features/mec/settings.php:
|
1188 |
-
#: app/libraries/skins.php:
|
1189 |
msgid "Label"
|
1190 |
msgstr "Etiqueta"
|
1191 |
|
@@ -1256,48 +1256,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1256 |
msgstr ""
|
1257 |
|
1258 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1259 |
-
#: app/libraries/main.php:
|
1260 |
#, fuzzy
|
1261 |
#| msgid "Name"
|
1262 |
msgid "MEC Name"
|
1263 |
msgstr "Nombre"
|
1264 |
|
1265 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1266 |
-
#: app/libraries/main.php:
|
1267 |
#, fuzzy
|
1268 |
#| msgid "Email"
|
1269 |
msgid "MEC Email"
|
1270 |
msgstr "Correo electrónico"
|
1271 |
|
1272 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1273 |
-
#: app/libraries/main.php:
|
1274 |
msgid "Text"
|
1275 |
msgstr "Texto"
|
1276 |
|
1277 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1278 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1279 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1280 |
-
#: app/features/speakers.php:249 app/libraries/main.php:
|
1281 |
msgid "Tel"
|
1282 |
msgstr "Tel"
|
1283 |
|
1284 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1285 |
-
#: app/libraries/main.php:
|
1286 |
msgid "File"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1290 |
-
#: app/libraries/main.php:
|
1291 |
msgid "Textarea"
|
1292 |
msgstr "Área de texto"
|
1293 |
|
1294 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1295 |
-
#: app/libraries/main.php:
|
1296 |
msgid "Checkboxes"
|
1297 |
msgstr "Checkboxes"
|
1298 |
|
1299 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1300 |
-
#: app/libraries/main.php:
|
1301 |
msgid "Radio Buttons"
|
1302 |
msgstr "Botón tipo radio"
|
1303 |
|
@@ -1370,17 +1370,17 @@ msgstr "Botón tipo radio"
|
|
1370 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1371 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1372 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1373 |
-
#: app/features/mec/regform.php:277 app/libraries/main.php:
|
1374 |
msgid "Dropdown"
|
1375 |
msgstr "Desplegable"
|
1376 |
|
1377 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1378 |
-
#: app/libraries/main.php:
|
1379 |
msgid "Agreement"
|
1380 |
msgstr "Acuerdo"
|
1381 |
|
1382 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1383 |
-
#: app/libraries/main.php:
|
1384 |
msgid "Paragraph"
|
1385 |
msgstr "Párrafo"
|
1386 |
|
@@ -1418,10 +1418,10 @@ msgstr "organizadores"
|
|
1418 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1419 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1420 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1421 |
-
#: app/features/mec/settings.php:
|
1422 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1423 |
-
#: app/libraries/skins.php:
|
1424 |
-
#: app/skins/single.php:
|
1425 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1426 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1427 |
msgid "Location"
|
@@ -1440,11 +1440,11 @@ msgstr "Localización"
|
|
1440 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1441 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1442 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1443 |
-
#: app/features/mec/settings.php:
|
1444 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1445 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1446 |
-
#: app/features/organizers.php:271 app/libraries/main.php:
|
1447 |
-
#: app/libraries/skins.php:
|
1448 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1449 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1450 |
#: app/skins/single/modern.php:31
|
@@ -1597,8 +1597,8 @@ msgstr "Eliminar imagen"
|
|
1597 |
|
1598 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1599 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1600 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1601 |
-
#: app/skins/single.php:
|
1602 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1603 |
#: app/skins/single/modern.php:214
|
1604 |
msgid "Labels"
|
@@ -1931,7 +1931,7 @@ msgstr "Añadir a Google Calendar"
|
|
1931 |
|
1932 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1933 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1934 |
-
#: app/features/mec/settings.php:
|
1935 |
msgid "Checking ..."
|
1936 |
msgstr "Verificando…"
|
1937 |
|
@@ -2319,7 +2319,7 @@ msgid "Featured"
|
|
2319 |
msgstr ""
|
2320 |
|
2321 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2322 |
-
#: app/libraries/main.php:
|
2323 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2324 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2325 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
@@ -2354,7 +2354,7 @@ msgstr "Evento %s"
|
|
2354 |
|
2355 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2356 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2357 |
-
#: app/libraries/main.php:
|
2358 |
msgid "Locations"
|
2359 |
msgstr "Lugar"
|
2360 |
|
@@ -2461,7 +2461,7 @@ msgstr "Elegir imagen"
|
|
2461 |
msgid "Don't show map in single event page"
|
2462 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
2463 |
|
2464 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2465 |
#, fuzzy
|
2466 |
#| msgid "Locations"
|
2467 |
msgid "Other Locations"
|
@@ -2514,7 +2514,7 @@ msgstr "Soporte"
|
|
2514 |
|
2515 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2516 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2517 |
-
#: app/libraries/main.php:
|
2518 |
msgid "Organizers"
|
2519 |
msgstr "Organizadores"
|
2520 |
|
@@ -2635,9 +2635,9 @@ msgstr ""
|
|
2635 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2636 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2637 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2638 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2639 |
-
#: app/features/mec/settings.php:
|
2640 |
-
#: app/features/mec/settings.php:
|
2641 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2642 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2643 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
@@ -2736,7 +2736,7 @@ msgstr "Organizadores adicionales"
|
|
2736 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2737 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2738 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2739 |
-
#: app/skins/single.php:
|
2740 |
#, fuzzy
|
2741 |
#| msgid "featured event"
|
2742 |
msgid "Related Events"
|
@@ -2867,7 +2867,7 @@ msgstr ""
|
|
2867 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2868 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2869 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2870 |
-
#: app/libraries/notifications.php:
|
2871 |
msgid "Booking Reminder"
|
2872 |
msgstr "Recordatorio de reserva"
|
2873 |
|
@@ -3047,7 +3047,7 @@ msgstr ""
|
|
3047 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3048 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3049 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3050 |
-
#: app/features/mec/settings.php:
|
3051 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3052 |
msgid "Saved"
|
3053 |
msgstr "Guardado"
|
@@ -3055,7 +3055,7 @@ msgstr "Guardado"
|
|
3055 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3056 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3057 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3058 |
-
#: app/features/mec/settings.php:
|
3059 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3060 |
msgid "Settings Saved!"
|
3061 |
msgstr "¡Ajustes guardados!"
|
@@ -3063,14 +3063,14 @@ msgstr "¡Ajustes guardados!"
|
|
3063 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3064 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3065 |
#: app/features/mec/notifications.php:735
|
3066 |
-
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:
|
3067 |
-
#: app/features/mec/settings.php:
|
3068 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
3069 |
msgid "Verified"
|
3070 |
msgstr "Verificado"
|
3071 |
|
3072 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3073 |
-
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:
|
3074 |
#: app/features/mec/single.php:502
|
3075 |
msgid "Please Refresh Page"
|
3076 |
msgstr "Por favor, actualiza la página"
|
@@ -4010,9 +4010,9 @@ msgstr "Desactivado"
|
|
4010 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4011 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4012 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4013 |
-
#: app/features/mec/settings.php:
|
4014 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4015 |
-
#: app/libraries/main.php:
|
4016 |
msgid "Speaker"
|
4017 |
msgstr ""
|
4018 |
|
@@ -4026,8 +4026,8 @@ msgstr ""
|
|
4026 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4027 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4028 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4029 |
-
#: app/features/mec/settings.php:
|
4030 |
-
#: app/libraries/skins.php:
|
4031 |
#, fuzzy
|
4032 |
#| msgid "Tags"
|
4033 |
msgid "Tag"
|
@@ -4105,12 +4105,12 @@ msgid "Show Google Maps on event page"
|
|
4105 |
msgstr "Ver eventos en Google Maps"
|
4106 |
|
4107 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4108 |
-
#: app/features/mec/settings.php:
|
4109 |
msgid "API Key"
|
4110 |
msgstr "API Key"
|
4111 |
|
4112 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
4113 |
-
#: app/features/mec/settings.php:
|
4114 |
msgid "Required!"
|
4115 |
msgstr "¡Obligatorio!"
|
4116 |
|
@@ -4727,7 +4727,7 @@ msgid ""
|
|
4727 |
msgstr ""
|
4728 |
|
4729 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4730 |
-
#: app/libraries/main.php:
|
4731 |
msgid "Weekdays"
|
4732 |
msgstr "Días de la semana"
|
4733 |
|
@@ -5057,31 +5057,53 @@ msgid ""
|
|
5057 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
-
#: app/features/mec/settings.php:
|
5061 |
-
msgid "
|
|
|
|
|
|
|
|
|
5062 |
msgstr ""
|
5063 |
|
5064 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5065 |
msgid "Enable Mailchimp Integration"
|
5066 |
msgstr "Activar integración con MailChimp"
|
5067 |
|
5068 |
-
#: app/features/mec/settings.php:
|
5069 |
msgid "List ID"
|
5070 |
msgstr "ID de la lista"
|
5071 |
|
5072 |
-
#: app/features/mec/settings.php:
|
5073 |
msgid "Subscription Status"
|
5074 |
msgstr "Estado Suscripción"
|
5075 |
|
5076 |
-
#: app/features/mec/settings.php:
|
5077 |
msgid "Subscribe automatically"
|
5078 |
msgstr "Suscribirse automáticamente "
|
5079 |
|
5080 |
-
#: app/features/mec/settings.php:
|
5081 |
msgid "Subscribe by verification"
|
5082 |
msgstr "Suscribirse por verificación"
|
5083 |
|
5084 |
-
#: app/features/mec/settings.php:
|
5085 |
msgid ""
|
5086 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5087 |
"by mailchimp for subscription verification."
|
@@ -5089,31 +5111,31 @@ msgstr ""
|
|
5089 |
"Si eliges “Suscribir por verificación” entonces un email de verificación de "
|
5090 |
"suscripción se le enviará al usuario."
|
5091 |
|
5092 |
-
#: app/features/mec/settings.php:
|
5093 |
#, fuzzy
|
5094 |
#| msgid "Filter Options"
|
5095 |
msgid "Upload Field Options"
|
5096 |
msgstr "Opciones de filtros"
|
5097 |
|
5098 |
-
#: app/features/mec/settings.php:
|
5099 |
msgid "Mime types"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
-
#: app/features/mec/settings.php:
|
5103 |
msgid "Split mime types with \",\"."
|
5104 |
msgstr ""
|
5105 |
|
5106 |
-
#: app/features/mec/settings.php:
|
5107 |
msgid "Default: jpeg,jpg,png,pdf"
|
5108 |
msgstr ""
|
5109 |
|
5110 |
-
#: app/features/mec/settings.php:
|
5111 |
#, fuzzy
|
5112 |
#| msgid "Maximum Dates"
|
5113 |
msgid "Maximum file size"
|
5114 |
msgstr "Fechas máximas"
|
5115 |
|
5116 |
-
#: app/features/mec/settings.php:
|
5117 |
msgid "The unit is Megabyte \"MB\""
|
5118 |
msgstr ""
|
5119 |
|
@@ -5827,8 +5849,8 @@ msgstr "ej. user@yoursite.com"
|
|
5827 |
msgid "eg. https://webnus.net"
|
5828 |
msgstr "ej. https://webnus.net"
|
5829 |
|
5830 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5831 |
-
#: app/skins/single.php:
|
5832 |
msgid "Other Organizers"
|
5833 |
msgstr "En común"
|
5834 |
|
@@ -5848,7 +5870,7 @@ msgstr ""
|
|
5848 |
msgid "#"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5852 |
msgid "Status"
|
5853 |
msgstr "Estado"
|
5854 |
|
@@ -5866,7 +5888,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5866 |
msgstr ""
|
5867 |
|
5868 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5869 |
-
#: app/libraries/main.php:
|
5870 |
msgid "Ticket"
|
5871 |
msgstr "Ticket"
|
5872 |
|
@@ -5878,12 +5900,37 @@ msgstr ""
|
|
5878 |
msgid "No bookings found!"
|
5879 |
msgstr ""
|
5880 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5881 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5882 |
#, fuzzy
|
5883 |
#| msgid "Search %s"
|
5884 |
msgid "Search"
|
5885 |
msgstr "Buscar %s"
|
5886 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5887 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5888 |
#: app/features/speakers.php:248
|
5889 |
msgid "Job Title"
|
@@ -5934,11 +5981,11 @@ msgstr ""
|
|
5934 |
msgid "%s Price"
|
5935 |
msgstr "%s Precio"
|
5936 |
|
5937 |
-
#: app/libraries/book.php:
|
5938 |
msgid "Discount"
|
5939 |
msgstr "Descuento"
|
5940 |
|
5941 |
-
#: app/libraries/book.php:
|
5942 |
#: app/modules/booking/default.php:401
|
5943 |
msgid "Download Invoice"
|
5944 |
msgstr "Descargar factura"
|
@@ -5962,51 +6009,51 @@ msgctxt "plugin link"
|
|
5962 |
msgid "Upgrade"
|
5963 |
msgstr "Actualizar"
|
5964 |
|
5965 |
-
#: app/libraries/factory.php:
|
5966 |
msgid "day"
|
5967 |
msgstr "día "
|
5968 |
|
5969 |
-
#: app/libraries/factory.php:
|
5970 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5971 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5972 |
msgid "days"
|
5973 |
msgstr "días"
|
5974 |
|
5975 |
-
#: app/libraries/factory.php:
|
5976 |
msgid "hour"
|
5977 |
msgstr "hora"
|
5978 |
|
5979 |
-
#: app/libraries/factory.php:
|
5980 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5981 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5982 |
msgid "hours"
|
5983 |
msgstr "horas"
|
5984 |
|
5985 |
-
#: app/libraries/factory.php:
|
5986 |
msgid "minute"
|
5987 |
msgstr "minuto"
|
5988 |
|
5989 |
-
#: app/libraries/factory.php:
|
5990 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5991 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5992 |
msgid "minutes"
|
5993 |
msgstr "minutos"
|
5994 |
|
5995 |
-
#: app/libraries/factory.php:
|
5996 |
msgid "second"
|
5997 |
msgstr "segundo"
|
5998 |
|
5999 |
-
#: app/libraries/factory.php:
|
6000 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6001 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6002 |
msgid "seconds"
|
6003 |
msgstr "segundos"
|
6004 |
|
6005 |
-
#: app/libraries/factory.php:
|
6006 |
msgid "MEC Single Sidebar"
|
6007 |
msgstr "barra lateral MEC"
|
6008 |
|
6009 |
-
#: app/libraries/factory.php:
|
6010 |
msgid "Custom sidebar for single and modal page of MEC."
|
6011 |
msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
|
6012 |
|
@@ -6069,31 +6116,31 @@ msgstr "Vista carrusel"
|
|
6069 |
msgid "Slider View"
|
6070 |
msgstr "Vista del rotativo"
|
6071 |
|
6072 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6073 |
msgid "SU"
|
6074 |
msgstr "DO"
|
6075 |
|
6076 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6077 |
msgid "MO"
|
6078 |
msgstr "LU"
|
6079 |
|
6080 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6081 |
msgid "TU"
|
6082 |
msgstr "MA"
|
6083 |
|
6084 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6085 |
msgid "WE"
|
6086 |
msgstr "MI"
|
6087 |
|
6088 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6089 |
msgid "TH"
|
6090 |
msgstr "JU"
|
6091 |
|
6092 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6093 |
msgid "FR"
|
6094 |
msgstr "VI"
|
6095 |
|
6096 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6097 |
msgid "SA"
|
6098 |
msgstr "SA"
|
6099 |
|
@@ -6245,173 +6292,173 @@ msgstr "¡La exportación de iCal se detuvo!"
|
|
6245 |
msgid "Request is not valid."
|
6246 |
msgstr "La solicitud no es válida."
|
6247 |
|
6248 |
-
#: app/libraries/main.php:
|
6249 |
-
#: app/libraries/main.php:
|
6250 |
-
#: app/libraries/main.php:
|
6251 |
-
#: app/libraries/main.php:
|
6252 |
-
#: app/libraries/main.php:
|
6253 |
-
#: app/libraries/main.php:
|
6254 |
-
#: app/libraries/main.php:
|
6255 |
msgid "Sort"
|
6256 |
msgstr "Orden"
|
6257 |
|
6258 |
-
#: app/libraries/main.php:
|
6259 |
-
#: app/libraries/main.php:
|
6260 |
-
#: app/libraries/main.php:
|
6261 |
-
#: app/libraries/main.php:
|
6262 |
-
#: app/libraries/main.php:
|
6263 |
-
#: app/libraries/main.php:
|
6264 |
msgid "Required Field"
|
6265 |
msgstr "Campo obligatorio"
|
6266 |
|
6267 |
-
#: app/libraries/main.php:
|
6268 |
-
#: app/libraries/main.php:
|
6269 |
-
#: app/libraries/main.php:
|
6270 |
-
#: app/libraries/main.php:
|
6271 |
-
#: app/libraries/main.php:
|
6272 |
-
#: app/libraries/main.php:
|
6273 |
msgid "Insert a label for this field"
|
6274 |
msgstr "Introduce una etiqueta para este campo"
|
6275 |
|
6276 |
-
#: app/libraries/main.php:
|
6277 |
msgid "HTML and shortcode are allowed."
|
6278 |
msgstr "Se permite HTML"
|
6279 |
|
6280 |
-
#: app/libraries/main.php:
|
6281 |
-
#: app/libraries/main.php:
|
6282 |
msgid "Option"
|
6283 |
msgstr "Opción"
|
6284 |
|
6285 |
-
#: app/libraries/main.php:
|
6286 |
#, php-format
|
6287 |
msgid "Instead of %s, the page title with a link will be show."
|
6288 |
msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
|
6289 |
|
6290 |
-
#: app/libraries/main.php:
|
6291 |
msgid "Agreement Page"
|
6292 |
msgstr "Página de Acuerdo"
|
6293 |
|
6294 |
-
#: app/libraries/main.php:
|
6295 |
msgid "Checked by default"
|
6296 |
msgstr "Marcado por defecto"
|
6297 |
|
6298 |
-
#: app/libraries/main.php:
|
6299 |
msgid "Unchecked by default"
|
6300 |
msgstr "Sin marcar por defecto"
|
6301 |
|
6302 |
-
#: app/libraries/main.php:
|
6303 |
msgid "Insert a label for this option"
|
6304 |
msgstr "Introduce una etiqueta para esta opción"
|
6305 |
|
6306 |
-
#: app/libraries/main.php:
|
6307 |
msgid "Free"
|
6308 |
msgstr "Gratis"
|
6309 |
|
6310 |
-
#: app/libraries/main.php:
|
6311 |
#, fuzzy
|
6312 |
#| msgid "M.E. Calendar"
|
6313 |
msgid "M.E. Calender"
|
6314 |
msgstr "M.E. Calendario"
|
6315 |
|
6316 |
-
#: app/libraries/main.php:
|
6317 |
#, php-format
|
6318 |
msgid "Copy of %s"
|
6319 |
msgstr "Copia de %s"
|
6320 |
|
6321 |
-
#: app/libraries/main.php:
|
6322 |
msgid "Booked an event."
|
6323 |
msgstr "Has reservado para un evento."
|
6324 |
|
6325 |
-
#: app/libraries/main.php:
|
6326 |
#, php-format
|
6327 |
msgid "%s booked %s event."
|
6328 |
msgstr "%s reservado %s evento."
|
6329 |
|
6330 |
-
#: app/libraries/main.php:
|
6331 |
msgid "Taxonomies"
|
6332 |
msgstr "Taxonomías"
|
6333 |
|
6334 |
-
#: app/libraries/main.php:
|
6335 |
msgid "Category Plural Label"
|
6336 |
msgstr "Categoría Etiqueta plural"
|
6337 |
|
6338 |
-
#: app/libraries/main.php:
|
6339 |
msgid "Category Singular Label"
|
6340 |
msgstr "Categoría Etiqueta Singular"
|
6341 |
|
6342 |
-
#: app/libraries/main.php:
|
6343 |
msgid "Label Plural Label"
|
6344 |
msgstr "Etiqueta plural"
|
6345 |
|
6346 |
-
#: app/libraries/main.php:
|
6347 |
msgid "Label Singular Label"
|
6348 |
msgstr "Etiqueta singular de la etiqueta"
|
6349 |
|
6350 |
-
#: app/libraries/main.php:
|
6351 |
msgid "label"
|
6352 |
msgstr "etiqueta"
|
6353 |
|
6354 |
-
#: app/libraries/main.php:
|
6355 |
msgid "Location Plural Label"
|
6356 |
msgstr "Ubicación Etiqueta plural"
|
6357 |
|
6358 |
-
#: app/libraries/main.php:
|
6359 |
msgid "Location Singular Label"
|
6360 |
msgstr "Etiqueta de ubicación en singular"
|
6361 |
|
6362 |
-
#: app/libraries/main.php:
|
6363 |
msgid "Organizer Plural Label"
|
6364 |
msgstr "Etiqueta del organizador en plural"
|
6365 |
|
6366 |
-
#: app/libraries/main.php:
|
6367 |
msgid "Organizer Singular Label"
|
6368 |
msgstr "Etiqueta Singular del Organizador"
|
6369 |
|
6370 |
-
#: app/libraries/main.php:
|
6371 |
msgid "Speaker Plural Label"
|
6372 |
msgstr ""
|
6373 |
|
6374 |
-
#: app/libraries/main.php:
|
6375 |
msgid "Speaker Singular Label"
|
6376 |
msgstr ""
|
6377 |
|
6378 |
-
#: app/libraries/main.php:
|
6379 |
msgid "Sunday abbreviation"
|
6380 |
msgstr "Abreviatura de Domingo"
|
6381 |
|
6382 |
-
#: app/libraries/main.php:
|
6383 |
msgid "Monday abbreviation"
|
6384 |
msgstr "Abreviatura de Lunes"
|
6385 |
|
6386 |
-
#: app/libraries/main.php:
|
6387 |
msgid "Tuesday abbreviation"
|
6388 |
msgstr "Abreviatura de Martes"
|
6389 |
|
6390 |
-
#: app/libraries/main.php:
|
6391 |
msgid "Wednesday abbreviation"
|
6392 |
msgstr "Abreviatura de Miércoles "
|
6393 |
|
6394 |
-
#: app/libraries/main.php:
|
6395 |
msgid "Thursday abbreviation"
|
6396 |
msgstr "Abreviatura de Jueves"
|
6397 |
|
6398 |
-
#: app/libraries/main.php:
|
6399 |
msgid "Friday abbreviation"
|
6400 |
msgstr "Abreviatura de Viernes"
|
6401 |
|
6402 |
-
#: app/libraries/main.php:
|
6403 |
msgid "Saturday abbreviation"
|
6404 |
msgstr "Abreviatura de Sábado "
|
6405 |
|
6406 |
-
#: app/libraries/main.php:
|
6407 |
msgid "Others"
|
6408 |
msgstr "Otros"
|
6409 |
|
6410 |
-
#: app/libraries/main.php:
|
6411 |
msgid "Booking Success Message"
|
6412 |
msgstr "Mensaje de reserva correcta"
|
6413 |
|
6414 |
-
#: app/libraries/main.php:
|
6415 |
msgid ""
|
6416 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6417 |
"needed, please check your email."
|
@@ -6419,17 +6466,17 @@ msgstr ""
|
|
6419 |
"Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
|
6420 |
"una verificación, por favor consulta tu correo."
|
6421 |
|
6422 |
-
#: app/libraries/main.php:
|
6423 |
msgid "Register Button"
|
6424 |
msgstr "Botón de registro"
|
6425 |
|
6426 |
-
#: app/libraries/main.php:
|
6427 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6428 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6429 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6430 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6431 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6432 |
-
#: app/skins/single.php:
|
6433 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6434 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6435 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6440,11 +6487,11 @@ msgstr "Botón de registro"
|
|
6440 |
msgid "REGISTER"
|
6441 |
msgstr "REGISTRO"
|
6442 |
|
6443 |
-
#: app/libraries/main.php:
|
6444 |
msgid "View Detail Button"
|
6445 |
msgstr "Ver detalle del botón"
|
6446 |
|
6447 |
-
#: app/libraries/main.php:
|
6448 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6449 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6450 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6455,59 +6502,59 @@ msgstr "Ver detalle del botón"
|
|
6455 |
msgid "View Detail"
|
6456 |
msgstr "Ver detalle"
|
6457 |
|
6458 |
-
#: app/libraries/main.php:
|
6459 |
msgid "Event Detail Button"
|
6460 |
msgstr "Botón de detalle del evento"
|
6461 |
|
6462 |
-
#: app/libraries/main.php:
|
6463 |
msgid "Event Detail"
|
6464 |
msgstr "Detalle del evento"
|
6465 |
|
6466 |
-
#: app/libraries/main.php:
|
6467 |
msgid "More Info Link"
|
6468 |
msgstr "Enlace a Más Información"
|
6469 |
|
6470 |
-
#: app/libraries/main.php:
|
6471 |
msgid "Ticket (Singular)"
|
6472 |
msgstr "Entrada (Singular)"
|
6473 |
|
6474 |
-
#: app/libraries/main.php:
|
6475 |
msgid "Tickets (Plural)"
|
6476 |
msgstr "Entradas (Plural)"
|
6477 |
|
6478 |
-
#: app/libraries/main.php:
|
6479 |
msgid "EventON"
|
6480 |
msgstr "EventON"
|
6481 |
|
6482 |
-
#: app/libraries/main.php:
|
6483 |
msgid "The Events Calendar"
|
6484 |
msgstr "The Events Calendar"
|
6485 |
|
6486 |
-
#: app/libraries/main.php:
|
6487 |
msgid "Events Schedule WP Plugin"
|
6488 |
msgstr "Events Schedule WP Plugin"
|
6489 |
|
6490 |
-
#: app/libraries/main.php:
|
6491 |
msgid "Calendarize It"
|
6492 |
msgstr "Ponlo al calendario"
|
6493 |
|
6494 |
-
#: app/libraries/main.php:
|
6495 |
msgid "Confirmed"
|
6496 |
msgstr ""
|
6497 |
|
6498 |
-
#: app/libraries/main.php:
|
6499 |
msgid "Rejected"
|
6500 |
msgstr ""
|
6501 |
|
6502 |
-
#: app/libraries/main.php:
|
6503 |
msgid "Pending"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
-
#: app/libraries/main.php:
|
6507 |
msgid "Waiting"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
-
#: app/libraries/main.php:
|
6511 |
msgid "Skin controller does not exist."
|
6512 |
msgstr "No existe skin controller."
|
6513 |
|
@@ -6515,57 +6562,49 @@ msgstr "No existe skin controller."
|
|
6515 |
msgid "Please verify your email."
|
6516 |
msgstr "Por favor comprueba tu email"
|
6517 |
|
6518 |
-
#: app/libraries/notifications.php:
|
6519 |
msgid "Your booking is received."
|
6520 |
msgstr "Se ha recibido tu reserva."
|
6521 |
|
6522 |
-
#: app/libraries/notifications.php:
|
6523 |
msgid "Your booking is confirmed."
|
6524 |
msgstr "Tu reserva ha sido confirmada."
|
6525 |
|
6526 |
-
#: app/libraries/notifications.php:
|
6527 |
#, fuzzy
|
6528 |
#| msgid "Your booking cannot be canceled."
|
6529 |
msgid "booking canceled."
|
6530 |
msgstr "La reserva no puede cancelarse."
|
6531 |
|
6532 |
-
#: app/libraries/notifications.php:
|
6533 |
msgid "A new booking is received."
|
6534 |
msgstr "Nueva reserva recibida."
|
6535 |
|
6536 |
-
#: app/libraries/notifications.php:
|
6537 |
msgid "A new event is added."
|
6538 |
msgstr "Se ha añadido un nuevo evento."
|
6539 |
|
6540 |
-
#: app/libraries/notifications.php:
|
6541 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6542 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6543 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6544 |
-
#: app/skins/single/modern.php:184
|
6545 |
-
msgid "All of the day"
|
6546 |
-
msgstr "Todo el día"
|
6547 |
-
|
6548 |
-
#: app/libraries/notifications.php:611
|
6549 |
msgid "to"
|
6550 |
msgstr "a"
|
6551 |
|
6552 |
-
#: app/libraries/notifications.php:
|
6553 |
msgid "+ Add to Google Calendar"
|
6554 |
msgstr "+ Añadir Google Calendar"
|
6555 |
|
6556 |
-
#: app/libraries/notifications.php:
|
6557 |
msgid "+ iCal export"
|
6558 |
msgstr "Exportación + iCal"
|
6559 |
|
6560 |
-
#: app/libraries/notifications.php:
|
6561 |
msgid "Yes"
|
6562 |
msgstr "Sí"
|
6563 |
|
6564 |
-
#: app/libraries/notifications.php:
|
6565 |
msgid "No"
|
6566 |
msgstr "No"
|
6567 |
|
6568 |
-
#: app/libraries/skins.php:
|
6569 |
msgid "Ignore month and years"
|
6570 |
msgstr "Ignorar meses y años"
|
6571 |
|
@@ -6646,7 +6685,7 @@ msgstr "Dirección de…"
|
|
6646 |
msgid "Get Directions"
|
6647 |
msgstr "Cómo llegar"
|
6648 |
|
6649 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6650 |
msgid "Share this event"
|
6651 |
msgstr "Compartir este evento"
|
6652 |
|
@@ -6673,7 +6712,7 @@ msgstr "Siguiente repetición"
|
|
6673 |
msgid "Go to occurrence page"
|
6674 |
msgstr "Ir a la página de repetición"
|
6675 |
|
6676 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6677 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6678 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6679 |
msgid "Time"
|
@@ -6785,7 +6824,7 @@ msgstr "Sin eventos"
|
|
6785 |
msgid "List"
|
6786 |
msgstr "Lista"
|
6787 |
|
6788 |
-
#: app/skins/masonry.php:
|
6789 |
msgid "All"
|
6790 |
msgstr "Todo"
|
6791 |
|
@@ -6803,31 +6842,31 @@ msgstr "Eventos %s"
|
|
6803 |
msgid "No Events"
|
6804 |
msgstr "Sin eventos"
|
6805 |
|
6806 |
-
#: app/skins/single.php:
|
6807 |
msgid "Home"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
-
#: app/skins/single.php:
|
6811 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6812 |
#: app/skins/single/modern.php:256
|
6813 |
msgid "Sold out!"
|
6814 |
msgstr "¡Agotado!"
|
6815 |
|
6816 |
-
#: app/skins/single.php:
|
6817 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6818 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6819 |
#: app/skins/single/modern.php:41
|
6820 |
msgid "Phone"
|
6821 |
msgstr "Teléfono"
|
6822 |
|
6823 |
-
#: app/skins/single.php:
|
6824 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6825 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6826 |
#: app/skins/single/modern.php:55
|
6827 |
msgid "Website"
|
6828 |
msgstr "Web"
|
6829 |
|
6830 |
-
#: app/skins/single.php:
|
6831 |
msgid "Speakers:"
|
6832 |
msgstr ""
|
6833 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
8 |
+
"PO-Revision-Date: 2019-08-13 16:45+0430\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
350 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
351 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
352 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
353 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
354 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
355 |
#: app/features/mec/styling.php:59
|
356 |
msgid "Mailchimp Integration"
|
416 |
#: app/features/mec/meta_boxes/search_form.php:453
|
417 |
#: app/features/mec/meta_boxes/search_form.php:514
|
418 |
#: app/features/mec/meta_boxes/search_form.php:575
|
419 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
420 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
421 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
422 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
423 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
424 |
msgid "Category"
|
426 |
|
427 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
428 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
429 |
+
#: app/libraries/main.php:4508
|
430 |
msgid "Categories"
|
431 |
msgstr "Categorías"
|
432 |
|
501 |
#: app/features/events.php:322 app/features/events.php:3168
|
502 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
503 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
504 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
505 |
#: app/widgets/single.php:103
|
506 |
msgid "Event Cost"
|
507 |
msgstr "Coste del evento"
|
508 |
|
509 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
510 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
511 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
512 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
513 |
msgid "Cost"
|
524 |
#: app/features/events.php:432 app/features/events.php:2250
|
525 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
526 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
527 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
528 |
#: app/modules/booking/steps/form.php:37
|
529 |
msgid "Name"
|
530 |
msgstr "Nombre"
|
535 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
536 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
537 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
538 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
539 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
540 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
541 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
542 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
543 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
544 |
msgid "Email"
|
684 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
685 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
686 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
687 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
688 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
689 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
690 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
691 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
692 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
693 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
694 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
695 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
696 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
697 |
#: app/skins/single/modern.php:133
|
901 |
|
902 |
#: app/features/events.php:1130 app/features/events.php:2340
|
903 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
904 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
905 |
#: app/modules/booking/steps/tickets.php:22
|
906 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
907 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
908 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
909 |
msgid "Date"
|
921 |
msgstr ""
|
922 |
|
923 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
924 |
+
#: app/skins/single.php:898
|
925 |
msgid "Hourly Schedule"
|
926 |
msgstr "Programación horaria"
|
927 |
|
960 |
#: app/features/events.php:2154 app/features/events.php:2196
|
961 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
962 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
963 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
964 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
965 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
966 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
967 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
968 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
969 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
970 |
+
#: app/libraries/main.php:2612
|
971 |
msgid "Remove"
|
972 |
msgstr "Eliminar"
|
973 |
|
1000 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
1001 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
1002 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
1003 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4516
|
1004 |
#: app/modules/speakers/details.php:18
|
1005 |
msgid "Speakers"
|
1006 |
msgstr ""
|
1017 |
msgstr "Enlaces de eventos"
|
1018 |
|
1019 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1020 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4539
|
1021 |
msgid "Event Link"
|
1022 |
msgstr "Enlace del evento"
|
1023 |
|
1044 |
msgstr ""
|
1045 |
|
1046 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1047 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4540
|
1048 |
+
#: app/skins/single.php:627 app/skins/single/default.php:118
|
1049 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1050 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1051 |
#: app/widgets/single.php:107
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1111 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1112 |
msgid "Tickets"
|
1113 |
msgstr "Tickets"
|
1114 |
|
1184 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1185 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1186 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1187 |
+
#: app/features/mec/settings.php:937 app/features/mec/single.php:408
|
1188 |
+
#: app/libraries/skins.php:937
|
1189 |
msgid "Label"
|
1190 |
msgstr "Etiqueta"
|
1191 |
|
1256 |
msgstr ""
|
1257 |
|
1258 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1259 |
+
#: app/libraries/main.php:2202
|
1260 |
#, fuzzy
|
1261 |
#| msgid "Name"
|
1262 |
msgid "MEC Name"
|
1263 |
msgstr "Nombre"
|
1264 |
|
1265 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1266 |
+
#: app/libraries/main.php:2231
|
1267 |
#, fuzzy
|
1268 |
#| msgid "Email"
|
1269 |
msgid "MEC Email"
|
1270 |
msgstr "Correo electrónico"
|
1271 |
|
1272 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1273 |
+
#: app/libraries/main.php:2172
|
1274 |
msgid "Text"
|
1275 |
msgstr "Texto"
|
1276 |
|
1277 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1278 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1279 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1280 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2348
|
1281 |
msgid "Tel"
|
1282 |
msgstr "Tel"
|
1283 |
|
1284 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1285 |
+
#: app/libraries/main.php:2290
|
1286 |
msgid "File"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1290 |
+
#: app/libraries/main.php:2377
|
1291 |
msgid "Textarea"
|
1292 |
msgstr "Área de texto"
|
1293 |
|
1294 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1295 |
+
#: app/libraries/main.php:2430
|
1296 |
msgid "Checkboxes"
|
1297 |
msgstr "Checkboxes"
|
1298 |
|
1299 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1300 |
+
#: app/libraries/main.php:2474
|
1301 |
msgid "Radio Buttons"
|
1302 |
msgstr "Botón tipo radio"
|
1303 |
|
1370 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1371 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1372 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1373 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2518
|
1374 |
msgid "Dropdown"
|
1375 |
msgstr "Desplegable"
|
1376 |
|
1377 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1378 |
+
#: app/libraries/main.php:2565
|
1379 |
msgid "Agreement"
|
1380 |
msgstr "Acuerdo"
|
1381 |
|
1382 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1383 |
+
#: app/libraries/main.php:2406
|
1384 |
msgid "Paragraph"
|
1385 |
msgstr "Párrafo"
|
1386 |
|
1418 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1419 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1420 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1421 |
+
#: app/features/mec/settings.php:911 app/features/mec/single.php:398
|
1422 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1423 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1424 |
+
#: app/skins/single.php:875 app/skins/single/default.php:154
|
1425 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1426 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1427 |
msgid "Location"
|
1440 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1441 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1442 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1443 |
+
#: app/features/mec/settings.php:917 app/features/mec/single.php:394
|
1444 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1445 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1446 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4515
|
1447 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
1448 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1449 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1450 |
#: app/skins/single/modern.php:31
|
1597 |
|
1598 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1599 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1600 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
|
1601 |
+
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1602 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1603 |
#: app/skins/single/modern.php:214
|
1604 |
msgid "Labels"
|
1931 |
|
1932 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1933 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1934 |
+
#: app/features/mec/settings.php:1103 app/features/mec/single.php:480
|
1935 |
msgid "Checking ..."
|
1936 |
msgstr "Verificando…"
|
1937 |
|
2319 |
msgstr ""
|
2320 |
|
2321 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2322 |
+
#: app/libraries/main.php:4756 app/skins/agenda/render.php:41
|
2323 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2324 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2325 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2354 |
|
2355 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2356 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2357 |
+
#: app/libraries/main.php:4512
|
2358 |
msgid "Locations"
|
2359 |
msgstr "Lugar"
|
2360 |
|
2461 |
msgid "Don't show map in single event page"
|
2462 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
2463 |
|
2464 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2465 |
#, fuzzy
|
2466 |
#| msgid "Locations"
|
2467 |
msgid "Other Locations"
|
2514 |
|
2515 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2516 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2517 |
+
#: app/libraries/main.php:4514
|
2518 |
msgid "Organizers"
|
2519 |
msgstr "Organizadores"
|
2520 |
|
2635 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2636 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2637 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2638 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
|
2639 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2640 |
+
#: app/features/mec/settings.php:1134 app/features/mec/single.php:14
|
2641 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2642 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2643 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2736 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2737 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2738 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2739 |
+
#: app/skins/single.php:162
|
2740 |
#, fuzzy
|
2741 |
#| msgid "featured event"
|
2742 |
msgid "Related Events"
|
2867 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2868 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2869 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2870 |
+
#: app/libraries/notifications.php:405
|
2871 |
msgid "Booking Reminder"
|
2872 |
msgstr "Recordatorio de reserva"
|
2873 |
|
3047 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3048 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3049 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3050 |
+
#: app/features/mec/settings.php:1098 app/features/mec/single.php:475
|
3051 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3052 |
msgid "Saved"
|
3053 |
msgstr "Guardado"
|
3055 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3056 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3057 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3058 |
+
#: app/features/mec/settings.php:1099 app/features/mec/single.php:476
|
3059 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3060 |
msgid "Settings Saved!"
|
3061 |
msgstr "¡Ajustes guardados!"
|
3063 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3064 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3065 |
#: app/features/mec/notifications.php:735
|
3066 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
|
3067 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
3068 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
3069 |
msgid "Verified"
|
3070 |
msgstr "Verificado"
|
3071 |
|
3072 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3073 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
|
3074 |
#: app/features/mec/single.php:502
|
3075 |
msgid "Please Refresh Page"
|
3076 |
msgstr "Por favor, actualiza la página"
|
4010 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4011 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4012 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4013 |
+
#: app/features/mec/settings.php:924 app/features/mec/single.php:403
|
4014 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4015 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
4016 |
msgid "Speaker"
|
4017 |
msgstr ""
|
4018 |
|
4026 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4027 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4028 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4029 |
+
#: app/features/mec/settings.php:931 app/features/mec/single.php:412
|
4030 |
+
#: app/libraries/skins.php:911
|
4031 |
#, fuzzy
|
4032 |
#| msgid "Tags"
|
4033 |
msgid "Tag"
|
4105 |
msgstr "Ver eventos en Google Maps"
|
4106 |
|
4107 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4108 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
4109 |
msgid "API Key"
|
4110 |
msgstr "API Key"
|
4111 |
|
4112 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
4113 |
+
#: app/features/mec/settings.php:980
|
4114 |
msgid "Required!"
|
4115 |
msgstr "¡Obligatorio!"
|
4116 |
|
4727 |
msgstr ""
|
4728 |
|
4729 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4730 |
+
#: app/libraries/main.php:4521
|
4731 |
msgid "Weekdays"
|
4732 |
msgstr "Días de la semana"
|
4733 |
|
5057 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
+
#: app/features/mec/settings.php:890
|
5061 |
+
msgid "Ajax Live mode"
|
5062 |
+
msgstr ""
|
5063 |
+
|
5064 |
+
#: app/features/mec/settings.php:894
|
5065 |
+
msgid "Ajax mode"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
+
#: app/features/mec/settings.php:895
|
5069 |
+
msgid ""
|
5070 |
+
"if you enable this option, search button disappeared and to use this "
|
5071 |
+
"feature, text input field must be enabled."
|
5072 |
+
msgstr ""
|
5073 |
+
|
5074 |
+
#: app/features/mec/settings.php:901
|
5075 |
+
#, fuzzy
|
5076 |
+
#| msgid "Search Form"
|
5077 |
+
msgid "Search bar fields"
|
5078 |
+
msgstr "Formulario de Búsqueda"
|
5079 |
+
|
5080 |
+
#: app/features/mec/settings.php:943
|
5081 |
+
#, fuzzy
|
5082 |
+
#| msgid "Text Input"
|
5083 |
+
msgid "Text input"
|
5084 |
+
msgstr "Campo de texto"
|
5085 |
+
|
5086 |
+
#: app/features/mec/settings.php:956
|
5087 |
msgid "Enable Mailchimp Integration"
|
5088 |
msgstr "Activar integración con MailChimp"
|
5089 |
|
5090 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
5091 |
msgid "List ID"
|
5092 |
msgstr "ID de la lista"
|
5093 |
|
5094 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
5095 |
msgid "Subscription Status"
|
5096 |
msgstr "Estado Suscripción"
|
5097 |
|
5098 |
+
#: app/features/mec/settings.php:990
|
5099 |
msgid "Subscribe automatically"
|
5100 |
msgstr "Suscribirse automáticamente "
|
5101 |
|
5102 |
+
#: app/features/mec/settings.php:991
|
5103 |
msgid "Subscribe by verification"
|
5104 |
msgstr "Suscribirse por verificación"
|
5105 |
|
5106 |
+
#: app/features/mec/settings.php:996
|
5107 |
msgid ""
|
5108 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5109 |
"by mailchimp for subscription verification."
|
5111 |
"Si eliges “Suscribir por verificación” entonces un email de verificación de "
|
5112 |
"suscripción se le enviará al usuario."
|
5113 |
|
5114 |
+
#: app/features/mec/settings.php:1008
|
5115 |
#, fuzzy
|
5116 |
#| msgid "Filter Options"
|
5117 |
msgid "Upload Field Options"
|
5118 |
msgstr "Opciones de filtros"
|
5119 |
|
5120 |
+
#: app/features/mec/settings.php:1010
|
5121 |
msgid "Mime types"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
+
#: app/features/mec/settings.php:1014
|
5125 |
msgid "Split mime types with \",\"."
|
5126 |
msgstr ""
|
5127 |
|
5128 |
+
#: app/features/mec/settings.php:1014
|
5129 |
msgid "Default: jpeg,jpg,png,pdf"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
+
#: app/features/mec/settings.php:1017
|
5133 |
#, fuzzy
|
5134 |
#| msgid "Maximum Dates"
|
5135 |
msgid "Maximum file size"
|
5136 |
msgstr "Fechas máximas"
|
5137 |
|
5138 |
+
#: app/features/mec/settings.php:1021
|
5139 |
msgid "The unit is Megabyte \"MB\""
|
5140 |
msgstr ""
|
5141 |
|
5849 |
msgid "eg. https://webnus.net"
|
5850 |
msgstr "ej. https://webnus.net"
|
5851 |
|
5852 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5853 |
+
#: app/skins/single.php:813
|
5854 |
msgid "Other Organizers"
|
5855 |
msgstr "En común"
|
5856 |
|
5870 |
msgid "#"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5874 |
msgid "Status"
|
5875 |
msgstr "Estado"
|
5876 |
|
5888 |
msgstr ""
|
5889 |
|
5890 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5891 |
+
#: app/libraries/main.php:4543
|
5892 |
msgid "Ticket"
|
5893 |
msgstr "Ticket"
|
5894 |
|
5900 |
msgid "No bookings found!"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: app/features/search.php:90
|
5904 |
+
msgid "Please enter at least 3 characters and try again"
|
5905 |
+
msgstr ""
|
5906 |
+
|
5907 |
+
#: app/features/search_bar/search_bar.php:26
|
5908 |
+
msgid "Please enter at least 3 characters"
|
5909 |
+
msgstr ""
|
5910 |
+
|
5911 |
#: app/features/search_bar/search_bar.php:28
|
5912 |
+
msgid "Search results will show here"
|
5913 |
+
msgstr ""
|
5914 |
+
|
5915 |
+
#: app/features/search_bar/search_bar.php:39
|
5916 |
#, fuzzy
|
5917 |
#| msgid "Search %s"
|
5918 |
msgid "Search"
|
5919 |
msgstr "Buscar %s"
|
5920 |
|
5921 |
+
#: app/features/search_bar/search_noresult.php:1
|
5922 |
+
msgid "No search result."
|
5923 |
+
msgstr ""
|
5924 |
+
|
5925 |
+
#: app/features/search_bar/search_result.php:11
|
5926 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5927 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5928 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5929 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5930 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5931 |
+
msgid "All of the day"
|
5932 |
+
msgstr "Todo el día"
|
5933 |
+
|
5934 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5935 |
#: app/features/speakers.php:248
|
5936 |
msgid "Job Title"
|
5981 |
msgid "%s Price"
|
5982 |
msgstr "%s Precio"
|
5983 |
|
5984 |
+
#: app/libraries/book.php:539
|
5985 |
msgid "Discount"
|
5986 |
msgstr "Descuento"
|
5987 |
|
5988 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
5989 |
#: app/modules/booking/default.php:401
|
5990 |
msgid "Download Invoice"
|
5991 |
msgstr "Descargar factura"
|
6009 |
msgid "Upgrade"
|
6010 |
msgstr "Actualizar"
|
6011 |
|
6012 |
+
#: app/libraries/factory.php:333
|
6013 |
msgid "day"
|
6014 |
msgstr "día "
|
6015 |
|
6016 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
6017 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6018 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6019 |
msgid "days"
|
6020 |
msgstr "días"
|
6021 |
|
6022 |
+
#: app/libraries/factory.php:335
|
6023 |
msgid "hour"
|
6024 |
msgstr "hora"
|
6025 |
|
6026 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
6027 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6028 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6029 |
msgid "hours"
|
6030 |
msgstr "horas"
|
6031 |
|
6032 |
+
#: app/libraries/factory.php:337
|
6033 |
msgid "minute"
|
6034 |
msgstr "minuto"
|
6035 |
|
6036 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
6037 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6038 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6039 |
msgid "minutes"
|
6040 |
msgstr "minutos"
|
6041 |
|
6042 |
+
#: app/libraries/factory.php:339
|
6043 |
msgid "second"
|
6044 |
msgstr "segundo"
|
6045 |
|
6046 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
6047 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6048 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6049 |
msgid "seconds"
|
6050 |
msgstr "segundos"
|
6051 |
|
6052 |
+
#: app/libraries/factory.php:383
|
6053 |
msgid "MEC Single Sidebar"
|
6054 |
msgstr "barra lateral MEC"
|
6055 |
|
6056 |
+
#: app/libraries/factory.php:384
|
6057 |
msgid "Custom sidebar for single and modal page of MEC."
|
6058 |
msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
|
6059 |
|
6116 |
msgid "Slider View"
|
6117 |
msgstr "Vista del rotativo"
|
6118 |
|
6119 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
6120 |
msgid "SU"
|
6121 |
msgstr "DO"
|
6122 |
|
6123 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
6124 |
msgid "MO"
|
6125 |
msgstr "LU"
|
6126 |
|
6127 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
6128 |
msgid "TU"
|
6129 |
msgstr "MA"
|
6130 |
|
6131 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
6132 |
msgid "WE"
|
6133 |
msgstr "MI"
|
6134 |
|
6135 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
6136 |
msgid "TH"
|
6137 |
msgstr "JU"
|
6138 |
|
6139 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
6140 |
msgid "FR"
|
6141 |
msgstr "VI"
|
6142 |
|
6143 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
6144 |
msgid "SA"
|
6145 |
msgstr "SA"
|
6146 |
|
6292 |
msgid "Request is not valid."
|
6293 |
msgstr "La solicitud no es válida."
|
6294 |
|
6295 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
6296 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
6297 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
6298 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
6299 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
6300 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
6301 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
6302 |
msgid "Sort"
|
6303 |
msgstr "Orden"
|
6304 |
|
6305 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
6306 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
6307 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
6308 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
6309 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
6310 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
6311 |
msgid "Required Field"
|
6312 |
msgstr "Campo obligatorio"
|
6313 |
|
6314 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
6315 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
6316 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
6317 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
6318 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
6319 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
6320 |
msgid "Insert a label for this field"
|
6321 |
msgstr "Introduce una etiqueta para este campo"
|
6322 |
|
6323 |
+
#: app/libraries/main.php:2411
|
6324 |
msgid "HTML and shortcode are allowed."
|
6325 |
msgstr "Se permite HTML"
|
6326 |
|
6327 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
6328 |
+
#: app/libraries/main.php:2542
|
6329 |
msgid "Option"
|
6330 |
msgstr "Opción"
|
6331 |
|
6332 |
+
#: app/libraries/main.php:2576
|
6333 |
#, php-format
|
6334 |
msgid "Instead of %s, the page title with a link will be show."
|
6335 |
msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
|
6336 |
|
6337 |
+
#: app/libraries/main.php:2578
|
6338 |
msgid "Agreement Page"
|
6339 |
msgstr "Página de Acuerdo"
|
6340 |
|
6341 |
+
#: app/libraries/main.php:2589
|
6342 |
msgid "Checked by default"
|
6343 |
msgstr "Marcado por defecto"
|
6344 |
|
6345 |
+
#: app/libraries/main.php:2590
|
6346 |
msgid "Unchecked by default"
|
6347 |
msgstr "Sin marcar por defecto"
|
6348 |
|
6349 |
+
#: app/libraries/main.php:2613
|
6350 |
msgid "Insert a label for this option"
|
6351 |
msgstr "Introduce una etiqueta para esta opción"
|
6352 |
|
6353 |
+
#: app/libraries/main.php:2628
|
6354 |
msgid "Free"
|
6355 |
msgstr "Gratis"
|
6356 |
|
6357 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6358 |
#, fuzzy
|
6359 |
#| msgid "M.E. Calendar"
|
6360 |
msgid "M.E. Calender"
|
6361 |
msgstr "M.E. Calendario"
|
6362 |
|
6363 |
+
#: app/libraries/main.php:3349
|
6364 |
#, php-format
|
6365 |
msgid "Copy of %s"
|
6366 |
msgstr "Copia de %s"
|
6367 |
|
6368 |
+
#: app/libraries/main.php:4022
|
6369 |
msgid "Booked an event."
|
6370 |
msgstr "Has reservado para un evento."
|
6371 |
|
6372 |
+
#: app/libraries/main.php:4063
|
6373 |
#, php-format
|
6374 |
msgid "%s booked %s event."
|
6375 |
msgstr "%s reservado %s evento."
|
6376 |
|
6377 |
+
#: app/libraries/main.php:4506
|
6378 |
msgid "Taxonomies"
|
6379 |
msgstr "Taxonomías"
|
6380 |
|
6381 |
+
#: app/libraries/main.php:4508
|
6382 |
msgid "Category Plural Label"
|
6383 |
msgstr "Categoría Etiqueta plural"
|
6384 |
|
6385 |
+
#: app/libraries/main.php:4509
|
6386 |
msgid "Category Singular Label"
|
6387 |
msgstr "Categoría Etiqueta Singular"
|
6388 |
|
6389 |
+
#: app/libraries/main.php:4510
|
6390 |
msgid "Label Plural Label"
|
6391 |
msgstr "Etiqueta plural"
|
6392 |
|
6393 |
+
#: app/libraries/main.php:4511
|
6394 |
msgid "Label Singular Label"
|
6395 |
msgstr "Etiqueta singular de la etiqueta"
|
6396 |
|
6397 |
+
#: app/libraries/main.php:4511
|
6398 |
msgid "label"
|
6399 |
msgstr "etiqueta"
|
6400 |
|
6401 |
+
#: app/libraries/main.php:4512
|
6402 |
msgid "Location Plural Label"
|
6403 |
msgstr "Ubicación Etiqueta plural"
|
6404 |
|
6405 |
+
#: app/libraries/main.php:4513
|
6406 |
msgid "Location Singular Label"
|
6407 |
msgstr "Etiqueta de ubicación en singular"
|
6408 |
|
6409 |
+
#: app/libraries/main.php:4514
|
6410 |
msgid "Organizer Plural Label"
|
6411 |
msgstr "Etiqueta del organizador en plural"
|
6412 |
|
6413 |
+
#: app/libraries/main.php:4515
|
6414 |
msgid "Organizer Singular Label"
|
6415 |
msgstr "Etiqueta Singular del Organizador"
|
6416 |
|
6417 |
+
#: app/libraries/main.php:4516
|
6418 |
msgid "Speaker Plural Label"
|
6419 |
msgstr ""
|
6420 |
|
6421 |
+
#: app/libraries/main.php:4517
|
6422 |
msgid "Speaker Singular Label"
|
6423 |
msgstr ""
|
6424 |
|
6425 |
+
#: app/libraries/main.php:4523
|
6426 |
msgid "Sunday abbreviation"
|
6427 |
msgstr "Abreviatura de Domingo"
|
6428 |
|
6429 |
+
#: app/libraries/main.php:4524
|
6430 |
msgid "Monday abbreviation"
|
6431 |
msgstr "Abreviatura de Lunes"
|
6432 |
|
6433 |
+
#: app/libraries/main.php:4525
|
6434 |
msgid "Tuesday abbreviation"
|
6435 |
msgstr "Abreviatura de Martes"
|
6436 |
|
6437 |
+
#: app/libraries/main.php:4526
|
6438 |
msgid "Wednesday abbreviation"
|
6439 |
msgstr "Abreviatura de Miércoles "
|
6440 |
|
6441 |
+
#: app/libraries/main.php:4527
|
6442 |
msgid "Thursday abbreviation"
|
6443 |
msgstr "Abreviatura de Jueves"
|
6444 |
|
6445 |
+
#: app/libraries/main.php:4528
|
6446 |
msgid "Friday abbreviation"
|
6447 |
msgstr "Abreviatura de Viernes"
|
6448 |
|
6449 |
+
#: app/libraries/main.php:4529
|
6450 |
msgid "Saturday abbreviation"
|
6451 |
msgstr "Abreviatura de Sábado "
|
6452 |
|
6453 |
+
#: app/libraries/main.php:4533
|
6454 |
msgid "Others"
|
6455 |
msgstr "Otros"
|
6456 |
|
6457 |
+
#: app/libraries/main.php:4535
|
6458 |
msgid "Booking Success Message"
|
6459 |
msgstr "Mensaje de reserva correcta"
|
6460 |
|
6461 |
+
#: app/libraries/main.php:4535
|
6462 |
msgid ""
|
6463 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6464 |
"needed, please check your email."
|
6466 |
"Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
|
6467 |
"una verificación, por favor consulta tu correo."
|
6468 |
|
6469 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6470 |
msgid "Register Button"
|
6471 |
msgstr "Botón de registro"
|
6472 |
|
6473 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6474 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6475 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6476 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6477 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6478 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6479 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6480 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6481 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6482 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6487 |
msgid "REGISTER"
|
6488 |
msgstr "REGISTRO"
|
6489 |
|
6490 |
+
#: app/libraries/main.php:4537
|
6491 |
msgid "View Detail Button"
|
6492 |
msgstr "Ver detalle del botón"
|
6493 |
|
6494 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6495 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6496 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6497 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6502 |
msgid "View Detail"
|
6503 |
msgstr "Ver detalle"
|
6504 |
|
6505 |
+
#: app/libraries/main.php:4538
|
6506 |
msgid "Event Detail Button"
|
6507 |
msgstr "Botón de detalle del evento"
|
6508 |
|
6509 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6510 |
msgid "Event Detail"
|
6511 |
msgstr "Detalle del evento"
|
6512 |
|
6513 |
+
#: app/libraries/main.php:4540
|
6514 |
msgid "More Info Link"
|
6515 |
msgstr "Enlace a Más Información"
|
6516 |
|
6517 |
+
#: app/libraries/main.php:4543
|
6518 |
msgid "Ticket (Singular)"
|
6519 |
msgstr "Entrada (Singular)"
|
6520 |
|
6521 |
+
#: app/libraries/main.php:4544
|
6522 |
msgid "Tickets (Plural)"
|
6523 |
msgstr "Entradas (Plural)"
|
6524 |
|
6525 |
+
#: app/libraries/main.php:4630
|
6526 |
msgid "EventON"
|
6527 |
msgstr "EventON"
|
6528 |
|
6529 |
+
#: app/libraries/main.php:4631
|
6530 |
msgid "The Events Calendar"
|
6531 |
msgstr "The Events Calendar"
|
6532 |
|
6533 |
+
#: app/libraries/main.php:4632
|
6534 |
msgid "Events Schedule WP Plugin"
|
6535 |
msgstr "Events Schedule WP Plugin"
|
6536 |
|
6537 |
+
#: app/libraries/main.php:4633
|
6538 |
msgid "Calendarize It"
|
6539 |
msgstr "Ponlo al calendario"
|
6540 |
|
6541 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6542 |
msgid "Confirmed"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6546 |
msgid "Rejected"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6550 |
msgid "Pending"
|
6551 |
msgstr ""
|
6552 |
|
6553 |
+
#: app/libraries/main.php:4757
|
6554 |
msgid "Waiting"
|
6555 |
msgstr ""
|
6556 |
|
6557 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6558 |
msgid "Skin controller does not exist."
|
6559 |
msgstr "No existe skin controller."
|
6560 |
|
6562 |
msgid "Please verify your email."
|
6563 |
msgstr "Por favor comprueba tu email"
|
6564 |
|
6565 |
+
#: app/libraries/notifications.php:125
|
6566 |
msgid "Your booking is received."
|
6567 |
msgstr "Se ha recibido tu reserva."
|
6568 |
|
6569 |
+
#: app/libraries/notifications.php:193
|
6570 |
msgid "Your booking is confirmed."
|
6571 |
msgstr "Tu reserva ha sido confirmada."
|
6572 |
|
6573 |
+
#: app/libraries/notifications.php:282
|
6574 |
#, fuzzy
|
6575 |
#| msgid "Your booking cannot be canceled."
|
6576 |
msgid "booking canceled."
|
6577 |
msgstr "La reserva no puede cancelarse."
|
6578 |
|
6579 |
+
#: app/libraries/notifications.php:337
|
6580 |
msgid "A new booking is received."
|
6581 |
msgstr "Nueva reserva recibida."
|
6582 |
|
6583 |
+
#: app/libraries/notifications.php:488
|
6584 |
msgid "A new event is added."
|
6585 |
msgstr "Se ha añadido un nuevo evento."
|
6586 |
|
6587 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6588 |
msgid "to"
|
6589 |
msgstr "a"
|
6590 |
|
6591 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6592 |
msgid "+ Add to Google Calendar"
|
6593 |
msgstr "+ Añadir Google Calendar"
|
6594 |
|
6595 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6596 |
msgid "+ iCal export"
|
6597 |
msgstr "Exportación + iCal"
|
6598 |
|
6599 |
+
#: app/libraries/notifications.php:752
|
6600 |
msgid "Yes"
|
6601 |
msgstr "Sí"
|
6602 |
|
6603 |
+
#: app/libraries/notifications.php:752
|
6604 |
msgid "No"
|
6605 |
msgstr "No"
|
6606 |
|
6607 |
+
#: app/libraries/skins.php:958
|
6608 |
msgid "Ignore month and years"
|
6609 |
msgstr "Ignorar meses y años"
|
6610 |
|
6685 |
msgid "Get Directions"
|
6686 |
msgstr "Cómo llegar"
|
6687 |
|
6688 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6689 |
msgid "Share this event"
|
6690 |
msgstr "Compartir este evento"
|
6691 |
|
6712 |
msgid "Go to occurrence page"
|
6713 |
msgstr "Ir a la página de repetición"
|
6714 |
|
6715 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6716 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6717 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6718 |
msgid "Time"
|
6824 |
msgid "List"
|
6825 |
msgstr "Lista"
|
6826 |
|
6827 |
+
#: app/skins/masonry.php:238
|
6828 |
msgid "All"
|
6829 |
msgstr "Todo"
|
6830 |
|
6842 |
msgid "No Events"
|
6843 |
msgstr "Sin eventos"
|
6844 |
|
6845 |
+
#: app/skins/single.php:204
|
6846 |
msgid "Home"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6850 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6851 |
#: app/skins/single/modern.php:256
|
6852 |
msgid "Sold out!"
|
6853 |
msgstr "¡Agotado!"
|
6854 |
|
6855 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6856 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6857 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6858 |
#: app/skins/single/modern.php:41
|
6859 |
msgid "Phone"
|
6860 |
msgstr "Teléfono"
|
6861 |
|
6862 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6863 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6864 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6865 |
#: app/skins/single/modern.php:55
|
6866 |
msgid "Website"
|
6867 |
msgstr "Web"
|
6868 |
|
6869 |
+
#: app/skins/single.php:912
|
6870 |
msgid "Speakers:"
|
6871 |
msgstr ""
|
6872 |
|
languages/modern-events-calendar-lite-fr_FR.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-fr_FR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-08-
|
5 |
-
"PO-Revision-Date: 2019-08-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
@@ -336,7 +336,7 @@ msgstr "Intégration BuddyPress"
|
|
336 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
337 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
338 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
339 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
340 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
341 |
#: app/features/mec/styling.php:59
|
342 |
msgid "Mailchimp Integration"
|
@@ -402,9 +402,9 @@ msgstr "Aucun événement trouvé dans la corbeille !"
|
|
402 |
#: app/features/mec/meta_boxes/search_form.php:453
|
403 |
#: app/features/mec/meta_boxes/search_form.php:514
|
404 |
#: app/features/mec/meta_boxes/search_form.php:575
|
405 |
-
#: app/features/mec/settings.php:
|
406 |
-
#: app/libraries/main.php:
|
407 |
-
#: app/skins/single.php:
|
408 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
409 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
410 |
msgid "Category"
|
@@ -412,7 +412,7 @@ msgstr "Catégorie"
|
|
412 |
|
413 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
414 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
415 |
-
#: app/libraries/main.php:
|
416 |
msgid "Categories"
|
417 |
msgstr "Catégories"
|
418 |
|
@@ -487,13 +487,13 @@ msgstr "Détails"
|
|
487 |
#: app/features/events.php:322 app/features/events.php:3168
|
488 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
489 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
490 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
491 |
#: app/widgets/single.php:103
|
492 |
msgid "Event Cost"
|
493 |
msgstr "Tarif de l'événement"
|
494 |
|
495 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
496 |
-
#: app/libraries/main.php:
|
497 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
498 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
499 |
msgid "Cost"
|
@@ -510,7 +510,7 @@ msgstr "Coordonnées de l'Invité"
|
|
510 |
#: app/features/events.php:432 app/features/events.php:2250
|
511 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
512 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
513 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
514 |
#: app/modules/booking/steps/form.php:37
|
515 |
msgid "Name"
|
516 |
msgstr "Nom"
|
@@ -521,10 +521,10 @@ msgstr "Nom"
|
|
521 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
522 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
523 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
524 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
525 |
-
#: app/libraries/notifications.php:
|
526 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
527 |
-
#: app/skins/single.php:
|
528 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
529 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
530 |
msgid "Email"
|
@@ -670,14 +670,14 @@ msgstr ""
|
|
670 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
671 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
672 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
673 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
674 |
-
#: app/features/mec/settings.php:
|
675 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
676 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
677 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
678 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
679 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
680 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
681 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
682 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
683 |
#: app/skins/single/modern.php:133
|
@@ -888,9 +888,9 @@ msgstr "Exclure certains jours"
|
|
888 |
|
889 |
#: app/features/events.php:1130 app/features/events.php:2340
|
890 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
891 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
892 |
#: app/modules/booking/steps/tickets.php:22
|
893 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
894 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
895 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
896 |
msgid "Date"
|
@@ -908,7 +908,7 @@ msgid "Day 1"
|
|
908 |
msgstr ""
|
909 |
|
910 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
911 |
-
#: app/skins/single.php:
|
912 |
msgid "Hourly Schedule"
|
913 |
msgstr "Programme"
|
914 |
|
@@ -947,14 +947,14 @@ msgstr "Titre"
|
|
947 |
#: app/features/events.php:2154 app/features/events.php:2196
|
948 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
949 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
950 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
951 |
-
#: app/libraries/main.php:
|
952 |
-
#: app/libraries/main.php:
|
953 |
-
#: app/libraries/main.php:
|
954 |
-
#: app/libraries/main.php:
|
955 |
-
#: app/libraries/main.php:
|
956 |
-
#: app/libraries/main.php:
|
957 |
-
#: app/libraries/main.php:
|
958 |
msgid "Remove"
|
959 |
msgstr "Supprimer"
|
960 |
|
@@ -987,7 +987,7 @@ msgstr "Description"
|
|
987 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
988 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
989 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
990 |
-
#: app/features/speakers.php:60 app/libraries/main.php:
|
991 |
#: app/modules/speakers/details.php:18
|
992 |
msgid "Speakers"
|
993 |
msgstr ""
|
@@ -1004,7 +1004,7 @@ msgid "Event Links"
|
|
1004 |
msgstr "Liens de l'évenements"
|
1005 |
|
1006 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1007 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1008 |
msgid "Event Link"
|
1009 |
msgstr "Lien de l'événement"
|
1010 |
|
@@ -1029,8 +1029,8 @@ msgid "URL Shortener"
|
|
1029 |
msgstr ""
|
1030 |
|
1031 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1032 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1033 |
-
#: app/skins/single.php:
|
1034 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1035 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1036 |
#: app/widgets/single.php:107
|
@@ -1093,7 +1093,7 @@ msgid "12"
|
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1096 |
-
#: app/libraries/main.php:
|
1097 |
msgid "Tickets"
|
1098 |
msgstr "Billets"
|
1099 |
|
@@ -1167,8 +1167,8 @@ msgstr "Libellé du prix"
|
|
1167 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1168 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1169 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1170 |
-
#: app/features/mec/settings.php:
|
1171 |
-
#: app/libraries/skins.php:
|
1172 |
msgid "Label"
|
1173 |
msgstr "Label"
|
1174 |
|
@@ -1243,48 +1243,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1243 |
msgstr ""
|
1244 |
|
1245 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1246 |
-
#: app/libraries/main.php:
|
1247 |
#, fuzzy
|
1248 |
#| msgid "Name"
|
1249 |
msgid "MEC Name"
|
1250 |
msgstr "Nom"
|
1251 |
|
1252 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1253 |
-
#: app/libraries/main.php:
|
1254 |
#, fuzzy
|
1255 |
#| msgid "Email"
|
1256 |
msgid "MEC Email"
|
1257 |
msgstr "Email"
|
1258 |
|
1259 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1260 |
-
#: app/libraries/main.php:
|
1261 |
msgid "Text"
|
1262 |
msgstr "Texte"
|
1263 |
|
1264 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1265 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1266 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1267 |
-
#: app/features/speakers.php:249 app/libraries/main.php:
|
1268 |
msgid "Tel"
|
1269 |
msgstr "Téléphone"
|
1270 |
|
1271 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1272 |
-
#: app/libraries/main.php:
|
1273 |
msgid "File"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1277 |
-
#: app/libraries/main.php:
|
1278 |
msgid "Textarea"
|
1279 |
msgstr "Zone de texte"
|
1280 |
|
1281 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1282 |
-
#: app/libraries/main.php:
|
1283 |
msgid "Checkboxes"
|
1284 |
msgstr "Boîtes à cocher"
|
1285 |
|
1286 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1287 |
-
#: app/libraries/main.php:
|
1288 |
msgid "Radio Buttons"
|
1289 |
msgstr "Boutons Radio"
|
1290 |
|
@@ -1357,17 +1357,17 @@ msgstr "Boutons Radio"
|
|
1357 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1358 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1359 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1360 |
-
#: app/features/mec/regform.php:277 app/libraries/main.php:
|
1361 |
msgid "Dropdown"
|
1362 |
msgstr "Menu déroulant"
|
1363 |
|
1364 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1365 |
-
#: app/libraries/main.php:
|
1366 |
msgid "Agreement"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1370 |
-
#: app/libraries/main.php:
|
1371 |
msgid "Paragraph"
|
1372 |
msgstr "Paragraphe"
|
1373 |
|
@@ -1405,10 +1405,10 @@ msgstr "organisateurs"
|
|
1405 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1406 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1407 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1408 |
-
#: app/features/mec/settings.php:
|
1409 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1410 |
-
#: app/libraries/skins.php:
|
1411 |
-
#: app/skins/single.php:
|
1412 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1413 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1414 |
msgid "Location"
|
@@ -1427,11 +1427,11 @@ msgstr "Lieu"
|
|
1427 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1428 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1429 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1430 |
-
#: app/features/mec/settings.php:
|
1431 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1432 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1433 |
-
#: app/features/organizers.php:271 app/libraries/main.php:
|
1434 |
-
#: app/libraries/skins.php:
|
1435 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1436 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1437 |
#: app/skins/single/modern.php:31
|
@@ -1582,8 +1582,8 @@ msgstr "Supprimer l'image"
|
|
1582 |
|
1583 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1584 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1585 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1586 |
-
#: app/skins/single.php:
|
1587 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1588 |
#: app/skins/single/modern.php:214
|
1589 |
msgid "Labels"
|
@@ -1925,7 +1925,7 @@ msgstr "Ajouter à Google Agenda"
|
|
1925 |
|
1926 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1927 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1928 |
-
#: app/features/mec/settings.php:
|
1929 |
msgid "Checking ..."
|
1930 |
msgstr "Vérification..."
|
1931 |
|
@@ -2340,7 +2340,7 @@ msgid "Featured"
|
|
2340 |
msgstr "Image Principale"
|
2341 |
|
2342 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2343 |
-
#: app/libraries/main.php:
|
2344 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2345 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2346 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
@@ -2375,7 +2375,7 @@ msgstr "%s événement"
|
|
2375 |
|
2376 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2377 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2378 |
-
#: app/libraries/main.php:
|
2379 |
msgid "Locations"
|
2380 |
msgstr "Lieux"
|
2381 |
|
@@ -2482,7 +2482,7 @@ msgstr "Choisir une image"
|
|
2482 |
msgid "Don't show map in single event page"
|
2483 |
msgstr "Ne pas afficher de carte pour cet événement"
|
2484 |
|
2485 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2486 |
#, fuzzy
|
2487 |
#| msgid "Search Locations"
|
2488 |
msgid "Other Locations"
|
@@ -2539,7 +2539,7 @@ msgstr "Aide"
|
|
2539 |
|
2540 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2541 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2542 |
-
#: app/libraries/main.php:
|
2543 |
msgid "Organizers"
|
2544 |
msgstr "Organisateurs"
|
2545 |
|
@@ -2660,9 +2660,9 @@ msgstr ""
|
|
2660 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2661 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2662 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2663 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2664 |
-
#: app/features/mec/settings.php:
|
2665 |
-
#: app/features/mec/settings.php:
|
2666 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2667 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2668 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
@@ -2762,7 +2762,7 @@ msgstr "Tous les Lieux"
|
|
2762 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2763 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2764 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2765 |
-
#: app/skins/single.php:
|
2766 |
#, fuzzy
|
2767 |
#| msgid "featured event"
|
2768 |
msgid "Related Events"
|
@@ -2893,7 +2893,7 @@ msgstr ""
|
|
2893 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2894 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2895 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2896 |
-
#: app/libraries/notifications.php:
|
2897 |
msgid "Booking Reminder"
|
2898 |
msgstr ""
|
2899 |
|
@@ -3073,7 +3073,7 @@ msgstr ""
|
|
3073 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3074 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3075 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3076 |
-
#: app/features/mec/settings.php:
|
3077 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3078 |
msgid "Saved"
|
3079 |
msgstr "Sauvegardé"
|
@@ -3081,7 +3081,7 @@ msgstr "Sauvegardé"
|
|
3081 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3082 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3083 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3084 |
-
#: app/features/mec/settings.php:
|
3085 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3086 |
msgid "Settings Saved!"
|
3087 |
msgstr ""
|
@@ -3089,14 +3089,14 @@ msgstr ""
|
|
3089 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3090 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3091 |
#: app/features/mec/notifications.php:735
|
3092 |
-
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:
|
3093 |
-
#: app/features/mec/settings.php:
|
3094 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
3095 |
msgid "Verified"
|
3096 |
msgstr "Vérifié"
|
3097 |
|
3098 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3099 |
-
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:
|
3100 |
#: app/features/mec/single.php:502
|
3101 |
msgid "Please Refresh Page"
|
3102 |
msgstr "Merci de Rafraichir la Page"
|
@@ -4046,9 +4046,9 @@ msgstr "Désactivé"
|
|
4046 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4047 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4048 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4049 |
-
#: app/features/mec/settings.php:
|
4050 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4051 |
-
#: app/libraries/main.php:
|
4052 |
msgid "Speaker"
|
4053 |
msgstr ""
|
4054 |
|
@@ -4062,8 +4062,8 @@ msgstr ""
|
|
4062 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4063 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4064 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4065 |
-
#: app/features/mec/settings.php:
|
4066 |
-
#: app/libraries/skins.php:
|
4067 |
#, fuzzy
|
4068 |
#| msgid "Tags"
|
4069 |
msgid "Tag"
|
@@ -4145,12 +4145,12 @@ msgid "Show Google Maps on event page"
|
|
4145 |
msgstr "Montrer la Carte sur les pages d'événement"
|
4146 |
|
4147 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4148 |
-
#: app/features/mec/settings.php:
|
4149 |
msgid "API Key"
|
4150 |
msgstr "Clés API"
|
4151 |
|
4152 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
4153 |
-
#: app/features/mec/settings.php:
|
4154 |
msgid "Required!"
|
4155 |
msgstr "Requis !"
|
4156 |
|
@@ -4769,7 +4769,7 @@ msgid ""
|
|
4769 |
msgstr ""
|
4770 |
|
4771 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4772 |
-
#: app/libraries/main.php:
|
4773 |
msgid "Weekdays"
|
4774 |
msgstr "Jours de la Semaine"
|
4775 |
|
@@ -5097,31 +5097,53 @@ msgid ""
|
|
5097 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5098 |
msgstr ""
|
5099 |
|
5100 |
-
#: app/features/mec/settings.php:
|
5101 |
-
msgid "
|
|
|
|
|
|
|
|
|
5102 |
msgstr ""
|
5103 |
|
5104 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5105 |
msgid "Enable Mailchimp Integration"
|
5106 |
msgstr "Activer l'intégration de MailChimp"
|
5107 |
|
5108 |
-
#: app/features/mec/settings.php:
|
5109 |
msgid "List ID"
|
5110 |
msgstr "ID de Liste"
|
5111 |
|
5112 |
-
#: app/features/mec/settings.php:
|
5113 |
msgid "Subscription Status"
|
5114 |
msgstr "Statut des Souscriptions"
|
5115 |
|
5116 |
-
#: app/features/mec/settings.php:
|
5117 |
msgid "Subscribe automatically"
|
5118 |
msgstr "Souscrire Automatiquement"
|
5119 |
|
5120 |
-
#: app/features/mec/settings.php:
|
5121 |
msgid "Subscribe by verification"
|
5122 |
msgstr "Souscrire après vérification"
|
5123 |
|
5124 |
-
#: app/features/mec/settings.php:
|
5125 |
msgid ""
|
5126 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5127 |
"by mailchimp for subscription verification."
|
@@ -5129,31 +5151,31 @@ msgstr ""
|
|
5129 |
"Si vous choisissez \"Souscrire après vérification\", un email sera envoyé à "
|
5130 |
"l'utilisateur par Mailchimp pour valider son inscription."
|
5131 |
|
5132 |
-
#: app/features/mec/settings.php:
|
5133 |
#, fuzzy
|
5134 |
#| msgid "Filter Options"
|
5135 |
msgid "Upload Field Options"
|
5136 |
msgstr "Options des filtres"
|
5137 |
|
5138 |
-
#: app/features/mec/settings.php:
|
5139 |
msgid "Mime types"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
-
#: app/features/mec/settings.php:
|
5143 |
msgid "Split mime types with \",\"."
|
5144 |
msgstr ""
|
5145 |
|
5146 |
-
#: app/features/mec/settings.php:
|
5147 |
msgid "Default: jpeg,jpg,png,pdf"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
-
#: app/features/mec/settings.php:
|
5151 |
#, fuzzy
|
5152 |
#| msgid "Amount (Per Ticket)"
|
5153 |
msgid "Maximum file size"
|
5154 |
msgstr "Montant (par Billet)"
|
5155 |
|
5156 |
-
#: app/features/mec/settings.php:
|
5157 |
msgid "The unit is Megabyte \"MB\""
|
5158 |
msgstr ""
|
5159 |
|
@@ -5887,8 +5909,8 @@ msgstr "ex : votre@surnom.com"
|
|
5887 |
msgid "eg. https://webnus.net"
|
5888 |
msgstr "http://webnus.biz"
|
5889 |
|
5890 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5891 |
-
#: app/skins/single.php:
|
5892 |
msgid "Other Organizers"
|
5893 |
msgstr "Autres organisateurs"
|
5894 |
|
@@ -5909,7 +5931,7 @@ msgstr "Merde de vous %s/%s pour sélectionner une image associée."
|
|
5909 |
msgid "#"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5913 |
msgid "Status"
|
5914 |
msgstr ""
|
5915 |
|
@@ -5929,7 +5951,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5929 |
msgstr ""
|
5930 |
|
5931 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5932 |
-
#: app/libraries/main.php:
|
5933 |
msgid "Ticket"
|
5934 |
msgstr "Billets"
|
5935 |
|
@@ -5943,11 +5965,36 @@ msgstr "Vérification"
|
|
5943 |
msgid "No bookings found!"
|
5944 |
msgstr "Aucune réservation trouvée !"
|
5945 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5946 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5947 |
#, fuzzy
|
5948 |
msgid "Search"
|
5949 |
msgstr "Rechercher %s"
|
5950 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5951 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5952 |
#: app/features/speakers.php:248
|
5953 |
#, fuzzy
|
@@ -6014,11 +6061,11 @@ msgstr ""
|
|
6014 |
msgid "%s Price"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
-
#: app/libraries/book.php:
|
6018 |
msgid "Discount"
|
6019 |
msgstr "Réduction"
|
6020 |
|
6021 |
-
#: app/libraries/book.php:
|
6022 |
#: app/modules/booking/default.php:401
|
6023 |
msgid "Download Invoice"
|
6024 |
msgstr ""
|
@@ -6042,51 +6089,51 @@ msgctxt "plugin link"
|
|
6042 |
msgid "Upgrade"
|
6043 |
msgstr ""
|
6044 |
|
6045 |
-
#: app/libraries/factory.php:
|
6046 |
msgid "day"
|
6047 |
msgstr "jour"
|
6048 |
|
6049 |
-
#: app/libraries/factory.php:
|
6050 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6051 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6052 |
msgid "days"
|
6053 |
msgstr "jours"
|
6054 |
|
6055 |
-
#: app/libraries/factory.php:
|
6056 |
msgid "hour"
|
6057 |
msgstr "heure"
|
6058 |
|
6059 |
-
#: app/libraries/factory.php:
|
6060 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6061 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6062 |
msgid "hours"
|
6063 |
msgstr "heures"
|
6064 |
|
6065 |
-
#: app/libraries/factory.php:
|
6066 |
msgid "minute"
|
6067 |
msgstr "minute"
|
6068 |
|
6069 |
-
#: app/libraries/factory.php:
|
6070 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6071 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6072 |
msgid "minutes"
|
6073 |
msgstr "minutes"
|
6074 |
|
6075 |
-
#: app/libraries/factory.php:
|
6076 |
msgid "second"
|
6077 |
msgstr "seconde"
|
6078 |
|
6079 |
-
#: app/libraries/factory.php:
|
6080 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6081 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6082 |
msgid "seconds"
|
6083 |
msgstr "secondes"
|
6084 |
|
6085 |
-
#: app/libraries/factory.php:
|
6086 |
msgid "MEC Single Sidebar"
|
6087 |
msgstr "Barre latérale M.E.C."
|
6088 |
|
6089 |
-
#: app/libraries/factory.php:
|
6090 |
msgid "Custom sidebar for single and modal page of MEC."
|
6091 |
msgstr ""
|
6092 |
"Barre latérale personnalisée pour les pages d'événement et les pop-ups "
|
@@ -6151,31 +6198,31 @@ msgstr "Vue Caroussel"
|
|
6151 |
msgid "Slider View"
|
6152 |
msgstr "Vue sur Slider"
|
6153 |
|
6154 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6155 |
msgid "SU"
|
6156 |
msgstr "DIM."
|
6157 |
|
6158 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6159 |
msgid "MO"
|
6160 |
msgstr "LUN."
|
6161 |
|
6162 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6163 |
msgid "TU"
|
6164 |
msgstr "MAR."
|
6165 |
|
6166 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6167 |
msgid "WE"
|
6168 |
msgstr "MER."
|
6169 |
|
6170 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6171 |
msgid "TH"
|
6172 |
msgstr "JEU."
|
6173 |
|
6174 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6175 |
msgid "FR"
|
6176 |
msgstr "VEN."
|
6177 |
|
6178 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6179 |
msgid "SA"
|
6180 |
msgstr "SAM."
|
6181 |
|
@@ -6327,177 +6374,177 @@ msgstr "Export vers iCal arrêté !"
|
|
6327 |
msgid "Request is not valid."
|
6328 |
msgstr "Requête invalide !"
|
6329 |
|
6330 |
-
#: app/libraries/main.php:
|
6331 |
-
#: app/libraries/main.php:
|
6332 |
-
#: app/libraries/main.php:
|
6333 |
-
#: app/libraries/main.php:
|
6334 |
-
#: app/libraries/main.php:
|
6335 |
-
#: app/libraries/main.php:
|
6336 |
-
#: app/libraries/main.php:
|
6337 |
msgid "Sort"
|
6338 |
msgstr "Trier"
|
6339 |
|
6340 |
-
#: app/libraries/main.php:
|
6341 |
-
#: app/libraries/main.php:
|
6342 |
-
#: app/libraries/main.php:
|
6343 |
-
#: app/libraries/main.php:
|
6344 |
-
#: app/libraries/main.php:
|
6345 |
-
#: app/libraries/main.php:
|
6346 |
msgid "Required Field"
|
6347 |
msgstr "Champ obligatoire"
|
6348 |
|
6349 |
-
#: app/libraries/main.php:
|
6350 |
-
#: app/libraries/main.php:
|
6351 |
-
#: app/libraries/main.php:
|
6352 |
-
#: app/libraries/main.php:
|
6353 |
-
#: app/libraries/main.php:
|
6354 |
-
#: app/libraries/main.php:
|
6355 |
msgid "Insert a label for this field"
|
6356 |
msgstr "Insérez une label pour ce champ"
|
6357 |
|
6358 |
-
#: app/libraries/main.php:
|
6359 |
msgid "HTML and shortcode are allowed."
|
6360 |
msgstr "HTML et shortcode sont autorisés."
|
6361 |
|
6362 |
-
#: app/libraries/main.php:
|
6363 |
-
#: app/libraries/main.php:
|
6364 |
msgid "Option"
|
6365 |
msgstr "Option"
|
6366 |
|
6367 |
-
#: app/libraries/main.php:
|
6368 |
#, php-format
|
6369 |
msgid "Instead of %s, the page title with a link will be show."
|
6370 |
msgstr ""
|
6371 |
|
6372 |
-
#: app/libraries/main.php:
|
6373 |
msgid "Agreement Page"
|
6374 |
msgstr ""
|
6375 |
|
6376 |
-
#: app/libraries/main.php:
|
6377 |
msgid "Checked by default"
|
6378 |
msgstr ""
|
6379 |
|
6380 |
-
#: app/libraries/main.php:
|
6381 |
msgid "Unchecked by default"
|
6382 |
msgstr ""
|
6383 |
|
6384 |
-
#: app/libraries/main.php:
|
6385 |
msgid "Insert a label for this option"
|
6386 |
msgstr "Insérez une étiquette pour cette option"
|
6387 |
|
6388 |
-
#: app/libraries/main.php:
|
6389 |
msgid "Free"
|
6390 |
msgstr "Gratuite"
|
6391 |
|
6392 |
-
#: app/libraries/main.php:
|
6393 |
#, fuzzy
|
6394 |
#| msgid "M.E. Calendar"
|
6395 |
msgid "M.E. Calender"
|
6396 |
msgstr "M.E Calendrier"
|
6397 |
|
6398 |
-
#: app/libraries/main.php:
|
6399 |
#, php-format
|
6400 |
msgid "Copy of %s"
|
6401 |
msgstr "Copie de %s"
|
6402 |
|
6403 |
-
#: app/libraries/main.php:
|
6404 |
msgid "Booked an event."
|
6405 |
msgstr "Réserver un Évènements"
|
6406 |
|
6407 |
-
#: app/libraries/main.php:
|
6408 |
#, php-format
|
6409 |
msgid "%s booked %s event."
|
6410 |
msgstr "%s réservé %s événement"
|
6411 |
|
6412 |
-
#: app/libraries/main.php:
|
6413 |
msgid "Taxonomies"
|
6414 |
msgstr "Taxonomies"
|
6415 |
|
6416 |
-
#: app/libraries/main.php:
|
6417 |
msgid "Category Plural Label"
|
6418 |
msgstr "Catégorie au pluriel"
|
6419 |
|
6420 |
-
#: app/libraries/main.php:
|
6421 |
msgid "Category Singular Label"
|
6422 |
msgstr "Catégorie au singulier"
|
6423 |
|
6424 |
-
#: app/libraries/main.php:
|
6425 |
msgid "Label Plural Label"
|
6426 |
msgstr "Étiquettes au pluriel"
|
6427 |
|
6428 |
-
#: app/libraries/main.php:
|
6429 |
msgid "Label Singular Label"
|
6430 |
msgstr "Étiquettes au singulier"
|
6431 |
|
6432 |
-
#: app/libraries/main.php:
|
6433 |
msgid "label"
|
6434 |
msgstr "texte"
|
6435 |
|
6436 |
-
#: app/libraries/main.php:
|
6437 |
msgid "Location Plural Label"
|
6438 |
msgstr "Lieu au pluriel"
|
6439 |
|
6440 |
-
#: app/libraries/main.php:
|
6441 |
msgid "Location Singular Label"
|
6442 |
msgstr "Lieu au singulier"
|
6443 |
|
6444 |
-
#: app/libraries/main.php:
|
6445 |
msgid "Organizer Plural Label"
|
6446 |
msgstr "Organisateur au pluriel"
|
6447 |
|
6448 |
-
#: app/libraries/main.php:
|
6449 |
msgid "Organizer Singular Label"
|
6450 |
msgstr "Organisateur au singulier"
|
6451 |
|
6452 |
-
#: app/libraries/main.php:
|
6453 |
#, fuzzy
|
6454 |
#| msgid "Label Plural Label"
|
6455 |
msgid "Speaker Plural Label"
|
6456 |
msgstr "Étiquettes au pluriel"
|
6457 |
|
6458 |
-
#: app/libraries/main.php:
|
6459 |
#, fuzzy
|
6460 |
#| msgid "Label Singular Label"
|
6461 |
msgid "Speaker Singular Label"
|
6462 |
msgstr "Étiquettes au singulier"
|
6463 |
|
6464 |
-
#: app/libraries/main.php:
|
6465 |
msgid "Sunday abbreviation"
|
6466 |
msgstr "Abréviation de Dimanche"
|
6467 |
|
6468 |
-
#: app/libraries/main.php:
|
6469 |
msgid "Monday abbreviation"
|
6470 |
msgstr "Abréviation de Lundi"
|
6471 |
|
6472 |
-
#: app/libraries/main.php:
|
6473 |
msgid "Tuesday abbreviation"
|
6474 |
msgstr "Abréviation de Mardi"
|
6475 |
|
6476 |
-
#: app/libraries/main.php:
|
6477 |
msgid "Wednesday abbreviation"
|
6478 |
msgstr "Abréviation de Mercredi"
|
6479 |
|
6480 |
-
#: app/libraries/main.php:
|
6481 |
msgid "Thursday abbreviation"
|
6482 |
msgstr "Abréviation de Jeudi"
|
6483 |
|
6484 |
-
#: app/libraries/main.php:
|
6485 |
msgid "Friday abbreviation"
|
6486 |
msgstr "Abréviation de Vendredi"
|
6487 |
|
6488 |
-
#: app/libraries/main.php:
|
6489 |
msgid "Saturday abbreviation"
|
6490 |
msgstr "Abréviation de Samedi"
|
6491 |
|
6492 |
-
#: app/libraries/main.php:
|
6493 |
msgid "Others"
|
6494 |
msgstr "Autres"
|
6495 |
|
6496 |
-
#: app/libraries/main.php:
|
6497 |
msgid "Booking Success Message"
|
6498 |
msgstr "Message de succès de réservation"
|
6499 |
|
6500 |
-
#: app/libraries/main.php:
|
6501 |
msgid ""
|
6502 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6503 |
"needed, please check your email."
|
@@ -6505,17 +6552,17 @@ msgstr ""
|
|
6505 |
"Merci pour votre réservation. Vos billets sont réservés, cependant une "
|
6506 |
"vérification peut être nécessaires, contrôlez votre boite mail."
|
6507 |
|
6508 |
-
#: app/libraries/main.php:
|
6509 |
msgid "Register Button"
|
6510 |
msgstr "Boutons d'inscription"
|
6511 |
|
6512 |
-
#: app/libraries/main.php:
|
6513 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6514 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6515 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6516 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6517 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6518 |
-
#: app/skins/single.php:
|
6519 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6520 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6521 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6526,11 +6573,11 @@ msgstr "Boutons d'inscription"
|
|
6526 |
msgid "REGISTER"
|
6527 |
msgstr "S'INSCRIRE"
|
6528 |
|
6529 |
-
#: app/libraries/main.php:
|
6530 |
msgid "View Detail Button"
|
6531 |
msgstr "Afficher le boutons de détail"
|
6532 |
|
6533 |
-
#: app/libraries/main.php:
|
6534 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6535 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6536 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6541,59 +6588,59 @@ msgstr "Afficher le boutons de détail"
|
|
6541 |
msgid "View Detail"
|
6542 |
msgstr "En savoir plus"
|
6543 |
|
6544 |
-
#: app/libraries/main.php:
|
6545 |
msgid "Event Detail Button"
|
6546 |
msgstr "Bouton de détail de l'événement"
|
6547 |
|
6548 |
-
#: app/libraries/main.php:
|
6549 |
msgid "Event Detail"
|
6550 |
msgstr "Détails"
|
6551 |
|
6552 |
-
#: app/libraries/main.php:
|
6553 |
msgid "More Info Link"
|
6554 |
msgstr "Plus de lien d'info"
|
6555 |
|
6556 |
-
#: app/libraries/main.php:
|
6557 |
msgid "Ticket (Singular)"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
-
#: app/libraries/main.php:
|
6561 |
msgid "Tickets (Plural)"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: app/libraries/main.php:
|
6565 |
msgid "EventON"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
-
#: app/libraries/main.php:
|
6569 |
msgid "The Events Calendar"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
-
#: app/libraries/main.php:
|
6573 |
msgid "Events Schedule WP Plugin"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
-
#: app/libraries/main.php:
|
6577 |
msgid "Calendarize It"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
-
#: app/libraries/main.php:
|
6581 |
msgid "Confirmed"
|
6582 |
msgstr "Confirmé"
|
6583 |
|
6584 |
-
#: app/libraries/main.php:
|
6585 |
msgid "Rejected"
|
6586 |
msgstr "Rejeté"
|
6587 |
|
6588 |
-
#: app/libraries/main.php:
|
6589 |
msgid "Pending"
|
6590 |
msgstr "En attente"
|
6591 |
|
6592 |
-
#: app/libraries/main.php:
|
6593 |
msgid "Waiting"
|
6594 |
msgstr "En attente"
|
6595 |
|
6596 |
-
#: app/libraries/main.php:
|
6597 |
msgid "Skin controller does not exist."
|
6598 |
msgstr "Le contrôleur de Skin n'existe pas."
|
6599 |
|
@@ -6601,57 +6648,49 @@ msgstr "Le contrôleur de Skin n'existe pas."
|
|
6601 |
msgid "Please verify your email."
|
6602 |
msgstr "Merci de vérifier vos e-mails."
|
6603 |
|
6604 |
-
#: app/libraries/notifications.php:
|
6605 |
msgid "Your booking is received."
|
6606 |
msgstr "Votre réservation est reçue."
|
6607 |
|
6608 |
-
#: app/libraries/notifications.php:
|
6609 |
msgid "Your booking is confirmed."
|
6610 |
msgstr "Votre réservation est confirmée."
|
6611 |
|
6612 |
-
#: app/libraries/notifications.php:
|
6613 |
#, fuzzy
|
6614 |
#| msgid "Your booking cannot be canceled."
|
6615 |
msgid "booking canceled."
|
6616 |
msgstr "Votre réservation ne peut être annulée."
|
6617 |
|
6618 |
-
#: app/libraries/notifications.php:
|
6619 |
msgid "A new booking is received."
|
6620 |
msgstr "Une nouvelle réservation est enregistrée."
|
6621 |
|
6622 |
-
#: app/libraries/notifications.php:
|
6623 |
msgid "A new event is added."
|
6624 |
msgstr "Un nouvel événement est ajouté."
|
6625 |
|
6626 |
-
#: app/libraries/notifications.php:
|
6627 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6628 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6629 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6630 |
-
#: app/skins/single/modern.php:184
|
6631 |
-
msgid "All of the day"
|
6632 |
-
msgstr "Toute la journée"
|
6633 |
-
|
6634 |
-
#: app/libraries/notifications.php:611
|
6635 |
msgid "to"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: app/libraries/notifications.php:
|
6639 |
msgid "+ Add to Google Calendar"
|
6640 |
msgstr "+ Ajouter à mon Agenda Google"
|
6641 |
|
6642 |
-
#: app/libraries/notifications.php:
|
6643 |
msgid "+ iCal export"
|
6644 |
msgstr "+ Exporter vers iCal"
|
6645 |
|
6646 |
-
#: app/libraries/notifications.php:
|
6647 |
msgid "Yes"
|
6648 |
msgstr "Oui"
|
6649 |
|
6650 |
-
#: app/libraries/notifications.php:
|
6651 |
msgid "No"
|
6652 |
msgstr "Non"
|
6653 |
|
6654 |
-
#: app/libraries/skins.php:
|
6655 |
msgid "Ignore month and years"
|
6656 |
msgstr "Ignorer les mois et années"
|
6657 |
|
@@ -6732,7 +6771,7 @@ msgstr "Entrez votre adresse ..."
|
|
6732 |
msgid "Get Directions"
|
6733 |
msgstr ""
|
6734 |
|
6735 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6736 |
msgid "Share this event"
|
6737 |
msgstr "Partagez cet événement"
|
6738 |
|
@@ -6759,7 +6798,7 @@ msgstr "Prochain déroulement"
|
|
6759 |
msgid "Go to occurrence page"
|
6760 |
msgstr "Aller à la Page"
|
6761 |
|
6762 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6763 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6764 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6765 |
msgid "Time"
|
@@ -6869,7 +6908,7 @@ msgstr "Aucun événement"
|
|
6869 |
msgid "List"
|
6870 |
msgstr "Vu en liste"
|
6871 |
|
6872 |
-
#: app/skins/masonry.php:
|
6873 |
msgid "All"
|
6874 |
msgstr "Tout"
|
6875 |
|
@@ -6887,31 +6926,31 @@ msgstr "Événements pour %s"
|
|
6887 |
msgid "No Events"
|
6888 |
msgstr "Aucun événement"
|
6889 |
|
6890 |
-
#: app/skins/single.php:
|
6891 |
msgid "Home"
|
6892 |
msgstr ""
|
6893 |
|
6894 |
-
#: app/skins/single.php:
|
6895 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6896 |
#: app/skins/single/modern.php:256
|
6897 |
msgid "Sold out!"
|
6898 |
msgstr "Épuisé !"
|
6899 |
|
6900 |
-
#: app/skins/single.php:
|
6901 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6902 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6903 |
#: app/skins/single/modern.php:41
|
6904 |
msgid "Phone"
|
6905 |
msgstr "Téléphone"
|
6906 |
|
6907 |
-
#: app/skins/single.php:
|
6908 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6909 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6910 |
#: app/skins/single/modern.php:55
|
6911 |
msgid "Website"
|
6912 |
msgstr "Site Web"
|
6913 |
|
6914 |
-
#: app/skins/single.php:
|
6915 |
msgid "Speakers:"
|
6916 |
msgstr ""
|
6917 |
|
@@ -7549,9 +7588,6 @@ msgstr ""
|
|
7549 |
#~ msgid "Popular Labels"
|
7550 |
#~ msgstr "Étiquette populaire"
|
7551 |
|
7552 |
-
#~ msgid "Search Labels"
|
7553 |
-
#~ msgstr "Rechercher des étiquettes"
|
7554 |
-
|
7555 |
#~ msgid "Edit Location"
|
7556 |
#~ msgstr "Modifier un Lieu"
|
7557 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-13 16:46+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
336 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
337 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
338 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
339 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
340 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
341 |
#: app/features/mec/styling.php:59
|
342 |
msgid "Mailchimp Integration"
|
402 |
#: app/features/mec/meta_boxes/search_form.php:453
|
403 |
#: app/features/mec/meta_boxes/search_form.php:514
|
404 |
#: app/features/mec/meta_boxes/search_form.php:575
|
405 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
406 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
407 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
408 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
409 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
410 |
msgid "Category"
|
412 |
|
413 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
414 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
415 |
+
#: app/libraries/main.php:4508
|
416 |
msgid "Categories"
|
417 |
msgstr "Catégories"
|
418 |
|
487 |
#: app/features/events.php:322 app/features/events.php:3168
|
488 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
489 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
490 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
491 |
#: app/widgets/single.php:103
|
492 |
msgid "Event Cost"
|
493 |
msgstr "Tarif de l'événement"
|
494 |
|
495 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
496 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
497 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
498 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
499 |
msgid "Cost"
|
510 |
#: app/features/events.php:432 app/features/events.php:2250
|
511 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
512 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
513 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
514 |
#: app/modules/booking/steps/form.php:37
|
515 |
msgid "Name"
|
516 |
msgstr "Nom"
|
521 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
522 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
523 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
524 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
525 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
526 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
527 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
528 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
529 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
530 |
msgid "Email"
|
670 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
671 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
672 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
673 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
674 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
675 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
676 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
677 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
678 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
679 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
680 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
681 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
682 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
683 |
#: app/skins/single/modern.php:133
|
888 |
|
889 |
#: app/features/events.php:1130 app/features/events.php:2340
|
890 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
891 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
892 |
#: app/modules/booking/steps/tickets.php:22
|
893 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
894 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
895 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
896 |
msgid "Date"
|
908 |
msgstr ""
|
909 |
|
910 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
911 |
+
#: app/skins/single.php:898
|
912 |
msgid "Hourly Schedule"
|
913 |
msgstr "Programme"
|
914 |
|
947 |
#: app/features/events.php:2154 app/features/events.php:2196
|
948 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
949 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
950 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
951 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
952 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
953 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
954 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
955 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
956 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
957 |
+
#: app/libraries/main.php:2612
|
958 |
msgid "Remove"
|
959 |
msgstr "Supprimer"
|
960 |
|
987 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
988 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
989 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
990 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4516
|
991 |
#: app/modules/speakers/details.php:18
|
992 |
msgid "Speakers"
|
993 |
msgstr ""
|
1004 |
msgstr "Liens de l'évenements"
|
1005 |
|
1006 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1007 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4539
|
1008 |
msgid "Event Link"
|
1009 |
msgstr "Lien de l'événement"
|
1010 |
|
1029 |
msgstr ""
|
1030 |
|
1031 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1032 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4540
|
1033 |
+
#: app/skins/single.php:627 app/skins/single/default.php:118
|
1034 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1035 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1036 |
#: app/widgets/single.php:107
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1096 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1097 |
msgid "Tickets"
|
1098 |
msgstr "Billets"
|
1099 |
|
1167 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1168 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1169 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1170 |
+
#: app/features/mec/settings.php:937 app/features/mec/single.php:408
|
1171 |
+
#: app/libraries/skins.php:937
|
1172 |
msgid "Label"
|
1173 |
msgstr "Label"
|
1174 |
|
1243 |
msgstr ""
|
1244 |
|
1245 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1246 |
+
#: app/libraries/main.php:2202
|
1247 |
#, fuzzy
|
1248 |
#| msgid "Name"
|
1249 |
msgid "MEC Name"
|
1250 |
msgstr "Nom"
|
1251 |
|
1252 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1253 |
+
#: app/libraries/main.php:2231
|
1254 |
#, fuzzy
|
1255 |
#| msgid "Email"
|
1256 |
msgid "MEC Email"
|
1257 |
msgstr "Email"
|
1258 |
|
1259 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1260 |
+
#: app/libraries/main.php:2172
|
1261 |
msgid "Text"
|
1262 |
msgstr "Texte"
|
1263 |
|
1264 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1265 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1266 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1267 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2348
|
1268 |
msgid "Tel"
|
1269 |
msgstr "Téléphone"
|
1270 |
|
1271 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1272 |
+
#: app/libraries/main.php:2290
|
1273 |
msgid "File"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1277 |
+
#: app/libraries/main.php:2377
|
1278 |
msgid "Textarea"
|
1279 |
msgstr "Zone de texte"
|
1280 |
|
1281 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1282 |
+
#: app/libraries/main.php:2430
|
1283 |
msgid "Checkboxes"
|
1284 |
msgstr "Boîtes à cocher"
|
1285 |
|
1286 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1287 |
+
#: app/libraries/main.php:2474
|
1288 |
msgid "Radio Buttons"
|
1289 |
msgstr "Boutons Radio"
|
1290 |
|
1357 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1358 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1359 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1360 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2518
|
1361 |
msgid "Dropdown"
|
1362 |
msgstr "Menu déroulant"
|
1363 |
|
1364 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1365 |
+
#: app/libraries/main.php:2565
|
1366 |
msgid "Agreement"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1370 |
+
#: app/libraries/main.php:2406
|
1371 |
msgid "Paragraph"
|
1372 |
msgstr "Paragraphe"
|
1373 |
|
1405 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1406 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1407 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1408 |
+
#: app/features/mec/settings.php:911 app/features/mec/single.php:398
|
1409 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1410 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1411 |
+
#: app/skins/single.php:875 app/skins/single/default.php:154
|
1412 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1413 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1414 |
msgid "Location"
|
1427 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1428 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1429 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1430 |
+
#: app/features/mec/settings.php:917 app/features/mec/single.php:394
|
1431 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1432 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1433 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4515
|
1434 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
1435 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1436 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1437 |
#: app/skins/single/modern.php:31
|
1582 |
|
1583 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1584 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1585 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
|
1586 |
+
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1587 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1588 |
#: app/skins/single/modern.php:214
|
1589 |
msgid "Labels"
|
1925 |
|
1926 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1927 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1928 |
+
#: app/features/mec/settings.php:1103 app/features/mec/single.php:480
|
1929 |
msgid "Checking ..."
|
1930 |
msgstr "Vérification..."
|
1931 |
|
2340 |
msgstr "Image Principale"
|
2341 |
|
2342 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2343 |
+
#: app/libraries/main.php:4756 app/skins/agenda/render.php:41
|
2344 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2345 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2346 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2375 |
|
2376 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2377 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2378 |
+
#: app/libraries/main.php:4512
|
2379 |
msgid "Locations"
|
2380 |
msgstr "Lieux"
|
2381 |
|
2482 |
msgid "Don't show map in single event page"
|
2483 |
msgstr "Ne pas afficher de carte pour cet événement"
|
2484 |
|
2485 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2486 |
#, fuzzy
|
2487 |
#| msgid "Search Locations"
|
2488 |
msgid "Other Locations"
|
2539 |
|
2540 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2541 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2542 |
+
#: app/libraries/main.php:4514
|
2543 |
msgid "Organizers"
|
2544 |
msgstr "Organisateurs"
|
2545 |
|
2660 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2661 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2662 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2663 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
|
2664 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2665 |
+
#: app/features/mec/settings.php:1134 app/features/mec/single.php:14
|
2666 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2667 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2668 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2762 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2763 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2764 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2765 |
+
#: app/skins/single.php:162
|
2766 |
#, fuzzy
|
2767 |
#| msgid "featured event"
|
2768 |
msgid "Related Events"
|
2893 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2894 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2895 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2896 |
+
#: app/libraries/notifications.php:405
|
2897 |
msgid "Booking Reminder"
|
2898 |
msgstr ""
|
2899 |
|
3073 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3074 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3075 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3076 |
+
#: app/features/mec/settings.php:1098 app/features/mec/single.php:475
|
3077 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3078 |
msgid "Saved"
|
3079 |
msgstr "Sauvegardé"
|
3081 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3082 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3083 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3084 |
+
#: app/features/mec/settings.php:1099 app/features/mec/single.php:476
|
3085 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3086 |
msgid "Settings Saved!"
|
3087 |
msgstr ""
|
3089 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3090 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3091 |
#: app/features/mec/notifications.php:735
|
3092 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
|
3093 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
3094 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
3095 |
msgid "Verified"
|
3096 |
msgstr "Vérifié"
|
3097 |
|
3098 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3099 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
|
3100 |
#: app/features/mec/single.php:502
|
3101 |
msgid "Please Refresh Page"
|
3102 |
msgstr "Merci de Rafraichir la Page"
|
4046 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4047 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4048 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4049 |
+
#: app/features/mec/settings.php:924 app/features/mec/single.php:403
|
4050 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4051 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
4052 |
msgid "Speaker"
|
4053 |
msgstr ""
|
4054 |
|
4062 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4063 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4064 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4065 |
+
#: app/features/mec/settings.php:931 app/features/mec/single.php:412
|
4066 |
+
#: app/libraries/skins.php:911
|
4067 |
#, fuzzy
|
4068 |
#| msgid "Tags"
|
4069 |
msgid "Tag"
|
4145 |
msgstr "Montrer la Carte sur les pages d'événement"
|
4146 |
|
4147 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4148 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
4149 |
msgid "API Key"
|
4150 |
msgstr "Clés API"
|
4151 |
|
4152 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
4153 |
+
#: app/features/mec/settings.php:980
|
4154 |
msgid "Required!"
|
4155 |
msgstr "Requis !"
|
4156 |
|
4769 |
msgstr ""
|
4770 |
|
4771 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4772 |
+
#: app/libraries/main.php:4521
|
4773 |
msgid "Weekdays"
|
4774 |
msgstr "Jours de la Semaine"
|
4775 |
|
5097 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5098 |
msgstr ""
|
5099 |
|
5100 |
+
#: app/features/mec/settings.php:890
|
5101 |
+
msgid "Ajax Live mode"
|
5102 |
+
msgstr ""
|
5103 |
+
|
5104 |
+
#: app/features/mec/settings.php:894
|
5105 |
+
msgid "Ajax mode"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
+
#: app/features/mec/settings.php:895
|
5109 |
+
msgid ""
|
5110 |
+
"if you enable this option, search button disappeared and to use this "
|
5111 |
+
"feature, text input field must be enabled."
|
5112 |
+
msgstr ""
|
5113 |
+
|
5114 |
+
#: app/features/mec/settings.php:901
|
5115 |
+
#, fuzzy
|
5116 |
+
#| msgid "Search Labels"
|
5117 |
+
msgid "Search bar fields"
|
5118 |
+
msgstr "Rechercher des étiquettes"
|
5119 |
+
|
5120 |
+
#: app/features/mec/settings.php:943
|
5121 |
+
#, fuzzy
|
5122 |
+
#| msgid "Text Input"
|
5123 |
+
msgid "Text input"
|
5124 |
+
msgstr "Texte du champ d'entrée"
|
5125 |
+
|
5126 |
+
#: app/features/mec/settings.php:956
|
5127 |
msgid "Enable Mailchimp Integration"
|
5128 |
msgstr "Activer l'intégration de MailChimp"
|
5129 |
|
5130 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
5131 |
msgid "List ID"
|
5132 |
msgstr "ID de Liste"
|
5133 |
|
5134 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
5135 |
msgid "Subscription Status"
|
5136 |
msgstr "Statut des Souscriptions"
|
5137 |
|
5138 |
+
#: app/features/mec/settings.php:990
|
5139 |
msgid "Subscribe automatically"
|
5140 |
msgstr "Souscrire Automatiquement"
|
5141 |
|
5142 |
+
#: app/features/mec/settings.php:991
|
5143 |
msgid "Subscribe by verification"
|
5144 |
msgstr "Souscrire après vérification"
|
5145 |
|
5146 |
+
#: app/features/mec/settings.php:996
|
5147 |
msgid ""
|
5148 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5149 |
"by mailchimp for subscription verification."
|
5151 |
"Si vous choisissez \"Souscrire après vérification\", un email sera envoyé à "
|
5152 |
"l'utilisateur par Mailchimp pour valider son inscription."
|
5153 |
|
5154 |
+
#: app/features/mec/settings.php:1008
|
5155 |
#, fuzzy
|
5156 |
#| msgid "Filter Options"
|
5157 |
msgid "Upload Field Options"
|
5158 |
msgstr "Options des filtres"
|
5159 |
|
5160 |
+
#: app/features/mec/settings.php:1010
|
5161 |
msgid "Mime types"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
+
#: app/features/mec/settings.php:1014
|
5165 |
msgid "Split mime types with \",\"."
|
5166 |
msgstr ""
|
5167 |
|
5168 |
+
#: app/features/mec/settings.php:1014
|
5169 |
msgid "Default: jpeg,jpg,png,pdf"
|
5170 |
msgstr ""
|
5171 |
|
5172 |
+
#: app/features/mec/settings.php:1017
|
5173 |
#, fuzzy
|
5174 |
#| msgid "Amount (Per Ticket)"
|
5175 |
msgid "Maximum file size"
|
5176 |
msgstr "Montant (par Billet)"
|
5177 |
|
5178 |
+
#: app/features/mec/settings.php:1021
|
5179 |
msgid "The unit is Megabyte \"MB\""
|
5180 |
msgstr ""
|
5181 |
|
5909 |
msgid "eg. https://webnus.net"
|
5910 |
msgstr "http://webnus.biz"
|
5911 |
|
5912 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5913 |
+
#: app/skins/single.php:813
|
5914 |
msgid "Other Organizers"
|
5915 |
msgstr "Autres organisateurs"
|
5916 |
|
5931 |
msgid "#"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5935 |
msgid "Status"
|
5936 |
msgstr ""
|
5937 |
|
5951 |
msgstr ""
|
5952 |
|
5953 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5954 |
+
#: app/libraries/main.php:4543
|
5955 |
msgid "Ticket"
|
5956 |
msgstr "Billets"
|
5957 |
|
5965 |
msgid "No bookings found!"
|
5966 |
msgstr "Aucune réservation trouvée !"
|
5967 |
|
5968 |
+
#: app/features/search.php:90
|
5969 |
+
msgid "Please enter at least 3 characters and try again"
|
5970 |
+
msgstr ""
|
5971 |
+
|
5972 |
+
#: app/features/search_bar/search_bar.php:26
|
5973 |
+
msgid "Please enter at least 3 characters"
|
5974 |
+
msgstr ""
|
5975 |
+
|
5976 |
#: app/features/search_bar/search_bar.php:28
|
5977 |
+
msgid "Search results will show here"
|
5978 |
+
msgstr ""
|
5979 |
+
|
5980 |
+
#: app/features/search_bar/search_bar.php:39
|
5981 |
#, fuzzy
|
5982 |
msgid "Search"
|
5983 |
msgstr "Rechercher %s"
|
5984 |
|
5985 |
+
#: app/features/search_bar/search_noresult.php:1
|
5986 |
+
msgid "No search result."
|
5987 |
+
msgstr ""
|
5988 |
+
|
5989 |
+
#: app/features/search_bar/search_result.php:11
|
5990 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5991 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5992 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5993 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5994 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5995 |
+
msgid "All of the day"
|
5996 |
+
msgstr "Toute la journée"
|
5997 |
+
|
5998 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5999 |
#: app/features/speakers.php:248
|
6000 |
#, fuzzy
|
6061 |
msgid "%s Price"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
+
#: app/libraries/book.php:539
|
6065 |
msgid "Discount"
|
6066 |
msgstr "Réduction"
|
6067 |
|
6068 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
6069 |
#: app/modules/booking/default.php:401
|
6070 |
msgid "Download Invoice"
|
6071 |
msgstr ""
|
6089 |
msgid "Upgrade"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
+
#: app/libraries/factory.php:333
|
6093 |
msgid "day"
|
6094 |
msgstr "jour"
|
6095 |
|
6096 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
6097 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6098 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6099 |
msgid "days"
|
6100 |
msgstr "jours"
|
6101 |
|
6102 |
+
#: app/libraries/factory.php:335
|
6103 |
msgid "hour"
|
6104 |
msgstr "heure"
|
6105 |
|
6106 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
6107 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6108 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6109 |
msgid "hours"
|
6110 |
msgstr "heures"
|
6111 |
|
6112 |
+
#: app/libraries/factory.php:337
|
6113 |
msgid "minute"
|
6114 |
msgstr "minute"
|
6115 |
|
6116 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
6117 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6118 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6119 |
msgid "minutes"
|
6120 |
msgstr "minutes"
|
6121 |
|
6122 |
+
#: app/libraries/factory.php:339
|
6123 |
msgid "second"
|
6124 |
msgstr "seconde"
|
6125 |
|
6126 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
6127 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6128 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6129 |
msgid "seconds"
|
6130 |
msgstr "secondes"
|
6131 |
|
6132 |
+
#: app/libraries/factory.php:383
|
6133 |
msgid "MEC Single Sidebar"
|
6134 |
msgstr "Barre latérale M.E.C."
|
6135 |
|
6136 |
+
#: app/libraries/factory.php:384
|
6137 |
msgid "Custom sidebar for single and modal page of MEC."
|
6138 |
msgstr ""
|
6139 |
"Barre latérale personnalisée pour les pages d'événement et les pop-ups "
|
6198 |
msgid "Slider View"
|
6199 |
msgstr "Vue sur Slider"
|
6200 |
|
6201 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
6202 |
msgid "SU"
|
6203 |
msgstr "DIM."
|
6204 |
|
6205 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
6206 |
msgid "MO"
|
6207 |
msgstr "LUN."
|
6208 |
|
6209 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
6210 |
msgid "TU"
|
6211 |
msgstr "MAR."
|
6212 |
|
6213 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
6214 |
msgid "WE"
|
6215 |
msgstr "MER."
|
6216 |
|
6217 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
6218 |
msgid "TH"
|
6219 |
msgstr "JEU."
|
6220 |
|
6221 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
6222 |
msgid "FR"
|
6223 |
msgstr "VEN."
|
6224 |
|
6225 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
6226 |
msgid "SA"
|
6227 |
msgstr "SAM."
|
6228 |
|
6374 |
msgid "Request is not valid."
|
6375 |
msgstr "Requête invalide !"
|
6376 |
|
6377 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
6378 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
6379 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
6380 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
6381 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
6382 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
6383 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
6384 |
msgid "Sort"
|
6385 |
msgstr "Trier"
|
6386 |
|
6387 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
6388 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
6389 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
6390 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
6391 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
6392 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
6393 |
msgid "Required Field"
|
6394 |
msgstr "Champ obligatoire"
|
6395 |
|
6396 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
6397 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
6398 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
6399 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
6400 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
6401 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
6402 |
msgid "Insert a label for this field"
|
6403 |
msgstr "Insérez une label pour ce champ"
|
6404 |
|
6405 |
+
#: app/libraries/main.php:2411
|
6406 |
msgid "HTML and shortcode are allowed."
|
6407 |
msgstr "HTML et shortcode sont autorisés."
|
6408 |
|
6409 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
6410 |
+
#: app/libraries/main.php:2542
|
6411 |
msgid "Option"
|
6412 |
msgstr "Option"
|
6413 |
|
6414 |
+
#: app/libraries/main.php:2576
|
6415 |
#, php-format
|
6416 |
msgid "Instead of %s, the page title with a link will be show."
|
6417 |
msgstr ""
|
6418 |
|
6419 |
+
#: app/libraries/main.php:2578
|
6420 |
msgid "Agreement Page"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
+
#: app/libraries/main.php:2589
|
6424 |
msgid "Checked by default"
|
6425 |
msgstr ""
|
6426 |
|
6427 |
+
#: app/libraries/main.php:2590
|
6428 |
msgid "Unchecked by default"
|
6429 |
msgstr ""
|
6430 |
|
6431 |
+
#: app/libraries/main.php:2613
|
6432 |
msgid "Insert a label for this option"
|
6433 |
msgstr "Insérez une étiquette pour cette option"
|
6434 |
|
6435 |
+
#: app/libraries/main.php:2628
|
6436 |
msgid "Free"
|
6437 |
msgstr "Gratuite"
|
6438 |
|
6439 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6440 |
#, fuzzy
|
6441 |
#| msgid "M.E. Calendar"
|
6442 |
msgid "M.E. Calender"
|
6443 |
msgstr "M.E Calendrier"
|
6444 |
|
6445 |
+
#: app/libraries/main.php:3349
|
6446 |
#, php-format
|
6447 |
msgid "Copy of %s"
|
6448 |
msgstr "Copie de %s"
|
6449 |
|
6450 |
+
#: app/libraries/main.php:4022
|
6451 |
msgid "Booked an event."
|
6452 |
msgstr "Réserver un Évènements"
|
6453 |
|
6454 |
+
#: app/libraries/main.php:4063
|
6455 |
#, php-format
|
6456 |
msgid "%s booked %s event."
|
6457 |
msgstr "%s réservé %s événement"
|
6458 |
|
6459 |
+
#: app/libraries/main.php:4506
|
6460 |
msgid "Taxonomies"
|
6461 |
msgstr "Taxonomies"
|
6462 |
|
6463 |
+
#: app/libraries/main.php:4508
|
6464 |
msgid "Category Plural Label"
|
6465 |
msgstr "Catégorie au pluriel"
|
6466 |
|
6467 |
+
#: app/libraries/main.php:4509
|
6468 |
msgid "Category Singular Label"
|
6469 |
msgstr "Catégorie au singulier"
|
6470 |
|
6471 |
+
#: app/libraries/main.php:4510
|
6472 |
msgid "Label Plural Label"
|
6473 |
msgstr "Étiquettes au pluriel"
|
6474 |
|
6475 |
+
#: app/libraries/main.php:4511
|
6476 |
msgid "Label Singular Label"
|
6477 |
msgstr "Étiquettes au singulier"
|
6478 |
|
6479 |
+
#: app/libraries/main.php:4511
|
6480 |
msgid "label"
|
6481 |
msgstr "texte"
|
6482 |
|
6483 |
+
#: app/libraries/main.php:4512
|
6484 |
msgid "Location Plural Label"
|
6485 |
msgstr "Lieu au pluriel"
|
6486 |
|
6487 |
+
#: app/libraries/main.php:4513
|
6488 |
msgid "Location Singular Label"
|
6489 |
msgstr "Lieu au singulier"
|
6490 |
|
6491 |
+
#: app/libraries/main.php:4514
|
6492 |
msgid "Organizer Plural Label"
|
6493 |
msgstr "Organisateur au pluriel"
|
6494 |
|
6495 |
+
#: app/libraries/main.php:4515
|
6496 |
msgid "Organizer Singular Label"
|
6497 |
msgstr "Organisateur au singulier"
|
6498 |
|
6499 |
+
#: app/libraries/main.php:4516
|
6500 |
#, fuzzy
|
6501 |
#| msgid "Label Plural Label"
|
6502 |
msgid "Speaker Plural Label"
|
6503 |
msgstr "Étiquettes au pluriel"
|
6504 |
|
6505 |
+
#: app/libraries/main.php:4517
|
6506 |
#, fuzzy
|
6507 |
#| msgid "Label Singular Label"
|
6508 |
msgid "Speaker Singular Label"
|
6509 |
msgstr "Étiquettes au singulier"
|
6510 |
|
6511 |
+
#: app/libraries/main.php:4523
|
6512 |
msgid "Sunday abbreviation"
|
6513 |
msgstr "Abréviation de Dimanche"
|
6514 |
|
6515 |
+
#: app/libraries/main.php:4524
|
6516 |
msgid "Monday abbreviation"
|
6517 |
msgstr "Abréviation de Lundi"
|
6518 |
|
6519 |
+
#: app/libraries/main.php:4525
|
6520 |
msgid "Tuesday abbreviation"
|
6521 |
msgstr "Abréviation de Mardi"
|
6522 |
|
6523 |
+
#: app/libraries/main.php:4526
|
6524 |
msgid "Wednesday abbreviation"
|
6525 |
msgstr "Abréviation de Mercredi"
|
6526 |
|
6527 |
+
#: app/libraries/main.php:4527
|
6528 |
msgid "Thursday abbreviation"
|
6529 |
msgstr "Abréviation de Jeudi"
|
6530 |
|
6531 |
+
#: app/libraries/main.php:4528
|
6532 |
msgid "Friday abbreviation"
|
6533 |
msgstr "Abréviation de Vendredi"
|
6534 |
|
6535 |
+
#: app/libraries/main.php:4529
|
6536 |
msgid "Saturday abbreviation"
|
6537 |
msgstr "Abréviation de Samedi"
|
6538 |
|
6539 |
+
#: app/libraries/main.php:4533
|
6540 |
msgid "Others"
|
6541 |
msgstr "Autres"
|
6542 |
|
6543 |
+
#: app/libraries/main.php:4535
|
6544 |
msgid "Booking Success Message"
|
6545 |
msgstr "Message de succès de réservation"
|
6546 |
|
6547 |
+
#: app/libraries/main.php:4535
|
6548 |
msgid ""
|
6549 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6550 |
"needed, please check your email."
|
6552 |
"Merci pour votre réservation. Vos billets sont réservés, cependant une "
|
6553 |
"vérification peut être nécessaires, contrôlez votre boite mail."
|
6554 |
|
6555 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6556 |
msgid "Register Button"
|
6557 |
msgstr "Boutons d'inscription"
|
6558 |
|
6559 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6560 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6561 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6562 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6563 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6564 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6565 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6566 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6567 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6568 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6573 |
msgid "REGISTER"
|
6574 |
msgstr "S'INSCRIRE"
|
6575 |
|
6576 |
+
#: app/libraries/main.php:4537
|
6577 |
msgid "View Detail Button"
|
6578 |
msgstr "Afficher le boutons de détail"
|
6579 |
|
6580 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6581 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6582 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6583 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6588 |
msgid "View Detail"
|
6589 |
msgstr "En savoir plus"
|
6590 |
|
6591 |
+
#: app/libraries/main.php:4538
|
6592 |
msgid "Event Detail Button"
|
6593 |
msgstr "Bouton de détail de l'événement"
|
6594 |
|
6595 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6596 |
msgid "Event Detail"
|
6597 |
msgstr "Détails"
|
6598 |
|
6599 |
+
#: app/libraries/main.php:4540
|
6600 |
msgid "More Info Link"
|
6601 |
msgstr "Plus de lien d'info"
|
6602 |
|
6603 |
+
#: app/libraries/main.php:4543
|
6604 |
msgid "Ticket (Singular)"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
+
#: app/libraries/main.php:4544
|
6608 |
msgid "Tickets (Plural)"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
+
#: app/libraries/main.php:4630
|
6612 |
msgid "EventON"
|
6613 |
msgstr ""
|
6614 |
|
6615 |
+
#: app/libraries/main.php:4631
|
6616 |
msgid "The Events Calendar"
|
6617 |
msgstr ""
|
6618 |
|
6619 |
+
#: app/libraries/main.php:4632
|
6620 |
msgid "Events Schedule WP Plugin"
|
6621 |
msgstr ""
|
6622 |
|
6623 |
+
#: app/libraries/main.php:4633
|
6624 |
msgid "Calendarize It"
|
6625 |
msgstr ""
|
6626 |
|
6627 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6628 |
msgid "Confirmed"
|
6629 |
msgstr "Confirmé"
|
6630 |
|
6631 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6632 |
msgid "Rejected"
|
6633 |
msgstr "Rejeté"
|
6634 |
|
6635 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6636 |
msgid "Pending"
|
6637 |
msgstr "En attente"
|
6638 |
|
6639 |
+
#: app/libraries/main.php:4757
|
6640 |
msgid "Waiting"
|
6641 |
msgstr "En attente"
|
6642 |
|
6643 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6644 |
msgid "Skin controller does not exist."
|
6645 |
msgstr "Le contrôleur de Skin n'existe pas."
|
6646 |
|
6648 |
msgid "Please verify your email."
|
6649 |
msgstr "Merci de vérifier vos e-mails."
|
6650 |
|
6651 |
+
#: app/libraries/notifications.php:125
|
6652 |
msgid "Your booking is received."
|
6653 |
msgstr "Votre réservation est reçue."
|
6654 |
|
6655 |
+
#: app/libraries/notifications.php:193
|
6656 |
msgid "Your booking is confirmed."
|
6657 |
msgstr "Votre réservation est confirmée."
|
6658 |
|
6659 |
+
#: app/libraries/notifications.php:282
|
6660 |
#, fuzzy
|
6661 |
#| msgid "Your booking cannot be canceled."
|
6662 |
msgid "booking canceled."
|
6663 |
msgstr "Votre réservation ne peut être annulée."
|
6664 |
|
6665 |
+
#: app/libraries/notifications.php:337
|
6666 |
msgid "A new booking is received."
|
6667 |
msgstr "Une nouvelle réservation est enregistrée."
|
6668 |
|
6669 |
+
#: app/libraries/notifications.php:488
|
6670 |
msgid "A new event is added."
|
6671 |
msgstr "Un nouvel événement est ajouté."
|
6672 |
|
6673 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6674 |
msgid "to"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6678 |
msgid "+ Add to Google Calendar"
|
6679 |
msgstr "+ Ajouter à mon Agenda Google"
|
6680 |
|
6681 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6682 |
msgid "+ iCal export"
|
6683 |
msgstr "+ Exporter vers iCal"
|
6684 |
|
6685 |
+
#: app/libraries/notifications.php:752
|
6686 |
msgid "Yes"
|
6687 |
msgstr "Oui"
|
6688 |
|
6689 |
+
#: app/libraries/notifications.php:752
|
6690 |
msgid "No"
|
6691 |
msgstr "Non"
|
6692 |
|
6693 |
+
#: app/libraries/skins.php:958
|
6694 |
msgid "Ignore month and years"
|
6695 |
msgstr "Ignorer les mois et années"
|
6696 |
|
6771 |
msgid "Get Directions"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6775 |
msgid "Share this event"
|
6776 |
msgstr "Partagez cet événement"
|
6777 |
|
6798 |
msgid "Go to occurrence page"
|
6799 |
msgstr "Aller à la Page"
|
6800 |
|
6801 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6802 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6803 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6804 |
msgid "Time"
|
6908 |
msgid "List"
|
6909 |
msgstr "Vu en liste"
|
6910 |
|
6911 |
+
#: app/skins/masonry.php:238
|
6912 |
msgid "All"
|
6913 |
msgstr "Tout"
|
6914 |
|
6926 |
msgid "No Events"
|
6927 |
msgstr "Aucun événement"
|
6928 |
|
6929 |
+
#: app/skins/single.php:204
|
6930 |
msgid "Home"
|
6931 |
msgstr ""
|
6932 |
|
6933 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6934 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6935 |
#: app/skins/single/modern.php:256
|
6936 |
msgid "Sold out!"
|
6937 |
msgstr "Épuisé !"
|
6938 |
|
6939 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6940 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6941 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6942 |
#: app/skins/single/modern.php:41
|
6943 |
msgid "Phone"
|
6944 |
msgstr "Téléphone"
|
6945 |
|
6946 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6947 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6948 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6949 |
#: app/skins/single/modern.php:55
|
6950 |
msgid "Website"
|
6951 |
msgstr "Site Web"
|
6952 |
|
6953 |
+
#: app/skins/single.php:912
|
6954 |
msgid "Speakers:"
|
6955 |
msgstr ""
|
6956 |
|
7588 |
#~ msgid "Popular Labels"
|
7589 |
#~ msgstr "Étiquette populaire"
|
7590 |
|
|
|
|
|
|
|
7591 |
#~ msgid "Edit Location"
|
7592 |
#~ msgstr "Modifier un Lieu"
|
7593 |
|
languages/modern-events-calendar-lite-hu_HU.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-hu_HU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-08-
|
5 |
-
"PO-Revision-Date: 2019-08-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: hu_HU\n"
|
@@ -326,7 +326,7 @@ msgstr ""
|
|
326 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
327 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
328 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
329 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
330 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
331 |
#: app/features/mec/styling.php:59
|
332 |
msgid "Mailchimp Integration"
|
@@ -392,9 +392,9 @@ msgstr ""
|
|
392 |
#: app/features/mec/meta_boxes/search_form.php:453
|
393 |
#: app/features/mec/meta_boxes/search_form.php:514
|
394 |
#: app/features/mec/meta_boxes/search_form.php:575
|
395 |
-
#: app/features/mec/settings.php:
|
396 |
-
#: app/libraries/main.php:
|
397 |
-
#: app/skins/single.php:
|
398 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
399 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
400 |
msgid "Category"
|
@@ -402,7 +402,7 @@ msgstr "kategória"
|
|
402 |
|
403 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
404 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
405 |
-
#: app/libraries/main.php:
|
406 |
msgid "Categories"
|
407 |
msgstr ""
|
408 |
|
@@ -477,13 +477,13 @@ msgstr ""
|
|
477 |
#: app/features/events.php:322 app/features/events.php:3168
|
478 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
479 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
480 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
481 |
#: app/widgets/single.php:103
|
482 |
msgid "Event Cost"
|
483 |
msgstr ""
|
484 |
|
485 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
486 |
-
#: app/libraries/main.php:
|
487 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
488 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
489 |
msgid "Cost"
|
@@ -500,7 +500,7 @@ msgstr ""
|
|
500 |
#: app/features/events.php:432 app/features/events.php:2250
|
501 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
502 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
503 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
504 |
#: app/modules/booking/steps/form.php:37
|
505 |
msgid "Name"
|
506 |
msgstr "Név"
|
@@ -511,10 +511,10 @@ msgstr "Név"
|
|
511 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
512 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
513 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
514 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
515 |
-
#: app/libraries/notifications.php:
|
516 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
517 |
-
#: app/skins/single.php:
|
518 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
519 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
520 |
msgid "Email"
|
@@ -654,14 +654,14 @@ msgstr ""
|
|
654 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
655 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
656 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
657 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
658 |
-
#: app/features/mec/settings.php:
|
659 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
660 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
661 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
662 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
663 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
664 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
665 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
666 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
667 |
#: app/skins/single/modern.php:133
|
@@ -863,9 +863,9 @@ msgstr ""
|
|
863 |
|
864 |
#: app/features/events.php:1130 app/features/events.php:2340
|
865 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
866 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
867 |
#: app/modules/booking/steps/tickets.php:22
|
868 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
869 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
870 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
871 |
msgid "Date"
|
@@ -883,7 +883,7 @@ msgid "Day 1"
|
|
883 |
msgstr ""
|
884 |
|
885 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
886 |
-
#: app/skins/single.php:
|
887 |
msgid "Hourly Schedule"
|
888 |
msgstr "Programterv"
|
889 |
|
@@ -922,14 +922,14 @@ msgstr ""
|
|
922 |
#: app/features/events.php:2154 app/features/events.php:2196
|
923 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
924 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
925 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
926 |
-
#: app/libraries/main.php:
|
927 |
-
#: app/libraries/main.php:
|
928 |
-
#: app/libraries/main.php:
|
929 |
-
#: app/libraries/main.php:
|
930 |
-
#: app/libraries/main.php:
|
931 |
-
#: app/libraries/main.php:
|
932 |
-
#: app/libraries/main.php:
|
933 |
msgid "Remove"
|
934 |
msgstr ""
|
935 |
|
@@ -962,7 +962,7 @@ msgstr ""
|
|
962 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
963 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
964 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
965 |
-
#: app/features/speakers.php:60 app/libraries/main.php:
|
966 |
#: app/modules/speakers/details.php:18
|
967 |
msgid "Speakers"
|
968 |
msgstr ""
|
@@ -977,7 +977,7 @@ msgid "Event Links"
|
|
977 |
msgstr ""
|
978 |
|
979 |
#: app/features/events.php:1405 app/features/events.php:1411
|
980 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
981 |
msgid "Event Link"
|
982 |
msgstr ""
|
983 |
|
@@ -998,8 +998,8 @@ msgid "URL Shortener"
|
|
998 |
msgstr ""
|
999 |
|
1000 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1001 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1002 |
-
#: app/skins/single.php:
|
1003 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1004 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1005 |
#: app/widgets/single.php:107
|
@@ -1058,7 +1058,7 @@ msgid "12"
|
|
1058 |
msgstr ""
|
1059 |
|
1060 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1061 |
-
#: app/libraries/main.php:
|
1062 |
msgid "Tickets"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1130,8 +1130,8 @@ msgstr ""
|
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1131 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1132 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1133 |
-
#: app/features/mec/settings.php:
|
1134 |
-
#: app/libraries/skins.php:
|
1135 |
msgid "Label"
|
1136 |
msgstr ""
|
1137 |
|
@@ -1200,46 +1200,46 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1200 |
msgstr ""
|
1201 |
|
1202 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1203 |
-
#: app/libraries/main.php:
|
1204 |
#, fuzzy
|
1205 |
#| msgid "Name"
|
1206 |
msgid "MEC Name"
|
1207 |
msgstr "Név"
|
1208 |
|
1209 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1210 |
-
#: app/libraries/main.php:
|
1211 |
msgid "MEC Email"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1215 |
-
#: app/libraries/main.php:
|
1216 |
msgid "Text"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1220 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1221 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1222 |
-
#: app/features/speakers.php:249 app/libraries/main.php:
|
1223 |
msgid "Tel"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1227 |
-
#: app/libraries/main.php:
|
1228 |
msgid "File"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1232 |
-
#: app/libraries/main.php:
|
1233 |
msgid "Textarea"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1237 |
-
#: app/libraries/main.php:
|
1238 |
msgid "Checkboxes"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1242 |
-
#: app/libraries/main.php:
|
1243 |
msgid "Radio Buttons"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1312,17 +1312,17 @@ msgstr ""
|
|
1312 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1313 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1314 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1315 |
-
#: app/features/mec/regform.php:277 app/libraries/main.php:
|
1316 |
msgid "Dropdown"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1320 |
-
#: app/libraries/main.php:
|
1321 |
msgid "Agreement"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1325 |
-
#: app/libraries/main.php:
|
1326 |
msgid "Paragraph"
|
1327 |
msgstr ""
|
1328 |
|
@@ -1360,10 +1360,10 @@ msgstr ""
|
|
1360 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1363 |
-
#: app/features/mec/settings.php:
|
1364 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1365 |
-
#: app/libraries/skins.php:
|
1366 |
-
#: app/skins/single.php:
|
1367 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1368 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1369 |
msgid "Location"
|
@@ -1382,11 +1382,11 @@ msgstr "helyszín"
|
|
1382 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1383 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1384 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1385 |
-
#: app/features/mec/settings.php:
|
1386 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1387 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1388 |
-
#: app/features/organizers.php:271 app/libraries/main.php:
|
1389 |
-
#: app/libraries/skins.php:
|
1390 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1391 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1392 |
#: app/skins/single/modern.php:31
|
@@ -1537,8 +1537,8 @@ msgstr ""
|
|
1537 |
|
1538 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1539 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1540 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1541 |
-
#: app/skins/single.php:
|
1542 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1543 |
#: app/skins/single/modern.php:214
|
1544 |
msgid "Labels"
|
@@ -1858,7 +1858,7 @@ msgstr "Google Naptárba mentés"
|
|
1858 |
|
1859 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1860 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1861 |
-
#: app/features/mec/settings.php:
|
1862 |
msgid "Checking ..."
|
1863 |
msgstr ""
|
1864 |
|
@@ -2225,7 +2225,7 @@ msgid "Featured"
|
|
2225 |
msgstr ""
|
2226 |
|
2227 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2228 |
-
#: app/libraries/main.php:
|
2229 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2230 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2231 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
@@ -2260,7 +2260,7 @@ msgstr ""
|
|
2260 |
|
2261 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2262 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2263 |
-
#: app/libraries/main.php:
|
2264 |
msgid "Locations"
|
2265 |
msgstr ""
|
2266 |
|
@@ -2365,7 +2365,7 @@ msgstr ""
|
|
2365 |
msgid "Don't show map in single event page"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2369 |
#, fuzzy
|
2370 |
#| msgid "Location"
|
2371 |
msgid "Other Locations"
|
@@ -2411,7 +2411,7 @@ msgstr ""
|
|
2411 |
|
2412 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2413 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2414 |
-
#: app/libraries/main.php:
|
2415 |
msgid "Organizers"
|
2416 |
msgstr ""
|
2417 |
|
@@ -2530,9 +2530,9 @@ msgstr ""
|
|
2530 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2531 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2532 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2533 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2534 |
-
#: app/features/mec/settings.php:
|
2535 |
-
#: app/features/mec/settings.php:
|
2536 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2537 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2538 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
@@ -2621,7 +2621,7 @@ msgstr ""
|
|
2621 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2622 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2623 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2624 |
-
#: app/skins/single.php:
|
2625 |
#, fuzzy
|
2626 |
#| msgid "Facebook Events"
|
2627 |
msgid "Related Events"
|
@@ -2746,7 +2746,7 @@ msgstr ""
|
|
2746 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2747 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2748 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2749 |
-
#: app/libraries/notifications.php:
|
2750 |
msgid "Booking Reminder"
|
2751 |
msgstr ""
|
2752 |
|
@@ -2920,7 +2920,7 @@ msgstr ""
|
|
2920 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
2921 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
2922 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
2923 |
-
#: app/features/mec/settings.php:
|
2924 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
2925 |
msgid "Saved"
|
2926 |
msgstr ""
|
@@ -2928,7 +2928,7 @@ msgstr ""
|
|
2928 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
2929 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
2930 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
2931 |
-
#: app/features/mec/settings.php:
|
2932 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
2933 |
msgid "Settings Saved!"
|
2934 |
msgstr ""
|
@@ -2936,14 +2936,14 @@ msgstr ""
|
|
2936 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
2937 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
2938 |
#: app/features/mec/notifications.php:735
|
2939 |
-
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:
|
2940 |
-
#: app/features/mec/settings.php:
|
2941 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
2942 |
msgid "Verified"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
2946 |
-
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:
|
2947 |
#: app/features/mec/single.php:502
|
2948 |
msgid "Please Refresh Page"
|
2949 |
msgstr ""
|
@@ -3847,9 +3847,9 @@ msgstr ""
|
|
3847 |
#: app/features/mec/meta_boxes/search_form.php:474
|
3848 |
#: app/features/mec/meta_boxes/search_form.php:535
|
3849 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3850 |
-
#: app/features/mec/settings.php:
|
3851 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
3852 |
-
#: app/libraries/main.php:
|
3853 |
msgid "Speaker"
|
3854 |
msgstr ""
|
3855 |
|
@@ -3863,8 +3863,8 @@ msgstr ""
|
|
3863 |
#: app/features/mec/meta_boxes/search_form.php:481
|
3864 |
#: app/features/mec/meta_boxes/search_form.php:542
|
3865 |
#: app/features/mec/meta_boxes/search_form.php:603
|
3866 |
-
#: app/features/mec/settings.php:
|
3867 |
-
#: app/libraries/skins.php:
|
3868 |
msgid "Tag"
|
3869 |
msgstr ""
|
3870 |
|
@@ -3940,12 +3940,12 @@ msgid "Show Google Maps on event page"
|
|
3940 |
msgstr ""
|
3941 |
|
3942 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
3943 |
-
#: app/features/mec/settings.php:
|
3944 |
msgid "API Key"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
3948 |
-
#: app/features/mec/settings.php:
|
3949 |
msgid "Required!"
|
3950 |
msgstr ""
|
3951 |
|
@@ -4523,7 +4523,7 @@ msgid ""
|
|
4523 |
msgstr ""
|
4524 |
|
4525 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4526 |
-
#: app/libraries/main.php:
|
4527 |
msgid "Weekdays"
|
4528 |
msgstr ""
|
4529 |
|
@@ -4810,57 +4810,75 @@ msgid ""
|
|
4810 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#: app/features/mec/settings.php:
|
4814 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4815 |
msgstr ""
|
4816 |
|
4817 |
-
#: app/features/mec/settings.php:
|
4818 |
msgid "Enable Mailchimp Integration"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
-
#: app/features/mec/settings.php:
|
4822 |
msgid "List ID"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
-
#: app/features/mec/settings.php:
|
4826 |
msgid "Subscription Status"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
-
#: app/features/mec/settings.php:
|
4830 |
msgid "Subscribe automatically"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
-
#: app/features/mec/settings.php:
|
4834 |
msgid "Subscribe by verification"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
-
#: app/features/mec/settings.php:
|
4838 |
msgid ""
|
4839 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
4840 |
"by mailchimp for subscription verification."
|
4841 |
msgstr ""
|
4842 |
|
4843 |
-
#: app/features/mec/settings.php:
|
4844 |
msgid "Upload Field Options"
|
4845 |
msgstr ""
|
4846 |
|
4847 |
-
#: app/features/mec/settings.php:
|
4848 |
msgid "Mime types"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: app/features/mec/settings.php:
|
4852 |
msgid "Split mime types with \",\"."
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: app/features/mec/settings.php:
|
4856 |
msgid "Default: jpeg,jpg,png,pdf"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#: app/features/mec/settings.php:
|
4860 |
msgid "Maximum file size"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
-
#: app/features/mec/settings.php:
|
4864 |
msgid "The unit is Megabyte \"MB\""
|
4865 |
msgstr ""
|
4866 |
|
@@ -5491,8 +5509,8 @@ msgstr "például john@smith.com"
|
|
5491 |
msgid "eg. https://webnus.net"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5495 |
-
#: app/skins/single.php:
|
5496 |
msgid "Other Organizers"
|
5497 |
msgstr ""
|
5498 |
|
@@ -5510,7 +5528,7 @@ msgstr ""
|
|
5510 |
msgid "#"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5514 |
msgid "Status"
|
5515 |
msgstr ""
|
5516 |
|
@@ -5528,7 +5546,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5528 |
msgstr ""
|
5529 |
|
5530 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5531 |
-
#: app/libraries/main.php:
|
5532 |
msgid "Ticket"
|
5533 |
msgstr ""
|
5534 |
|
@@ -5540,10 +5558,35 @@ msgstr ""
|
|
5540 |
msgid "No bookings found!"
|
5541 |
msgstr ""
|
5542 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5543 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5544 |
msgid "Search"
|
5545 |
msgstr ""
|
5546 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5547 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5548 |
#: app/features/speakers.php:248
|
5549 |
msgid "Job Title"
|
@@ -5596,11 +5639,11 @@ msgstr ""
|
|
5596 |
msgid "%s Price"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: app/libraries/book.php:
|
5600 |
msgid "Discount"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: app/libraries/book.php:
|
5604 |
#: app/modules/booking/default.php:401
|
5605 |
msgid "Download Invoice"
|
5606 |
msgstr ""
|
@@ -5624,51 +5667,51 @@ msgctxt "plugin link"
|
|
5624 |
msgid "Upgrade"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: app/libraries/factory.php:
|
5628 |
msgid "day"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#: app/libraries/factory.php:
|
5632 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5633 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5634 |
msgid "days"
|
5635 |
msgstr "Nap"
|
5636 |
|
5637 |
-
#: app/libraries/factory.php:
|
5638 |
msgid "hour"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
-
#: app/libraries/factory.php:
|
5642 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5643 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5644 |
msgid "hours"
|
5645 |
msgstr "óra"
|
5646 |
|
5647 |
-
#: app/libraries/factory.php:
|
5648 |
msgid "minute"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#: app/libraries/factory.php:
|
5652 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5653 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5654 |
msgid "minutes"
|
5655 |
msgstr "perc"
|
5656 |
|
5657 |
-
#: app/libraries/factory.php:
|
5658 |
msgid "second"
|
5659 |
msgstr ""
|
5660 |
|
5661 |
-
#: app/libraries/factory.php:
|
5662 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
5663 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
5664 |
msgid "seconds"
|
5665 |
msgstr "másodperc"
|
5666 |
|
5667 |
-
#: app/libraries/factory.php:
|
5668 |
msgid "MEC Single Sidebar"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
-
#: app/libraries/factory.php:
|
5672 |
msgid "Custom sidebar for single and modal page of MEC."
|
5673 |
msgstr ""
|
5674 |
|
@@ -5731,31 +5774,31 @@ msgstr ""
|
|
5731 |
msgid "Slider View"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5735 |
msgid "SU"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5739 |
msgid "MO"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5743 |
msgid "TU"
|
5744 |
msgstr ""
|
5745 |
|
5746 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5747 |
msgid "WE"
|
5748 |
msgstr ""
|
5749 |
|
5750 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5751 |
msgid "TH"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5755 |
msgid "FR"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
5759 |
msgid "SA"
|
5760 |
msgstr ""
|
5761 |
|
@@ -5905,171 +5948,171 @@ msgstr ""
|
|
5905 |
msgid "Request is not valid."
|
5906 |
msgstr "Fizetés érvénytelen"
|
5907 |
|
5908 |
-
#: app/libraries/main.php:
|
5909 |
-
#: app/libraries/main.php:
|
5910 |
-
#: app/libraries/main.php:
|
5911 |
-
#: app/libraries/main.php:
|
5912 |
-
#: app/libraries/main.php:
|
5913 |
-
#: app/libraries/main.php:
|
5914 |
-
#: app/libraries/main.php:
|
5915 |
msgid "Sort"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#: app/libraries/main.php:
|
5919 |
-
#: app/libraries/main.php:
|
5920 |
-
#: app/libraries/main.php:
|
5921 |
-
#: app/libraries/main.php:
|
5922 |
-
#: app/libraries/main.php:
|
5923 |
-
#: app/libraries/main.php:
|
5924 |
msgid "Required Field"
|
5925 |
msgstr "Töltse ki az adatokat!"
|
5926 |
|
5927 |
-
#: app/libraries/main.php:
|
5928 |
-
#: app/libraries/main.php:
|
5929 |
-
#: app/libraries/main.php:
|
5930 |
-
#: app/libraries/main.php:
|
5931 |
-
#: app/libraries/main.php:
|
5932 |
-
#: app/libraries/main.php:
|
5933 |
msgid "Insert a label for this field"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
-
#: app/libraries/main.php:
|
5937 |
msgid "HTML and shortcode are allowed."
|
5938 |
msgstr ""
|
5939 |
|
5940 |
-
#: app/libraries/main.php:
|
5941 |
-
#: app/libraries/main.php:
|
5942 |
msgid "Option"
|
5943 |
msgstr ""
|
5944 |
|
5945 |
-
#: app/libraries/main.php:
|
5946 |
#, php-format
|
5947 |
msgid "Instead of %s, the page title with a link will be show."
|
5948 |
msgstr ""
|
5949 |
|
5950 |
-
#: app/libraries/main.php:
|
5951 |
msgid "Agreement Page"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
-
#: app/libraries/main.php:
|
5955 |
msgid "Checked by default"
|
5956 |
msgstr ""
|
5957 |
|
5958 |
-
#: app/libraries/main.php:
|
5959 |
msgid "Unchecked by default"
|
5960 |
msgstr ""
|
5961 |
|
5962 |
-
#: app/libraries/main.php:
|
5963 |
msgid "Insert a label for this option"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
-
#: app/libraries/main.php:
|
5967 |
msgid "Free"
|
5968 |
msgstr "Ingyenes"
|
5969 |
|
5970 |
-
#: app/libraries/main.php:
|
5971 |
msgid "M.E. Calender"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
-
#: app/libraries/main.php:
|
5975 |
#, php-format
|
5976 |
msgid "Copy of %s"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: app/libraries/main.php:
|
5980 |
msgid "Booked an event."
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: app/libraries/main.php:
|
5984 |
#, php-format
|
5985 |
msgid "%s booked %s event."
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: app/libraries/main.php:
|
5989 |
msgid "Taxonomies"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
-
#: app/libraries/main.php:
|
5993 |
msgid "Category Plural Label"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
-
#: app/libraries/main.php:
|
5997 |
msgid "Category Singular Label"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
-
#: app/libraries/main.php:
|
6001 |
msgid "Label Plural Label"
|
6002 |
msgstr ""
|
6003 |
|
6004 |
-
#: app/libraries/main.php:
|
6005 |
msgid "Label Singular Label"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
-
#: app/libraries/main.php:
|
6009 |
msgid "label"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
-
#: app/libraries/main.php:
|
6013 |
msgid "Location Plural Label"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
-
#: app/libraries/main.php:
|
6017 |
msgid "Location Singular Label"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
-
#: app/libraries/main.php:
|
6021 |
msgid "Organizer Plural Label"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
-
#: app/libraries/main.php:
|
6025 |
msgid "Organizer Singular Label"
|
6026 |
msgstr ""
|
6027 |
|
6028 |
-
#: app/libraries/main.php:
|
6029 |
msgid "Speaker Plural Label"
|
6030 |
msgstr ""
|
6031 |
|
6032 |
-
#: app/libraries/main.php:
|
6033 |
msgid "Speaker Singular Label"
|
6034 |
msgstr ""
|
6035 |
|
6036 |
-
#: app/libraries/main.php:
|
6037 |
msgid "Sunday abbreviation"
|
6038 |
msgstr ""
|
6039 |
|
6040 |
-
#: app/libraries/main.php:
|
6041 |
msgid "Monday abbreviation"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#: app/libraries/main.php:
|
6045 |
msgid "Tuesday abbreviation"
|
6046 |
msgstr ""
|
6047 |
|
6048 |
-
#: app/libraries/main.php:
|
6049 |
msgid "Wednesday abbreviation"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
-
#: app/libraries/main.php:
|
6053 |
msgid "Thursday abbreviation"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: app/libraries/main.php:
|
6057 |
msgid "Friday abbreviation"
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: app/libraries/main.php:
|
6061 |
msgid "Saturday abbreviation"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
#: app/libraries/main.php:
|
6065 |
msgid "Others"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: app/libraries/main.php:
|
6069 |
msgid "Booking Success Message"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
-
#: app/libraries/main.php:
|
6073 |
msgid ""
|
6074 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6075 |
"needed, please check your email."
|
@@ -6077,17 +6120,17 @@ msgstr ""
|
|
6077 |
"Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
|
6078 |
"jóváhagyásra lesz szükség!"
|
6079 |
|
6080 |
-
#: app/libraries/main.php:
|
6081 |
msgid "Register Button"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: app/libraries/main.php:
|
6085 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6086 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6087 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6088 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6089 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6090 |
-
#: app/skins/single.php:
|
6091 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6092 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6093 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6098,11 +6141,11 @@ msgstr ""
|
|
6098 |
msgid "REGISTER"
|
6099 |
msgstr "REGISZTRÁCIÓ"
|
6100 |
|
6101 |
-
#: app/libraries/main.php:
|
6102 |
msgid "View Detail Button"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: app/libraries/main.php:
|
6106 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6107 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6108 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6113,59 +6156,59 @@ msgstr ""
|
|
6113 |
msgid "View Detail"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: app/libraries/main.php:
|
6117 |
msgid "Event Detail Button"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
-
#: app/libraries/main.php:
|
6121 |
msgid "Event Detail"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: app/libraries/main.php:
|
6125 |
msgid "More Info Link"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: app/libraries/main.php:
|
6129 |
msgid "Ticket (Singular)"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
-
#: app/libraries/main.php:
|
6133 |
msgid "Tickets (Plural)"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
-
#: app/libraries/main.php:
|
6137 |
msgid "EventON"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
-
#: app/libraries/main.php:
|
6141 |
msgid "The Events Calendar"
|
6142 |
msgstr ""
|
6143 |
|
6144 |
-
#: app/libraries/main.php:
|
6145 |
msgid "Events Schedule WP Plugin"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
-
#: app/libraries/main.php:
|
6149 |
msgid "Calendarize It"
|
6150 |
msgstr ""
|
6151 |
|
6152 |
-
#: app/libraries/main.php:
|
6153 |
msgid "Confirmed"
|
6154 |
msgstr ""
|
6155 |
|
6156 |
-
#: app/libraries/main.php:
|
6157 |
msgid "Rejected"
|
6158 |
msgstr ""
|
6159 |
|
6160 |
-
#: app/libraries/main.php:
|
6161 |
msgid "Pending"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
-
#: app/libraries/main.php:
|
6165 |
msgid "Waiting"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
-
#: app/libraries/main.php:
|
6169 |
msgid "Skin controller does not exist."
|
6170 |
msgstr ""
|
6171 |
|
@@ -6173,57 +6216,49 @@ msgstr ""
|
|
6173 |
msgid "Please verify your email."
|
6174 |
msgstr ""
|
6175 |
|
6176 |
-
#: app/libraries/notifications.php:
|
6177 |
msgid "Your booking is received."
|
6178 |
msgstr ""
|
6179 |
|
6180 |
-
#: app/libraries/notifications.php:
|
6181 |
msgid "Your booking is confirmed."
|
6182 |
msgstr ""
|
6183 |
|
6184 |
-
#: app/libraries/notifications.php:
|
6185 |
#, fuzzy
|
6186 |
#| msgid "Bookings"
|
6187 |
msgid "booking canceled."
|
6188 |
msgstr "Foglalások"
|
6189 |
|
6190 |
-
#: app/libraries/notifications.php:
|
6191 |
msgid "A new booking is received."
|
6192 |
msgstr ""
|
6193 |
|
6194 |
-
#: app/libraries/notifications.php:
|
6195 |
msgid "A new event is added."
|
6196 |
msgstr ""
|
6197 |
|
6198 |
-
#: app/libraries/notifications.php:
|
6199 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6200 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6201 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6202 |
-
#: app/skins/single/modern.php:184
|
6203 |
-
msgid "All of the day"
|
6204 |
-
msgstr ""
|
6205 |
-
|
6206 |
-
#: app/libraries/notifications.php:611
|
6207 |
msgid "to"
|
6208 |
msgstr ""
|
6209 |
|
6210 |
-
#: app/libraries/notifications.php:
|
6211 |
msgid "+ Add to Google Calendar"
|
6212 |
msgstr "+ Google Naptárba mentés"
|
6213 |
|
6214 |
-
#: app/libraries/notifications.php:
|
6215 |
msgid "+ iCal export"
|
6216 |
msgstr "+ iCal Exportálás"
|
6217 |
|
6218 |
-
#: app/libraries/notifications.php:
|
6219 |
msgid "Yes"
|
6220 |
msgstr ""
|
6221 |
|
6222 |
-
#: app/libraries/notifications.php:
|
6223 |
msgid "No"
|
6224 |
msgstr ""
|
6225 |
|
6226 |
-
#: app/libraries/skins.php:
|
6227 |
msgid "Ignore month and years"
|
6228 |
msgstr ""
|
6229 |
|
@@ -6300,7 +6335,7 @@ msgstr "Honnan"
|
|
6300 |
msgid "Get Directions"
|
6301 |
msgstr ""
|
6302 |
|
6303 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6304 |
msgid "Share this event"
|
6305 |
msgstr ""
|
6306 |
|
@@ -6327,7 +6362,7 @@ msgstr ""
|
|
6327 |
msgid "Go to occurrence page"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6331 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6332 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6333 |
msgid "Time"
|
@@ -6433,7 +6468,7 @@ msgstr ""
|
|
6433 |
msgid "List"
|
6434 |
msgstr ""
|
6435 |
|
6436 |
-
#: app/skins/masonry.php:
|
6437 |
msgid "All"
|
6438 |
msgstr ""
|
6439 |
|
@@ -6451,31 +6486,31 @@ msgstr ""
|
|
6451 |
msgid "No Events"
|
6452 |
msgstr ""
|
6453 |
|
6454 |
-
#: app/skins/single.php:
|
6455 |
msgid "Home"
|
6456 |
msgstr ""
|
6457 |
|
6458 |
-
#: app/skins/single.php:
|
6459 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6460 |
#: app/skins/single/modern.php:256
|
6461 |
msgid "Sold out!"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
-
#: app/skins/single.php:
|
6465 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6466 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6467 |
#: app/skins/single/modern.php:41
|
6468 |
msgid "Phone"
|
6469 |
msgstr ""
|
6470 |
|
6471 |
-
#: app/skins/single.php:
|
6472 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6473 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6474 |
#: app/skins/single/modern.php:55
|
6475 |
msgid "Website"
|
6476 |
msgstr "Honlap"
|
6477 |
|
6478 |
-
#: app/skins/single.php:
|
6479 |
msgid "Speakers:"
|
6480 |
msgstr ""
|
6481 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-13 16:46+0430\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: hu_HU\n"
|
326 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
327 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
328 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
329 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
330 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
331 |
#: app/features/mec/styling.php:59
|
332 |
msgid "Mailchimp Integration"
|
392 |
#: app/features/mec/meta_boxes/search_form.php:453
|
393 |
#: app/features/mec/meta_boxes/search_form.php:514
|
394 |
#: app/features/mec/meta_boxes/search_form.php:575
|
395 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
396 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
397 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
398 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
399 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
400 |
msgid "Category"
|
402 |
|
403 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
404 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
405 |
+
#: app/libraries/main.php:4508
|
406 |
msgid "Categories"
|
407 |
msgstr ""
|
408 |
|
477 |
#: app/features/events.php:322 app/features/events.php:3168
|
478 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
479 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
480 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
481 |
#: app/widgets/single.php:103
|
482 |
msgid "Event Cost"
|
483 |
msgstr ""
|
484 |
|
485 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
486 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
487 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
488 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
489 |
msgid "Cost"
|
500 |
#: app/features/events.php:432 app/features/events.php:2250
|
501 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
502 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
503 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
504 |
#: app/modules/booking/steps/form.php:37
|
505 |
msgid "Name"
|
506 |
msgstr "Név"
|
511 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
512 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
513 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
514 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
515 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
516 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
517 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
518 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
519 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
520 |
msgid "Email"
|
654 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
655 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
656 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
657 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
658 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
659 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
660 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
661 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
662 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
663 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
664 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
665 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
666 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
667 |
#: app/skins/single/modern.php:133
|
863 |
|
864 |
#: app/features/events.php:1130 app/features/events.php:2340
|
865 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
866 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
867 |
#: app/modules/booking/steps/tickets.php:22
|
868 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
869 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
870 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
871 |
msgid "Date"
|
883 |
msgstr ""
|
884 |
|
885 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
886 |
+
#: app/skins/single.php:898
|
887 |
msgid "Hourly Schedule"
|
888 |
msgstr "Programterv"
|
889 |
|
922 |
#: app/features/events.php:2154 app/features/events.php:2196
|
923 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
924 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
925 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
926 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
927 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
928 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
929 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
930 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
931 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
932 |
+
#: app/libraries/main.php:2612
|
933 |
msgid "Remove"
|
934 |
msgstr ""
|
935 |
|
962 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
963 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
964 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
965 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4516
|
966 |
#: app/modules/speakers/details.php:18
|
967 |
msgid "Speakers"
|
968 |
msgstr ""
|
977 |
msgstr ""
|
978 |
|
979 |
#: app/features/events.php:1405 app/features/events.php:1411
|
980 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4539
|
981 |
msgid "Event Link"
|
982 |
msgstr ""
|
983 |
|
998 |
msgstr ""
|
999 |
|
1000 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1001 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4540
|
1002 |
+
#: app/skins/single.php:627 app/skins/single/default.php:118
|
1003 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1004 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1005 |
#: app/widgets/single.php:107
|
1058 |
msgstr ""
|
1059 |
|
1060 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1061 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1062 |
msgid "Tickets"
|
1063 |
msgstr ""
|
1064 |
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1131 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1132 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1133 |
+
#: app/features/mec/settings.php:937 app/features/mec/single.php:408
|
1134 |
+
#: app/libraries/skins.php:937
|
1135 |
msgid "Label"
|
1136 |
msgstr ""
|
1137 |
|
1200 |
msgstr ""
|
1201 |
|
1202 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1203 |
+
#: app/libraries/main.php:2202
|
1204 |
#, fuzzy
|
1205 |
#| msgid "Name"
|
1206 |
msgid "MEC Name"
|
1207 |
msgstr "Név"
|
1208 |
|
1209 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1210 |
+
#: app/libraries/main.php:2231
|
1211 |
msgid "MEC Email"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1215 |
+
#: app/libraries/main.php:2172
|
1216 |
msgid "Text"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1220 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1221 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1222 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2348
|
1223 |
msgid "Tel"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1227 |
+
#: app/libraries/main.php:2290
|
1228 |
msgid "File"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1232 |
+
#: app/libraries/main.php:2377
|
1233 |
msgid "Textarea"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1237 |
+
#: app/libraries/main.php:2430
|
1238 |
msgid "Checkboxes"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1242 |
+
#: app/libraries/main.php:2474
|
1243 |
msgid "Radio Buttons"
|
1244 |
msgstr ""
|
1245 |
|
1312 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1313 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1314 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1315 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2518
|
1316 |
msgid "Dropdown"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1320 |
+
#: app/libraries/main.php:2565
|
1321 |
msgid "Agreement"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1325 |
+
#: app/libraries/main.php:2406
|
1326 |
msgid "Paragraph"
|
1327 |
msgstr ""
|
1328 |
|
1360 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1363 |
+
#: app/features/mec/settings.php:911 app/features/mec/single.php:398
|
1364 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1365 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1366 |
+
#: app/skins/single.php:875 app/skins/single/default.php:154
|
1367 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1368 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1369 |
msgid "Location"
|
1382 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1383 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1384 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1385 |
+
#: app/features/mec/settings.php:917 app/features/mec/single.php:394
|
1386 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1387 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1388 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4515
|
1389 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
1390 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1391 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1392 |
#: app/skins/single/modern.php:31
|
1537 |
|
1538 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1539 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1540 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
|
1541 |
+
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1542 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1543 |
#: app/skins/single/modern.php:214
|
1544 |
msgid "Labels"
|
1858 |
|
1859 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1860 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1861 |
+
#: app/features/mec/settings.php:1103 app/features/mec/single.php:480
|
1862 |
msgid "Checking ..."
|
1863 |
msgstr ""
|
1864 |
|
2225 |
msgstr ""
|
2226 |
|
2227 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2228 |
+
#: app/libraries/main.php:4756 app/skins/agenda/render.php:41
|
2229 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2230 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2231 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2260 |
|
2261 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2262 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2263 |
+
#: app/libraries/main.php:4512
|
2264 |
msgid "Locations"
|
2265 |
msgstr ""
|
2266 |
|
2365 |
msgid "Don't show map in single event page"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2369 |
#, fuzzy
|
2370 |
#| msgid "Location"
|
2371 |
msgid "Other Locations"
|
2411 |
|
2412 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2413 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2414 |
+
#: app/libraries/main.php:4514
|
2415 |
msgid "Organizers"
|
2416 |
msgstr ""
|
2417 |
|
2530 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2531 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2532 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2533 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
|
2534 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2535 |
+
#: app/features/mec/settings.php:1134 app/features/mec/single.php:14
|
2536 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2537 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2538 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2621 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2622 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2623 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2624 |
+
#: app/skins/single.php:162
|
2625 |
#, fuzzy
|
2626 |
#| msgid "Facebook Events"
|
2627 |
msgid "Related Events"
|
2746 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2747 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2748 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2749 |
+
#: app/libraries/notifications.php:405
|
2750 |
msgid "Booking Reminder"
|
2751 |
msgstr ""
|
2752 |
|
2920 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
2921 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
2922 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
2923 |
+
#: app/features/mec/settings.php:1098 app/features/mec/single.php:475
|
2924 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
2925 |
msgid "Saved"
|
2926 |
msgstr ""
|
2928 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
2929 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
2930 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
2931 |
+
#: app/features/mec/settings.php:1099 app/features/mec/single.php:476
|
2932 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
2933 |
msgid "Settings Saved!"
|
2934 |
msgstr ""
|
2936 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
2937 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
2938 |
#: app/features/mec/notifications.php:735
|
2939 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
|
2940 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
2941 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
2942 |
msgid "Verified"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
2946 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
|
2947 |
#: app/features/mec/single.php:502
|
2948 |
msgid "Please Refresh Page"
|
2949 |
msgstr ""
|
3847 |
#: app/features/mec/meta_boxes/search_form.php:474
|
3848 |
#: app/features/mec/meta_boxes/search_form.php:535
|
3849 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3850 |
+
#: app/features/mec/settings.php:924 app/features/mec/single.php:403
|
3851 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
3852 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
3853 |
msgid "Speaker"
|
3854 |
msgstr ""
|
3855 |
|
3863 |
#: app/features/mec/meta_boxes/search_form.php:481
|
3864 |
#: app/features/mec/meta_boxes/search_form.php:542
|
3865 |
#: app/features/mec/meta_boxes/search_form.php:603
|
3866 |
+
#: app/features/mec/settings.php:931 app/features/mec/single.php:412
|
3867 |
+
#: app/libraries/skins.php:911
|
3868 |
msgid "Tag"
|
3869 |
msgstr ""
|
3870 |
|
3940 |
msgstr ""
|
3941 |
|
3942 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
3943 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
3944 |
msgid "API Key"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
3948 |
+
#: app/features/mec/settings.php:980
|
3949 |
msgid "Required!"
|
3950 |
msgstr ""
|
3951 |
|
4523 |
msgstr ""
|
4524 |
|
4525 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4526 |
+
#: app/libraries/main.php:4521
|
4527 |
msgid "Weekdays"
|
4528 |
msgstr ""
|
4529 |
|
4810 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: app/features/mec/settings.php:890
|
4814 |
+
msgid "Ajax Live mode"
|
4815 |
+
msgstr ""
|
4816 |
+
|
4817 |
+
#: app/features/mec/settings.php:894
|
4818 |
+
msgid "Ajax mode"
|
4819 |
+
msgstr ""
|
4820 |
+
|
4821 |
+
#: app/features/mec/settings.php:895
|
4822 |
+
msgid ""
|
4823 |
+
"if you enable this option, search button disappeared and to use this "
|
4824 |
+
"feature, text input field must be enabled."
|
4825 |
+
msgstr ""
|
4826 |
+
|
4827 |
+
#: app/features/mec/settings.php:901
|
4828 |
+
msgid "Search bar fields"
|
4829 |
+
msgstr ""
|
4830 |
+
|
4831 |
+
#: app/features/mec/settings.php:943
|
4832 |
+
msgid "Text input"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
+
#: app/features/mec/settings.php:956
|
4836 |
msgid "Enable Mailchimp Integration"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
4840 |
msgid "List ID"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
4844 |
msgid "Subscription Status"
|
4845 |
msgstr ""
|
4846 |
|
4847 |
+
#: app/features/mec/settings.php:990
|
4848 |
msgid "Subscribe automatically"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
+
#: app/features/mec/settings.php:991
|
4852 |
msgid "Subscribe by verification"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: app/features/mec/settings.php:996
|
4856 |
msgid ""
|
4857 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
4858 |
"by mailchimp for subscription verification."
|
4859 |
msgstr ""
|
4860 |
|
4861 |
+
#: app/features/mec/settings.php:1008
|
4862 |
msgid "Upload Field Options"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
+
#: app/features/mec/settings.php:1010
|
4866 |
msgid "Mime types"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
+
#: app/features/mec/settings.php:1014
|
4870 |
msgid "Split mime types with \",\"."
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: app/features/mec/settings.php:1014
|
4874 |
msgid "Default: jpeg,jpg,png,pdf"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
+
#: app/features/mec/settings.php:1017
|
4878 |
msgid "Maximum file size"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
+
#: app/features/mec/settings.php:1021
|
4882 |
msgid "The unit is Megabyte \"MB\""
|
4883 |
msgstr ""
|
4884 |
|
5509 |
msgid "eg. https://webnus.net"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5513 |
+
#: app/skins/single.php:813
|
5514 |
msgid "Other Organizers"
|
5515 |
msgstr ""
|
5516 |
|
5528 |
msgid "#"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5532 |
msgid "Status"
|
5533 |
msgstr ""
|
5534 |
|
5546 |
msgstr ""
|
5547 |
|
5548 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5549 |
+
#: app/libraries/main.php:4543
|
5550 |
msgid "Ticket"
|
5551 |
msgstr ""
|
5552 |
|
5558 |
msgid "No bookings found!"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
+
#: app/features/search.php:90
|
5562 |
+
msgid "Please enter at least 3 characters and try again"
|
5563 |
+
msgstr ""
|
5564 |
+
|
5565 |
+
#: app/features/search_bar/search_bar.php:26
|
5566 |
+
msgid "Please enter at least 3 characters"
|
5567 |
+
msgstr ""
|
5568 |
+
|
5569 |
#: app/features/search_bar/search_bar.php:28
|
5570 |
+
msgid "Search results will show here"
|
5571 |
+
msgstr ""
|
5572 |
+
|
5573 |
+
#: app/features/search_bar/search_bar.php:39
|
5574 |
msgid "Search"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: app/features/search_bar/search_noresult.php:1
|
5578 |
+
msgid "No search result."
|
5579 |
+
msgstr ""
|
5580 |
+
|
5581 |
+
#: app/features/search_bar/search_result.php:11
|
5582 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5583 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5584 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5585 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5586 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5587 |
+
msgid "All of the day"
|
5588 |
+
msgstr ""
|
5589 |
+
|
5590 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5591 |
#: app/features/speakers.php:248
|
5592 |
msgid "Job Title"
|
5639 |
msgid "%s Price"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: app/libraries/book.php:539
|
5643 |
msgid "Discount"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
5647 |
#: app/modules/booking/default.php:401
|
5648 |
msgid "Download Invoice"
|
5649 |
msgstr ""
|
5667 |
msgid "Upgrade"
|
5668 |
msgstr ""
|
5669 |
|
5670 |
+
#: app/libraries/factory.php:333
|
5671 |
msgid "day"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
5675 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5676 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5677 |
msgid "days"
|
5678 |
msgstr "Nap"
|
5679 |
|
5680 |
+
#: app/libraries/factory.php:335
|
5681 |
msgid "hour"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
5685 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5686 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5687 |
msgid "hours"
|
5688 |
msgstr "óra"
|
5689 |
|
5690 |
+
#: app/libraries/factory.php:337
|
5691 |
msgid "minute"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
5695 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5696 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5697 |
msgid "minutes"
|
5698 |
msgstr "perc"
|
5699 |
|
5700 |
+
#: app/libraries/factory.php:339
|
5701 |
msgid "second"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
5705 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
5706 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
5707 |
msgid "seconds"
|
5708 |
msgstr "másodperc"
|
5709 |
|
5710 |
+
#: app/libraries/factory.php:383
|
5711 |
msgid "MEC Single Sidebar"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: app/libraries/factory.php:384
|
5715 |
msgid "Custom sidebar for single and modal page of MEC."
|
5716 |
msgstr ""
|
5717 |
|
5774 |
msgid "Slider View"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
5778 |
msgid "SU"
|
5779 |
msgstr ""
|
5780 |
|
5781 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
5782 |
msgid "MO"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
5786 |
msgid "TU"
|
5787 |
msgstr ""
|
5788 |
|
5789 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
5790 |
msgid "WE"
|
5791 |
msgstr ""
|
5792 |
|
5793 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
5794 |
msgid "TH"
|
5795 |
msgstr ""
|
5796 |
|
5797 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
5798 |
msgid "FR"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
5802 |
msgid "SA"
|
5803 |
msgstr ""
|
5804 |
|
5948 |
msgid "Request is not valid."
|
5949 |
msgstr "Fizetés érvénytelen"
|
5950 |
|
5951 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
5952 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
5953 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
5954 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
5955 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
5956 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
5957 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
5958 |
msgid "Sort"
|
5959 |
msgstr ""
|
5960 |
|
5961 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
5962 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
5963 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
5964 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
5965 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
5966 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
5967 |
msgid "Required Field"
|
5968 |
msgstr "Töltse ki az adatokat!"
|
5969 |
|
5970 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
5971 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
5972 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
5973 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
5974 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
5975 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
5976 |
msgid "Insert a label for this field"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
+
#: app/libraries/main.php:2411
|
5980 |
msgid "HTML and shortcode are allowed."
|
5981 |
msgstr ""
|
5982 |
|
5983 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
5984 |
+
#: app/libraries/main.php:2542
|
5985 |
msgid "Option"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
+
#: app/libraries/main.php:2576
|
5989 |
#, php-format
|
5990 |
msgid "Instead of %s, the page title with a link will be show."
|
5991 |
msgstr ""
|
5992 |
|
5993 |
+
#: app/libraries/main.php:2578
|
5994 |
msgid "Agreement Page"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
+
#: app/libraries/main.php:2589
|
5998 |
msgid "Checked by default"
|
5999 |
msgstr ""
|
6000 |
|
6001 |
+
#: app/libraries/main.php:2590
|
6002 |
msgid "Unchecked by default"
|
6003 |
msgstr ""
|
6004 |
|
6005 |
+
#: app/libraries/main.php:2613
|
6006 |
msgid "Insert a label for this option"
|
6007 |
msgstr ""
|
6008 |
|
6009 |
+
#: app/libraries/main.php:2628
|
6010 |
msgid "Free"
|
6011 |
msgstr "Ingyenes"
|
6012 |
|
6013 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6014 |
msgid "M.E. Calender"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
+
#: app/libraries/main.php:3349
|
6018 |
#, php-format
|
6019 |
msgid "Copy of %s"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
+
#: app/libraries/main.php:4022
|
6023 |
msgid "Booked an event."
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: app/libraries/main.php:4063
|
6027 |
#, php-format
|
6028 |
msgid "%s booked %s event."
|
6029 |
msgstr ""
|
6030 |
|
6031 |
+
#: app/libraries/main.php:4506
|
6032 |
msgid "Taxonomies"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: app/libraries/main.php:4508
|
6036 |
msgid "Category Plural Label"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: app/libraries/main.php:4509
|
6040 |
msgid "Category Singular Label"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
+
#: app/libraries/main.php:4510
|
6044 |
msgid "Label Plural Label"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
+
#: app/libraries/main.php:4511
|
6048 |
msgid "Label Singular Label"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
+
#: app/libraries/main.php:4511
|
6052 |
msgid "label"
|
6053 |
msgstr ""
|
6054 |
|
6055 |
+
#: app/libraries/main.php:4512
|
6056 |
msgid "Location Plural Label"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
+
#: app/libraries/main.php:4513
|
6060 |
msgid "Location Singular Label"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
+
#: app/libraries/main.php:4514
|
6064 |
msgid "Organizer Plural Label"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: app/libraries/main.php:4515
|
6068 |
msgid "Organizer Singular Label"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
+
#: app/libraries/main.php:4516
|
6072 |
msgid "Speaker Plural Label"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
+
#: app/libraries/main.php:4517
|
6076 |
msgid "Speaker Singular Label"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
+
#: app/libraries/main.php:4523
|
6080 |
msgid "Sunday abbreviation"
|
6081 |
msgstr ""
|
6082 |
|
6083 |
+
#: app/libraries/main.php:4524
|
6084 |
msgid "Monday abbreviation"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
+
#: app/libraries/main.php:4525
|
6088 |
msgid "Tuesday abbreviation"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
+
#: app/libraries/main.php:4526
|
6092 |
msgid "Wednesday abbreviation"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
+
#: app/libraries/main.php:4527
|
6096 |
msgid "Thursday abbreviation"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
+
#: app/libraries/main.php:4528
|
6100 |
msgid "Friday abbreviation"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: app/libraries/main.php:4529
|
6104 |
msgid "Saturday abbreviation"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
+
#: app/libraries/main.php:4533
|
6108 |
msgid "Others"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
+
#: app/libraries/main.php:4535
|
6112 |
msgid "Booking Success Message"
|
6113 |
msgstr ""
|
6114 |
|
6115 |
+
#: app/libraries/main.php:4535
|
6116 |
msgid ""
|
6117 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6118 |
"needed, please check your email."
|
6120 |
"Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
|
6121 |
"jóváhagyásra lesz szükség!"
|
6122 |
|
6123 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6124 |
msgid "Register Button"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6128 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6129 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6130 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6131 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6132 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6133 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6134 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6135 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6136 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6141 |
msgid "REGISTER"
|
6142 |
msgstr "REGISZTRÁCIÓ"
|
6143 |
|
6144 |
+
#: app/libraries/main.php:4537
|
6145 |
msgid "View Detail Button"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6149 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6150 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6151 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6156 |
msgid "View Detail"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
+
#: app/libraries/main.php:4538
|
6160 |
msgid "Event Detail Button"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6164 |
msgid "Event Detail"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
+
#: app/libraries/main.php:4540
|
6168 |
msgid "More Info Link"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
+
#: app/libraries/main.php:4543
|
6172 |
msgid "Ticket (Singular)"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
+
#: app/libraries/main.php:4544
|
6176 |
msgid "Tickets (Plural)"
|
6177 |
msgstr ""
|
6178 |
|
6179 |
+
#: app/libraries/main.php:4630
|
6180 |
msgid "EventON"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: app/libraries/main.php:4631
|
6184 |
msgid "The Events Calendar"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
+
#: app/libraries/main.php:4632
|
6188 |
msgid "Events Schedule WP Plugin"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
+
#: app/libraries/main.php:4633
|
6192 |
msgid "Calendarize It"
|
6193 |
msgstr ""
|
6194 |
|
6195 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6196 |
msgid "Confirmed"
|
6197 |
msgstr ""
|
6198 |
|
6199 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6200 |
msgid "Rejected"
|
6201 |
msgstr ""
|
6202 |
|
6203 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6204 |
msgid "Pending"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
+
#: app/libraries/main.php:4757
|
6208 |
msgid "Waiting"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6212 |
msgid "Skin controller does not exist."
|
6213 |
msgstr ""
|
6214 |
|
6216 |
msgid "Please verify your email."
|
6217 |
msgstr ""
|
6218 |
|
6219 |
+
#: app/libraries/notifications.php:125
|
6220 |
msgid "Your booking is received."
|
6221 |
msgstr ""
|
6222 |
|
6223 |
+
#: app/libraries/notifications.php:193
|
6224 |
msgid "Your booking is confirmed."
|
6225 |
msgstr ""
|
6226 |
|
6227 |
+
#: app/libraries/notifications.php:282
|
6228 |
#, fuzzy
|
6229 |
#| msgid "Bookings"
|
6230 |
msgid "booking canceled."
|
6231 |
msgstr "Foglalások"
|
6232 |
|
6233 |
+
#: app/libraries/notifications.php:337
|
6234 |
msgid "A new booking is received."
|
6235 |
msgstr ""
|
6236 |
|
6237 |
+
#: app/libraries/notifications.php:488
|
6238 |
msgid "A new event is added."
|
6239 |
msgstr ""
|
6240 |
|
6241 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6242 |
msgid "to"
|
6243 |
msgstr ""
|
6244 |
|
6245 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6246 |
msgid "+ Add to Google Calendar"
|
6247 |
msgstr "+ Google Naptárba mentés"
|
6248 |
|
6249 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6250 |
msgid "+ iCal export"
|
6251 |
msgstr "+ iCal Exportálás"
|
6252 |
|
6253 |
+
#: app/libraries/notifications.php:752
|
6254 |
msgid "Yes"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: app/libraries/notifications.php:752
|
6258 |
msgid "No"
|
6259 |
msgstr ""
|
6260 |
|
6261 |
+
#: app/libraries/skins.php:958
|
6262 |
msgid "Ignore month and years"
|
6263 |
msgstr ""
|
6264 |
|
6335 |
msgid "Get Directions"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6339 |
msgid "Share this event"
|
6340 |
msgstr ""
|
6341 |
|
6362 |
msgid "Go to occurrence page"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6366 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6367 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6368 |
msgid "Time"
|
6468 |
msgid "List"
|
6469 |
msgstr ""
|
6470 |
|
6471 |
+
#: app/skins/masonry.php:238
|
6472 |
msgid "All"
|
6473 |
msgstr ""
|
6474 |
|
6486 |
msgid "No Events"
|
6487 |
msgstr ""
|
6488 |
|
6489 |
+
#: app/skins/single.php:204
|
6490 |
msgid "Home"
|
6491 |
msgstr ""
|
6492 |
|
6493 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6494 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6495 |
#: app/skins/single/modern.php:256
|
6496 |
msgid "Sold out!"
|
6497 |
msgstr ""
|
6498 |
|
6499 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6500 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6501 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6502 |
#: app/skins/single/modern.php:41
|
6503 |
msgid "Phone"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6507 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6508 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6509 |
#: app/skins/single/modern.php:55
|
6510 |
msgid "Website"
|
6511 |
msgstr "Honlap"
|
6512 |
|
6513 |
+
#: app/skins/single.php:912
|
6514 |
msgid "Speakers:"
|
6515 |
msgstr ""
|
6516 |
|
languages/modern-events-calendar-lite-it_IT.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-it_IT.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-08-
|
5 |
-
"PO-Revision-Date: 2019-08-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it_IT\n"
|
@@ -336,7 +336,7 @@ msgstr "Integrazione BuddyPress"
|
|
336 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
337 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
338 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
339 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
340 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
341 |
#: app/features/mec/styling.php:59
|
342 |
msgid "Mailchimp Integration"
|
@@ -402,9 +402,9 @@ msgstr "Nessun evento trovato nel cestino!"
|
|
402 |
#: app/features/mec/meta_boxes/search_form.php:453
|
403 |
#: app/features/mec/meta_boxes/search_form.php:514
|
404 |
#: app/features/mec/meta_boxes/search_form.php:575
|
405 |
-
#: app/features/mec/settings.php:
|
406 |
-
#: app/libraries/main.php:
|
407 |
-
#: app/skins/single.php:
|
408 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
409 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
410 |
msgid "Category"
|
@@ -412,7 +412,7 @@ msgstr "Categoria"
|
|
412 |
|
413 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
414 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
415 |
-
#: app/libraries/main.php:
|
416 |
msgid "Categories"
|
417 |
msgstr "Categorie"
|
418 |
|
@@ -487,13 +487,13 @@ msgstr "Dettaglio Evento"
|
|
487 |
#: app/features/events.php:322 app/features/events.php:3168
|
488 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
489 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
490 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
491 |
#: app/widgets/single.php:103
|
492 |
msgid "Event Cost"
|
493 |
msgstr "Costo Evento"
|
494 |
|
495 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
496 |
-
#: app/libraries/main.php:
|
497 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
498 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
499 |
msgid "Cost"
|
@@ -510,7 +510,7 @@ msgstr "Dati dell'ospite"
|
|
510 |
#: app/features/events.php:432 app/features/events.php:2250
|
511 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
512 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
513 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
514 |
#: app/modules/booking/steps/form.php:37
|
515 |
msgid "Name"
|
516 |
msgstr "Nome"
|
@@ -521,10 +521,10 @@ msgstr "Nome"
|
|
521 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
522 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
523 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
524 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
525 |
-
#: app/libraries/notifications.php:
|
526 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
527 |
-
#: app/skins/single.php:
|
528 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
529 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
530 |
msgid "Email"
|
@@ -670,14 +670,14 @@ msgstr ""
|
|
670 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
671 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
672 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
673 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
674 |
-
#: app/features/mec/settings.php:
|
675 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
676 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
677 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
678 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
679 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
680 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
681 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
682 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
683 |
#: app/skins/single/modern.php:133
|
@@ -887,9 +887,9 @@ msgstr "Escludi certi giorni"
|
|
887 |
|
888 |
#: app/features/events.php:1130 app/features/events.php:2340
|
889 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
890 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
891 |
#: app/modules/booking/steps/tickets.php:22
|
892 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
893 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
894 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
895 |
msgid "Date"
|
@@ -907,7 +907,7 @@ msgid "Day 1"
|
|
907 |
msgstr ""
|
908 |
|
909 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
910 |
-
#: app/skins/single.php:
|
911 |
msgid "Hourly Schedule"
|
912 |
msgstr "Schedula per Ore"
|
913 |
|
@@ -946,14 +946,14 @@ msgstr "Titolo"
|
|
946 |
#: app/features/events.php:2154 app/features/events.php:2196
|
947 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
948 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
949 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
950 |
-
#: app/libraries/main.php:
|
951 |
-
#: app/libraries/main.php:
|
952 |
-
#: app/libraries/main.php:
|
953 |
-
#: app/libraries/main.php:
|
954 |
-
#: app/libraries/main.php:
|
955 |
-
#: app/libraries/main.php:
|
956 |
-
#: app/libraries/main.php:
|
957 |
msgid "Remove"
|
958 |
msgstr "Elimina"
|
959 |
|
@@ -986,7 +986,7 @@ msgstr "Descrizione"
|
|
986 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
987 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
988 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
989 |
-
#: app/features/speakers.php:60 app/libraries/main.php:
|
990 |
#: app/modules/speakers/details.php:18
|
991 |
msgid "Speakers"
|
992 |
msgstr ""
|
@@ -1003,7 +1003,7 @@ msgid "Event Links"
|
|
1003 |
msgstr "Link dell'evento"
|
1004 |
|
1005 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1006 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1007 |
msgid "Event Link"
|
1008 |
msgstr "Link dell'evento"
|
1009 |
|
@@ -1030,8 +1030,8 @@ msgid "URL Shortener"
|
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1033 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1034 |
-
#: app/skins/single.php:
|
1035 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1036 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1037 |
#: app/widgets/single.php:107
|
@@ -1097,7 +1097,7 @@ msgid "12"
|
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1100 |
-
#: app/libraries/main.php:
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Biglietto/ticket"
|
1103 |
|
@@ -1171,8 +1171,8 @@ msgstr "Etichetta prezzo"
|
|
1171 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1172 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1174 |
-
#: app/features/mec/settings.php:
|
1175 |
-
#: app/libraries/skins.php:
|
1176 |
msgid "Label"
|
1177 |
msgstr "Etichetta"
|
1178 |
|
@@ -1247,48 +1247,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1250 |
-
#: app/libraries/main.php:
|
1251 |
#, fuzzy
|
1252 |
#| msgid "Name"
|
1253 |
msgid "MEC Name"
|
1254 |
msgstr "Nome"
|
1255 |
|
1256 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1257 |
-
#: app/libraries/main.php:
|
1258 |
#, fuzzy
|
1259 |
#| msgid "Email"
|
1260 |
msgid "MEC Email"
|
1261 |
msgstr "Email"
|
1262 |
|
1263 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1264 |
-
#: app/libraries/main.php:
|
1265 |
msgid "Text"
|
1266 |
msgstr "Testo"
|
1267 |
|
1268 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1269 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1270 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1271 |
-
#: app/features/speakers.php:249 app/libraries/main.php:
|
1272 |
msgid "Tel"
|
1273 |
msgstr "Tel"
|
1274 |
|
1275 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1276 |
-
#: app/libraries/main.php:
|
1277 |
msgid "File"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1281 |
-
#: app/libraries/main.php:
|
1282 |
msgid "Textarea"
|
1283 |
msgstr "Area di testo"
|
1284 |
|
1285 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1286 |
-
#: app/libraries/main.php:
|
1287 |
msgid "Checkboxes"
|
1288 |
msgstr "Caselle di selezione"
|
1289 |
|
1290 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1291 |
-
#: app/libraries/main.php:
|
1292 |
msgid "Radio Buttons"
|
1293 |
msgstr "Opzioni di selezione"
|
1294 |
|
@@ -1361,17 +1361,17 @@ msgstr "Opzioni di selezione"
|
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1364 |
-
#: app/features/mec/regform.php:277 app/libraries/main.php:
|
1365 |
msgid "Dropdown"
|
1366 |
msgstr "Casella di selezione"
|
1367 |
|
1368 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1369 |
-
#: app/libraries/main.php:
|
1370 |
msgid "Agreement"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1374 |
-
#: app/libraries/main.php:
|
1375 |
msgid "Paragraph"
|
1376 |
msgstr "Paragrafo"
|
1377 |
|
@@ -1409,10 +1409,10 @@ msgstr ""
|
|
1409 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1410 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1411 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1412 |
-
#: app/features/mec/settings.php:
|
1413 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1414 |
-
#: app/libraries/skins.php:
|
1415 |
-
#: app/skins/single.php:
|
1416 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1417 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1418 |
msgid "Location"
|
@@ -1431,11 +1431,11 @@ msgstr "Luogo"
|
|
1431 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1434 |
-
#: app/features/mec/settings.php:
|
1435 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1436 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1437 |
-
#: app/features/organizers.php:271 app/libraries/main.php:
|
1438 |
-
#: app/libraries/skins.php:
|
1439 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1440 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1441 |
#: app/skins/single/modern.php:31
|
@@ -1588,8 +1588,8 @@ msgstr "Rimuovi immagine"
|
|
1588 |
|
1589 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1590 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1591 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1592 |
-
#: app/skins/single.php:
|
1593 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1594 |
#: app/skins/single/modern.php:214
|
1595 |
msgid "Labels"
|
@@ -1935,7 +1935,7 @@ msgstr "Aggiungi al calendario Google"
|
|
1935 |
|
1936 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1937 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1938 |
-
#: app/features/mec/settings.php:
|
1939 |
msgid "Checking ..."
|
1940 |
msgstr "Sto controllando..."
|
1941 |
|
@@ -2344,7 +2344,7 @@ msgid "Featured"
|
|
2344 |
msgstr "Immagine in evidenza"
|
2345 |
|
2346 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2347 |
-
#: app/libraries/main.php:
|
2348 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2349 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2350 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
@@ -2379,7 +2379,7 @@ msgstr ""
|
|
2379 |
|
2380 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2381 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2382 |
-
#: app/libraries/main.php:
|
2383 |
msgid "Locations"
|
2384 |
msgstr "Luoghi"
|
2385 |
|
@@ -2486,7 +2486,7 @@ msgstr "Seleziona immagine"
|
|
2486 |
msgid "Don't show map in single event page"
|
2487 |
msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
|
2488 |
|
2489 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2490 |
#, fuzzy
|
2491 |
#| msgid "Search Locations"
|
2492 |
msgid "Other Locations"
|
@@ -2538,7 +2538,7 @@ msgstr "Supporto"
|
|
2538 |
|
2539 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2540 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2541 |
-
#: app/libraries/main.php:
|
2542 |
msgid "Organizers"
|
2543 |
msgstr "Organizzatori"
|
2544 |
|
@@ -2659,9 +2659,9 @@ msgstr ""
|
|
2659 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2660 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2661 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2662 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2663 |
-
#: app/features/mec/settings.php:
|
2664 |
-
#: app/features/mec/settings.php:
|
2665 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2666 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2667 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
@@ -2761,7 +2761,7 @@ msgstr "Tutti i Luoghi"
|
|
2761 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2762 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2763 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2764 |
-
#: app/skins/single.php:
|
2765 |
#, fuzzy
|
2766 |
#| msgid "featured event"
|
2767 |
msgid "Related Events"
|
@@ -2892,7 +2892,7 @@ msgstr ""
|
|
2892 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2893 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2894 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2895 |
-
#: app/libraries/notifications.php:
|
2896 |
msgid "Booking Reminder"
|
2897 |
msgstr ""
|
2898 |
|
@@ -3072,7 +3072,7 @@ msgstr ""
|
|
3072 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3073 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3074 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3075 |
-
#: app/features/mec/settings.php:
|
3076 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3077 |
msgid "Saved"
|
3078 |
msgstr "Salvato"
|
@@ -3080,7 +3080,7 @@ msgstr "Salvato"
|
|
3080 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3081 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3082 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3083 |
-
#: app/features/mec/settings.php:
|
3084 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3085 |
msgid "Settings Saved!"
|
3086 |
msgstr ""
|
@@ -3088,14 +3088,14 @@ msgstr ""
|
|
3088 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3089 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3090 |
#: app/features/mec/notifications.php:735
|
3091 |
-
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:
|
3092 |
-
#: app/features/mec/settings.php:
|
3093 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
3094 |
msgid "Verified"
|
3095 |
msgstr "Verificato"
|
3096 |
|
3097 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3098 |
-
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:
|
3099 |
#: app/features/mec/single.php:502
|
3100 |
msgid "Please Refresh Page"
|
3101 |
msgstr "Si prega di ricaricare la pagina"
|
@@ -4033,9 +4033,9 @@ msgstr "Disattivato"
|
|
4033 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4034 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4035 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4036 |
-
#: app/features/mec/settings.php:
|
4037 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4038 |
-
#: app/libraries/main.php:
|
4039 |
msgid "Speaker"
|
4040 |
msgstr ""
|
4041 |
|
@@ -4049,8 +4049,8 @@ msgstr ""
|
|
4049 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4050 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4051 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4052 |
-
#: app/features/mec/settings.php:
|
4053 |
-
#: app/libraries/skins.php:
|
4054 |
#, fuzzy
|
4055 |
#| msgid "Tags"
|
4056 |
msgid "Tag"
|
@@ -4132,12 +4132,12 @@ msgid "Show Google Maps on event page"
|
|
4132 |
msgstr "Mostra Google Map sulla pagina dell'evento"
|
4133 |
|
4134 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4135 |
-
#: app/features/mec/settings.php:
|
4136 |
msgid "API Key"
|
4137 |
msgstr "API Key"
|
4138 |
|
4139 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
4140 |
-
#: app/features/mec/settings.php:
|
4141 |
msgid "Required!"
|
4142 |
msgstr "Richiesto!"
|
4143 |
|
@@ -4742,7 +4742,7 @@ msgid ""
|
|
4742 |
msgstr ""
|
4743 |
|
4744 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4745 |
-
#: app/libraries/main.php:
|
4746 |
msgid "Weekdays"
|
4747 |
msgstr "Settimanali"
|
4748 |
|
@@ -5071,31 +5071,53 @@ msgid ""
|
|
5071 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
-
#: app/features/mec/settings.php:
|
5075 |
-
msgid "
|
|
|
|
|
|
|
|
|
5076 |
msgstr ""
|
5077 |
|
5078 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5079 |
msgid "Enable Mailchimp Integration"
|
5080 |
msgstr "Abilita integrazione con Mailchimp"
|
5081 |
|
5082 |
-
#: app/features/mec/settings.php:
|
5083 |
msgid "List ID"
|
5084 |
msgstr "Lista ID"
|
5085 |
|
5086 |
-
#: app/features/mec/settings.php:
|
5087 |
msgid "Subscription Status"
|
5088 |
msgstr "Stato iscrizione"
|
5089 |
|
5090 |
-
#: app/features/mec/settings.php:
|
5091 |
msgid "Subscribe automatically"
|
5092 |
msgstr "Iscriviti automaticamente"
|
5093 |
|
5094 |
-
#: app/features/mec/settings.php:
|
5095 |
msgid "Subscribe by verification"
|
5096 |
msgstr "Iscriviti con verifica"
|
5097 |
|
5098 |
-
#: app/features/mec/settings.php:
|
5099 |
msgid ""
|
5100 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5101 |
"by mailchimp for subscription verification."
|
@@ -5103,31 +5125,31 @@ msgstr ""
|
|
5103 |
"Se hai selezionato \"Iscriviti con verifica\" allora una email verrà "
|
5104 |
"spediita all'utente da Mailchimp per verificare l'iscrizione."
|
5105 |
|
5106 |
-
#: app/features/mec/settings.php:
|
5107 |
#, fuzzy
|
5108 |
#| msgid "Filter Options"
|
5109 |
msgid "Upload Field Options"
|
5110 |
msgstr "Opzioni filtro"
|
5111 |
|
5112 |
-
#: app/features/mec/settings.php:
|
5113 |
msgid "Mime types"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
-
#: app/features/mec/settings.php:
|
5117 |
msgid "Split mime types with \",\"."
|
5118 |
msgstr ""
|
5119 |
|
5120 |
-
#: app/features/mec/settings.php:
|
5121 |
msgid "Default: jpeg,jpg,png,pdf"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
-
#: app/features/mec/settings.php:
|
5125 |
#, fuzzy
|
5126 |
#| msgid "Maximum events"
|
5127 |
msgid "Maximum file size"
|
5128 |
msgstr "Massimo numero di eventi"
|
5129 |
|
5130 |
-
#: app/features/mec/settings.php:
|
5131 |
msgid "The unit is Megabyte \"MB\""
|
5132 |
msgstr ""
|
5133 |
|
@@ -5844,8 +5866,8 @@ msgstr "es. mario@rossi.it"
|
|
5844 |
msgid "eg. https://webnus.net"
|
5845 |
msgstr "http://webnus.biz"
|
5846 |
|
5847 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5848 |
-
#: app/skins/single.php:
|
5849 |
msgid "Other Organizers"
|
5850 |
msgstr ""
|
5851 |
|
@@ -5864,7 +5886,7 @@ msgstr "Si prega di %s/%s prima di inserire nuovi eventi."
|
|
5864 |
msgid "#"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5868 |
msgid "Status"
|
5869 |
msgstr ""
|
5870 |
|
@@ -5882,7 +5904,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5882 |
msgstr ""
|
5883 |
|
5884 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5885 |
-
#: app/libraries/main.php:
|
5886 |
msgid "Ticket"
|
5887 |
msgstr "Ticket"
|
5888 |
|
@@ -5896,12 +5918,37 @@ msgstr "Verifica"
|
|
5896 |
msgid "No bookings found!"
|
5897 |
msgstr "Nessuna prenotazione trovata!"
|
5898 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5899 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5900 |
#, fuzzy
|
5901 |
#| msgid "Search Form"
|
5902 |
msgid "Search"
|
5903 |
msgstr "Casella di ricerca"
|
5904 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5905 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5906 |
#: app/features/speakers.php:248
|
5907 |
#, fuzzy
|
@@ -5968,11 +6015,11 @@ msgstr ""
|
|
5968 |
msgid "%s Price"
|
5969 |
msgstr ""
|
5970 |
|
5971 |
-
#: app/libraries/book.php:
|
5972 |
msgid "Discount"
|
5973 |
msgstr "Sconto"
|
5974 |
|
5975 |
-
#: app/libraries/book.php:
|
5976 |
#: app/modules/booking/default.php:401
|
5977 |
msgid "Download Invoice"
|
5978 |
msgstr ""
|
@@ -5996,51 +6043,51 @@ msgctxt "plugin link"
|
|
5996 |
msgid "Upgrade"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
-
#: app/libraries/factory.php:
|
6000 |
msgid "day"
|
6001 |
msgstr "giorno"
|
6002 |
|
6003 |
-
#: app/libraries/factory.php:
|
6004 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6005 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6006 |
msgid "days"
|
6007 |
msgstr "giorni"
|
6008 |
|
6009 |
-
#: app/libraries/factory.php:
|
6010 |
msgid "hour"
|
6011 |
msgstr "ora"
|
6012 |
|
6013 |
-
#: app/libraries/factory.php:
|
6014 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6015 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6016 |
msgid "hours"
|
6017 |
msgstr "ore"
|
6018 |
|
6019 |
-
#: app/libraries/factory.php:
|
6020 |
msgid "minute"
|
6021 |
msgstr "minuto"
|
6022 |
|
6023 |
-
#: app/libraries/factory.php:
|
6024 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6025 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6026 |
msgid "minutes"
|
6027 |
msgstr "minuti"
|
6028 |
|
6029 |
-
#: app/libraries/factory.php:
|
6030 |
msgid "second"
|
6031 |
msgstr "secondo"
|
6032 |
|
6033 |
-
#: app/libraries/factory.php:
|
6034 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6035 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6036 |
msgid "seconds"
|
6037 |
msgstr "secondi"
|
6038 |
|
6039 |
-
#: app/libraries/factory.php:
|
6040 |
msgid "MEC Single Sidebar"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: app/libraries/factory.php:
|
6044 |
msgid "Custom sidebar for single and modal page of MEC."
|
6045 |
msgstr ""
|
6046 |
|
@@ -6103,31 +6150,31 @@ msgstr "Visualizza carosello"
|
|
6103 |
msgid "Slider View"
|
6104 |
msgstr "Visualizza slider"
|
6105 |
|
6106 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6107 |
msgid "SU"
|
6108 |
msgstr "D"
|
6109 |
|
6110 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6111 |
msgid "MO"
|
6112 |
msgstr "L"
|
6113 |
|
6114 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6115 |
msgid "TU"
|
6116 |
msgstr "M"
|
6117 |
|
6118 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6119 |
msgid "WE"
|
6120 |
msgstr "M"
|
6121 |
|
6122 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6123 |
msgid "TH"
|
6124 |
msgstr "G"
|
6125 |
|
6126 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6127 |
msgid "FR"
|
6128 |
msgstr "V"
|
6129 |
|
6130 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6131 |
msgid "SA"
|
6132 |
msgstr "S"
|
6133 |
|
@@ -6279,177 +6326,177 @@ msgstr "esportazione iCal annullata!"
|
|
6279 |
msgid "Request is not valid."
|
6280 |
msgstr "Richiesta non valida!"
|
6281 |
|
6282 |
-
#: app/libraries/main.php:
|
6283 |
-
#: app/libraries/main.php:
|
6284 |
-
#: app/libraries/main.php:
|
6285 |
-
#: app/libraries/main.php:
|
6286 |
-
#: app/libraries/main.php:
|
6287 |
-
#: app/libraries/main.php:
|
6288 |
-
#: app/libraries/main.php:
|
6289 |
msgid "Sort"
|
6290 |
msgstr "Ordina"
|
6291 |
|
6292 |
-
#: app/libraries/main.php:
|
6293 |
-
#: app/libraries/main.php:
|
6294 |
-
#: app/libraries/main.php:
|
6295 |
-
#: app/libraries/main.php:
|
6296 |
-
#: app/libraries/main.php:
|
6297 |
-
#: app/libraries/main.php:
|
6298 |
msgid "Required Field"
|
6299 |
msgstr "Campo obbligatorio"
|
6300 |
|
6301 |
-
#: app/libraries/main.php:
|
6302 |
-
#: app/libraries/main.php:
|
6303 |
-
#: app/libraries/main.php:
|
6304 |
-
#: app/libraries/main.php:
|
6305 |
-
#: app/libraries/main.php:
|
6306 |
-
#: app/libraries/main.php:
|
6307 |
msgid "Insert a label for this field"
|
6308 |
msgstr "Inserisci una etichetta per questo campo"
|
6309 |
|
6310 |
-
#: app/libraries/main.php:
|
6311 |
msgid "HTML and shortcode are allowed."
|
6312 |
msgstr "HTML e shortcode sono ammessi."
|
6313 |
|
6314 |
-
#: app/libraries/main.php:
|
6315 |
-
#: app/libraries/main.php:
|
6316 |
msgid "Option"
|
6317 |
msgstr "Opzione"
|
6318 |
|
6319 |
-
#: app/libraries/main.php:
|
6320 |
#, php-format
|
6321 |
msgid "Instead of %s, the page title with a link will be show."
|
6322 |
msgstr ""
|
6323 |
|
6324 |
-
#: app/libraries/main.php:
|
6325 |
msgid "Agreement Page"
|
6326 |
msgstr ""
|
6327 |
|
6328 |
-
#: app/libraries/main.php:
|
6329 |
msgid "Checked by default"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
-
#: app/libraries/main.php:
|
6333 |
msgid "Unchecked by default"
|
6334 |
msgstr ""
|
6335 |
|
6336 |
-
#: app/libraries/main.php:
|
6337 |
msgid "Insert a label for this option"
|
6338 |
msgstr "Inserisci una etichetta per questa opzione"
|
6339 |
|
6340 |
-
#: app/libraries/main.php:
|
6341 |
msgid "Free"
|
6342 |
msgstr "Gratuito"
|
6343 |
|
6344 |
-
#: app/libraries/main.php:
|
6345 |
#, fuzzy
|
6346 |
#| msgid "M.E. Calendar"
|
6347 |
msgid "M.E. Calender"
|
6348 |
msgstr "Calendario"
|
6349 |
|
6350 |
-
#: app/libraries/main.php:
|
6351 |
#, php-format
|
6352 |
msgid "Copy of %s"
|
6353 |
msgstr "Copia di %s"
|
6354 |
|
6355 |
-
#: app/libraries/main.php:
|
6356 |
msgid "Booked an event."
|
6357 |
msgstr "Prenotato un evento."
|
6358 |
|
6359 |
-
#: app/libraries/main.php:
|
6360 |
#, php-format
|
6361 |
msgid "%s booked %s event."
|
6362 |
msgstr "%s ha prenotato l'evento %s."
|
6363 |
|
6364 |
-
#: app/libraries/main.php:
|
6365 |
msgid "Taxonomies"
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: app/libraries/main.php:
|
6369 |
msgid "Category Plural Label"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
-
#: app/libraries/main.php:
|
6373 |
msgid "Category Singular Label"
|
6374 |
msgstr ""
|
6375 |
|
6376 |
-
#: app/libraries/main.php:
|
6377 |
msgid "Label Plural Label"
|
6378 |
msgstr ""
|
6379 |
|
6380 |
-
#: app/libraries/main.php:
|
6381 |
msgid "Label Singular Label"
|
6382 |
msgstr ""
|
6383 |
|
6384 |
-
#: app/libraries/main.php:
|
6385 |
msgid "label"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
-
#: app/libraries/main.php:
|
6389 |
msgid "Location Plural Label"
|
6390 |
msgstr ""
|
6391 |
|
6392 |
-
#: app/libraries/main.php:
|
6393 |
msgid "Location Singular Label"
|
6394 |
msgstr ""
|
6395 |
|
6396 |
-
#: app/libraries/main.php:
|
6397 |
msgid "Organizer Plural Label"
|
6398 |
msgstr ""
|
6399 |
|
6400 |
-
#: app/libraries/main.php:
|
6401 |
msgid "Organizer Singular Label"
|
6402 |
msgstr ""
|
6403 |
|
6404 |
-
#: app/libraries/main.php:
|
6405 |
#, fuzzy
|
6406 |
#| msgid "Search Labels"
|
6407 |
msgid "Speaker Plural Label"
|
6408 |
msgstr "Cerca etichette"
|
6409 |
|
6410 |
-
#: app/libraries/main.php:
|
6411 |
#, fuzzy
|
6412 |
#| msgid "Popular Labels"
|
6413 |
msgid "Speaker Singular Label"
|
6414 |
msgstr "Etichette frequenti"
|
6415 |
|
6416 |
-
#: app/libraries/main.php:
|
6417 |
msgid "Sunday abbreviation"
|
6418 |
msgstr ""
|
6419 |
|
6420 |
-
#: app/libraries/main.php:
|
6421 |
msgid "Monday abbreviation"
|
6422 |
msgstr ""
|
6423 |
|
6424 |
-
#: app/libraries/main.php:
|
6425 |
msgid "Tuesday abbreviation"
|
6426 |
msgstr ""
|
6427 |
|
6428 |
-
#: app/libraries/main.php:
|
6429 |
msgid "Wednesday abbreviation"
|
6430 |
msgstr ""
|
6431 |
|
6432 |
-
#: app/libraries/main.php:
|
6433 |
msgid "Thursday abbreviation"
|
6434 |
msgstr ""
|
6435 |
|
6436 |
-
#: app/libraries/main.php:
|
6437 |
msgid "Friday abbreviation"
|
6438 |
msgstr ""
|
6439 |
|
6440 |
-
#: app/libraries/main.php:
|
6441 |
msgid "Saturday abbreviation"
|
6442 |
msgstr ""
|
6443 |
|
6444 |
-
#: app/libraries/main.php:
|
6445 |
msgid "Others"
|
6446 |
msgstr ""
|
6447 |
|
6448 |
-
#: app/libraries/main.php:
|
6449 |
msgid "Booking Success Message"
|
6450 |
msgstr ""
|
6451 |
|
6452 |
-
#: app/libraries/main.php:
|
6453 |
msgid ""
|
6454 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6455 |
"needed, please check your email."
|
@@ -6458,17 +6505,17 @@ msgstr ""
|
|
6458 |
"essere necessario la verifica della prenotazione, si prega di controllare la "
|
6459 |
"posta elettronica."
|
6460 |
|
6461 |
-
#: app/libraries/main.php:
|
6462 |
msgid "Register Button"
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: app/libraries/main.php:
|
6466 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6467 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6468 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6469 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6470 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6471 |
-
#: app/skins/single.php:
|
6472 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6473 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6474 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6479,11 +6526,11 @@ msgstr ""
|
|
6479 |
msgid "REGISTER"
|
6480 |
msgstr "REGISTRA"
|
6481 |
|
6482 |
-
#: app/libraries/main.php:
|
6483 |
msgid "View Detail Button"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
-
#: app/libraries/main.php:
|
6487 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6488 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6489 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6494,59 +6541,59 @@ msgstr ""
|
|
6494 |
msgid "View Detail"
|
6495 |
msgstr "Visualizza dettaglio"
|
6496 |
|
6497 |
-
#: app/libraries/main.php:
|
6498 |
msgid "Event Detail Button"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
-
#: app/libraries/main.php:
|
6502 |
msgid "Event Detail"
|
6503 |
msgstr "Dettaglio evento"
|
6504 |
|
6505 |
-
#: app/libraries/main.php:
|
6506 |
msgid "More Info Link"
|
6507 |
msgstr ""
|
6508 |
|
6509 |
-
#: app/libraries/main.php:
|
6510 |
msgid "Ticket (Singular)"
|
6511 |
msgstr ""
|
6512 |
|
6513 |
-
#: app/libraries/main.php:
|
6514 |
msgid "Tickets (Plural)"
|
6515 |
msgstr ""
|
6516 |
|
6517 |
-
#: app/libraries/main.php:
|
6518 |
msgid "EventON"
|
6519 |
msgstr ""
|
6520 |
|
6521 |
-
#: app/libraries/main.php:
|
6522 |
msgid "The Events Calendar"
|
6523 |
msgstr ""
|
6524 |
|
6525 |
-
#: app/libraries/main.php:
|
6526 |
msgid "Events Schedule WP Plugin"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
-
#: app/libraries/main.php:
|
6530 |
msgid "Calendarize It"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
-
#: app/libraries/main.php:
|
6534 |
msgid "Confirmed"
|
6535 |
msgstr "Confermato"
|
6536 |
|
6537 |
-
#: app/libraries/main.php:
|
6538 |
msgid "Rejected"
|
6539 |
msgstr "Rifiutato"
|
6540 |
|
6541 |
-
#: app/libraries/main.php:
|
6542 |
msgid "Pending"
|
6543 |
msgstr "In attesa"
|
6544 |
|
6545 |
-
#: app/libraries/main.php:
|
6546 |
msgid "Waiting"
|
6547 |
msgstr "In attesa"
|
6548 |
|
6549 |
-
#: app/libraries/main.php:
|
6550 |
msgid "Skin controller does not exist."
|
6551 |
msgstr "Non esiste il controllo dello stile."
|
6552 |
|
@@ -6554,57 +6601,49 @@ msgstr "Non esiste il controllo dello stile."
|
|
6554 |
msgid "Please verify your email."
|
6555 |
msgstr "Si prega di verificare la propria email."
|
6556 |
|
6557 |
-
#: app/libraries/notifications.php:
|
6558 |
msgid "Your booking is received."
|
6559 |
msgstr ""
|
6560 |
|
6561 |
-
#: app/libraries/notifications.php:
|
6562 |
msgid "Your booking is confirmed."
|
6563 |
msgstr "La tua prenotazione è confermata."
|
6564 |
|
6565 |
-
#: app/libraries/notifications.php:
|
6566 |
#, fuzzy
|
6567 |
#| msgid "Your booking cannot be canceled."
|
6568 |
msgid "booking canceled."
|
6569 |
msgstr "La tua prenotazione non può essere cancellata."
|
6570 |
|
6571 |
-
#: app/libraries/notifications.php:
|
6572 |
msgid "A new booking is received."
|
6573 |
msgstr "Una nuova prenotazione è stata ricevuta."
|
6574 |
|
6575 |
-
#: app/libraries/notifications.php:
|
6576 |
msgid "A new event is added."
|
6577 |
msgstr "Un nuovo evento è stato aggiunto."
|
6578 |
|
6579 |
-
#: app/libraries/notifications.php:
|
6580 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6581 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6582 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6583 |
-
#: app/skins/single/modern.php:184
|
6584 |
-
msgid "All of the day"
|
6585 |
-
msgstr "Tutti del giorno"
|
6586 |
-
|
6587 |
-
#: app/libraries/notifications.php:611
|
6588 |
msgid "to"
|
6589 |
msgstr ""
|
6590 |
|
6591 |
-
#: app/libraries/notifications.php:
|
6592 |
msgid "+ Add to Google Calendar"
|
6593 |
msgstr "+ Aggiungi a Google Calendar"
|
6594 |
|
6595 |
-
#: app/libraries/notifications.php:
|
6596 |
msgid "+ iCal export"
|
6597 |
msgstr "+ Esporta iCal"
|
6598 |
|
6599 |
-
#: app/libraries/notifications.php:
|
6600 |
msgid "Yes"
|
6601 |
msgstr ""
|
6602 |
|
6603 |
-
#: app/libraries/notifications.php:
|
6604 |
msgid "No"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
-
#: app/libraries/skins.php:
|
6608 |
msgid "Ignore month and years"
|
6609 |
msgstr "Ignora mesi e anni"
|
6610 |
|
@@ -6681,7 +6720,7 @@ msgstr "Indirizzo da ..."
|
|
6681 |
msgid "Get Directions"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6685 |
msgid "Share this event"
|
6686 |
msgstr "Condividi questo evento"
|
6687 |
|
@@ -6708,7 +6747,7 @@ msgstr "Prossimo avvenimento"
|
|
6708 |
msgid "Go to occurrence page"
|
6709 |
msgstr "Vai alla pagina necessaria"
|
6710 |
|
6711 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6712 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6713 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6714 |
msgid "Time"
|
@@ -6816,7 +6855,7 @@ msgstr "Nessun evento"
|
|
6816 |
msgid "List"
|
6817 |
msgstr "Lista"
|
6818 |
|
6819 |
-
#: app/skins/masonry.php:
|
6820 |
msgid "All"
|
6821 |
msgstr ""
|
6822 |
|
@@ -6834,31 +6873,31 @@ msgstr "Eventi di %s"
|
|
6834 |
msgid "No Events"
|
6835 |
msgstr "Nessun evento"
|
6836 |
|
6837 |
-
#: app/skins/single.php:
|
6838 |
msgid "Home"
|
6839 |
msgstr ""
|
6840 |
|
6841 |
-
#: app/skins/single.php:
|
6842 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6843 |
#: app/skins/single/modern.php:256
|
6844 |
msgid "Sold out!"
|
6845 |
msgstr ""
|
6846 |
|
6847 |
-
#: app/skins/single.php:
|
6848 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6849 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6850 |
#: app/skins/single/modern.php:41
|
6851 |
msgid "Phone"
|
6852 |
msgstr "Telefono"
|
6853 |
|
6854 |
-
#: app/skins/single.php:
|
6855 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6856 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6857 |
#: app/skins/single/modern.php:55
|
6858 |
msgid "Website"
|
6859 |
msgstr "Sito web"
|
6860 |
|
6861 |
-
#: app/skins/single.php:
|
6862 |
#, fuzzy
|
6863 |
#| msgid "No Search Options"
|
6864 |
msgid "Speakers:"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-13 16:46+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it_IT\n"
|
336 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
337 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
338 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
339 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
340 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
341 |
#: app/features/mec/styling.php:59
|
342 |
msgid "Mailchimp Integration"
|
402 |
#: app/features/mec/meta_boxes/search_form.php:453
|
403 |
#: app/features/mec/meta_boxes/search_form.php:514
|
404 |
#: app/features/mec/meta_boxes/search_form.php:575
|
405 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
406 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
407 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
408 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
409 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
410 |
msgid "Category"
|
412 |
|
413 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
414 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
415 |
+
#: app/libraries/main.php:4508
|
416 |
msgid "Categories"
|
417 |
msgstr "Categorie"
|
418 |
|
487 |
#: app/features/events.php:322 app/features/events.php:3168
|
488 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
489 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
490 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
491 |
#: app/widgets/single.php:103
|
492 |
msgid "Event Cost"
|
493 |
msgstr "Costo Evento"
|
494 |
|
495 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
496 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
497 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
498 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
499 |
msgid "Cost"
|
510 |
#: app/features/events.php:432 app/features/events.php:2250
|
511 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
512 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
513 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
514 |
#: app/modules/booking/steps/form.php:37
|
515 |
msgid "Name"
|
516 |
msgstr "Nome"
|
521 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
522 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
523 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
524 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
525 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
526 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
527 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
528 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
529 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
530 |
msgid "Email"
|
670 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
671 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
672 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
673 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
674 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
675 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
676 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
677 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
678 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
679 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
680 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
681 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
682 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
683 |
#: app/skins/single/modern.php:133
|
887 |
|
888 |
#: app/features/events.php:1130 app/features/events.php:2340
|
889 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
890 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
891 |
#: app/modules/booking/steps/tickets.php:22
|
892 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
893 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
894 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
895 |
msgid "Date"
|
907 |
msgstr ""
|
908 |
|
909 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
910 |
+
#: app/skins/single.php:898
|
911 |
msgid "Hourly Schedule"
|
912 |
msgstr "Schedula per Ore"
|
913 |
|
946 |
#: app/features/events.php:2154 app/features/events.php:2196
|
947 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
948 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
949 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
950 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
951 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
952 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
953 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
954 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
955 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
956 |
+
#: app/libraries/main.php:2612
|
957 |
msgid "Remove"
|
958 |
msgstr "Elimina"
|
959 |
|
986 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
987 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
988 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
989 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4516
|
990 |
#: app/modules/speakers/details.php:18
|
991 |
msgid "Speakers"
|
992 |
msgstr ""
|
1003 |
msgstr "Link dell'evento"
|
1004 |
|
1005 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1006 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4539
|
1007 |
msgid "Event Link"
|
1008 |
msgstr "Link dell'evento"
|
1009 |
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1033 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4540
|
1034 |
+
#: app/skins/single.php:627 app/skins/single/default.php:118
|
1035 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1036 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1037 |
#: app/widgets/single.php:107
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1100 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Biglietto/ticket"
|
1103 |
|
1171 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1172 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1174 |
+
#: app/features/mec/settings.php:937 app/features/mec/single.php:408
|
1175 |
+
#: app/libraries/skins.php:937
|
1176 |
msgid "Label"
|
1177 |
msgstr "Etichetta"
|
1178 |
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1250 |
+
#: app/libraries/main.php:2202
|
1251 |
#, fuzzy
|
1252 |
#| msgid "Name"
|
1253 |
msgid "MEC Name"
|
1254 |
msgstr "Nome"
|
1255 |
|
1256 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1257 |
+
#: app/libraries/main.php:2231
|
1258 |
#, fuzzy
|
1259 |
#| msgid "Email"
|
1260 |
msgid "MEC Email"
|
1261 |
msgstr "Email"
|
1262 |
|
1263 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1264 |
+
#: app/libraries/main.php:2172
|
1265 |
msgid "Text"
|
1266 |
msgstr "Testo"
|
1267 |
|
1268 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1269 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1270 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1271 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2348
|
1272 |
msgid "Tel"
|
1273 |
msgstr "Tel"
|
1274 |
|
1275 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1276 |
+
#: app/libraries/main.php:2290
|
1277 |
msgid "File"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1281 |
+
#: app/libraries/main.php:2377
|
1282 |
msgid "Textarea"
|
1283 |
msgstr "Area di testo"
|
1284 |
|
1285 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1286 |
+
#: app/libraries/main.php:2430
|
1287 |
msgid "Checkboxes"
|
1288 |
msgstr "Caselle di selezione"
|
1289 |
|
1290 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1291 |
+
#: app/libraries/main.php:2474
|
1292 |
msgid "Radio Buttons"
|
1293 |
msgstr "Opzioni di selezione"
|
1294 |
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1364 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2518
|
1365 |
msgid "Dropdown"
|
1366 |
msgstr "Casella di selezione"
|
1367 |
|
1368 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1369 |
+
#: app/libraries/main.php:2565
|
1370 |
msgid "Agreement"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1374 |
+
#: app/libraries/main.php:2406
|
1375 |
msgid "Paragraph"
|
1376 |
msgstr "Paragrafo"
|
1377 |
|
1409 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1410 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1411 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1412 |
+
#: app/features/mec/settings.php:911 app/features/mec/single.php:398
|
1413 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1414 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1415 |
+
#: app/skins/single.php:875 app/skins/single/default.php:154
|
1416 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1417 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1418 |
msgid "Location"
|
1431 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1434 |
+
#: app/features/mec/settings.php:917 app/features/mec/single.php:394
|
1435 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1436 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1437 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4515
|
1438 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
1439 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1440 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1441 |
#: app/skins/single/modern.php:31
|
1588 |
|
1589 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1590 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1591 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
|
1592 |
+
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1593 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1594 |
#: app/skins/single/modern.php:214
|
1595 |
msgid "Labels"
|
1935 |
|
1936 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1937 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1938 |
+
#: app/features/mec/settings.php:1103 app/features/mec/single.php:480
|
1939 |
msgid "Checking ..."
|
1940 |
msgstr "Sto controllando..."
|
1941 |
|
2344 |
msgstr "Immagine in evidenza"
|
2345 |
|
2346 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2347 |
+
#: app/libraries/main.php:4756 app/skins/agenda/render.php:41
|
2348 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2349 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2350 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2379 |
|
2380 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2381 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2382 |
+
#: app/libraries/main.php:4512
|
2383 |
msgid "Locations"
|
2384 |
msgstr "Luoghi"
|
2385 |
|
2486 |
msgid "Don't show map in single event page"
|
2487 |
msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
|
2488 |
|
2489 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2490 |
#, fuzzy
|
2491 |
#| msgid "Search Locations"
|
2492 |
msgid "Other Locations"
|
2538 |
|
2539 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2540 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2541 |
+
#: app/libraries/main.php:4514
|
2542 |
msgid "Organizers"
|
2543 |
msgstr "Organizzatori"
|
2544 |
|
2659 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2660 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2661 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2662 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
|
2663 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2664 |
+
#: app/features/mec/settings.php:1134 app/features/mec/single.php:14
|
2665 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2666 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2667 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2761 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2762 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2763 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2764 |
+
#: app/skins/single.php:162
|
2765 |
#, fuzzy
|
2766 |
#| msgid "featured event"
|
2767 |
msgid "Related Events"
|
2892 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2893 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2894 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2895 |
+
#: app/libraries/notifications.php:405
|
2896 |
msgid "Booking Reminder"
|
2897 |
msgstr ""
|
2898 |
|
3072 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3073 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3074 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3075 |
+
#: app/features/mec/settings.php:1098 app/features/mec/single.php:475
|
3076 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3077 |
msgid "Saved"
|
3078 |
msgstr "Salvato"
|
3080 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3081 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3082 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3083 |
+
#: app/features/mec/settings.php:1099 app/features/mec/single.php:476
|
3084 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3085 |
msgid "Settings Saved!"
|
3086 |
msgstr ""
|
3088 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3089 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3090 |
#: app/features/mec/notifications.php:735
|
3091 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
|
3092 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
3093 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
3094 |
msgid "Verified"
|
3095 |
msgstr "Verificato"
|
3096 |
|
3097 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3098 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
|
3099 |
#: app/features/mec/single.php:502
|
3100 |
msgid "Please Refresh Page"
|
3101 |
msgstr "Si prega di ricaricare la pagina"
|
4033 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4034 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4035 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4036 |
+
#: app/features/mec/settings.php:924 app/features/mec/single.php:403
|
4037 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4038 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
4039 |
msgid "Speaker"
|
4040 |
msgstr ""
|
4041 |
|
4049 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4050 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4051 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4052 |
+
#: app/features/mec/settings.php:931 app/features/mec/single.php:412
|
4053 |
+
#: app/libraries/skins.php:911
|
4054 |
#, fuzzy
|
4055 |
#| msgid "Tags"
|
4056 |
msgid "Tag"
|
4132 |
msgstr "Mostra Google Map sulla pagina dell'evento"
|
4133 |
|
4134 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4135 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
4136 |
msgid "API Key"
|
4137 |
msgstr "API Key"
|
4138 |
|
4139 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
4140 |
+
#: app/features/mec/settings.php:980
|
4141 |
msgid "Required!"
|
4142 |
msgstr "Richiesto!"
|
4143 |
|
4742 |
msgstr ""
|
4743 |
|
4744 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4745 |
+
#: app/libraries/main.php:4521
|
4746 |
msgid "Weekdays"
|
4747 |
msgstr "Settimanali"
|
4748 |
|
5071 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: app/features/mec/settings.php:890
|
5075 |
+
msgid "Ajax Live mode"
|
5076 |
+
msgstr ""
|
5077 |
+
|
5078 |
+
#: app/features/mec/settings.php:894
|
5079 |
+
msgid "Ajax mode"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: app/features/mec/settings.php:895
|
5083 |
+
msgid ""
|
5084 |
+
"if you enable this option, search button disappeared and to use this "
|
5085 |
+
"feature, text input field must be enabled."
|
5086 |
+
msgstr ""
|
5087 |
+
|
5088 |
+
#: app/features/mec/settings.php:901
|
5089 |
+
#, fuzzy
|
5090 |
+
#| msgid "Search Form"
|
5091 |
+
msgid "Search bar fields"
|
5092 |
+
msgstr "Casella di ricerca"
|
5093 |
+
|
5094 |
+
#: app/features/mec/settings.php:943
|
5095 |
+
#, fuzzy
|
5096 |
+
#| msgid "Text Input"
|
5097 |
+
msgid "Text input"
|
5098 |
+
msgstr "Inserisci testo"
|
5099 |
+
|
5100 |
+
#: app/features/mec/settings.php:956
|
5101 |
msgid "Enable Mailchimp Integration"
|
5102 |
msgstr "Abilita integrazione con Mailchimp"
|
5103 |
|
5104 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
5105 |
msgid "List ID"
|
5106 |
msgstr "Lista ID"
|
5107 |
|
5108 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
5109 |
msgid "Subscription Status"
|
5110 |
msgstr "Stato iscrizione"
|
5111 |
|
5112 |
+
#: app/features/mec/settings.php:990
|
5113 |
msgid "Subscribe automatically"
|
5114 |
msgstr "Iscriviti automaticamente"
|
5115 |
|
5116 |
+
#: app/features/mec/settings.php:991
|
5117 |
msgid "Subscribe by verification"
|
5118 |
msgstr "Iscriviti con verifica"
|
5119 |
|
5120 |
+
#: app/features/mec/settings.php:996
|
5121 |
msgid ""
|
5122 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5123 |
"by mailchimp for subscription verification."
|
5125 |
"Se hai selezionato \"Iscriviti con verifica\" allora una email verrà "
|
5126 |
"spediita all'utente da Mailchimp per verificare l'iscrizione."
|
5127 |
|
5128 |
+
#: app/features/mec/settings.php:1008
|
5129 |
#, fuzzy
|
5130 |
#| msgid "Filter Options"
|
5131 |
msgid "Upload Field Options"
|
5132 |
msgstr "Opzioni filtro"
|
5133 |
|
5134 |
+
#: app/features/mec/settings.php:1010
|
5135 |
msgid "Mime types"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
+
#: app/features/mec/settings.php:1014
|
5139 |
msgid "Split mime types with \",\"."
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
#: app/features/mec/settings.php:1014
|
5143 |
msgid "Default: jpeg,jpg,png,pdf"
|
5144 |
msgstr ""
|
5145 |
|
5146 |
+
#: app/features/mec/settings.php:1017
|
5147 |
#, fuzzy
|
5148 |
#| msgid "Maximum events"
|
5149 |
msgid "Maximum file size"
|
5150 |
msgstr "Massimo numero di eventi"
|
5151 |
|
5152 |
+
#: app/features/mec/settings.php:1021
|
5153 |
msgid "The unit is Megabyte \"MB\""
|
5154 |
msgstr ""
|
5155 |
|
5866 |
msgid "eg. https://webnus.net"
|
5867 |
msgstr "http://webnus.biz"
|
5868 |
|
5869 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5870 |
+
#: app/skins/single.php:813
|
5871 |
msgid "Other Organizers"
|
5872 |
msgstr ""
|
5873 |
|
5886 |
msgid "#"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5890 |
msgid "Status"
|
5891 |
msgstr ""
|
5892 |
|
5904 |
msgstr ""
|
5905 |
|
5906 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5907 |
+
#: app/libraries/main.php:4543
|
5908 |
msgid "Ticket"
|
5909 |
msgstr "Ticket"
|
5910 |
|
5918 |
msgid "No bookings found!"
|
5919 |
msgstr "Nessuna prenotazione trovata!"
|
5920 |
|
5921 |
+
#: app/features/search.php:90
|
5922 |
+
msgid "Please enter at least 3 characters and try again"
|
5923 |
+
msgstr ""
|
5924 |
+
|
5925 |
+
#: app/features/search_bar/search_bar.php:26
|
5926 |
+
msgid "Please enter at least 3 characters"
|
5927 |
+
msgstr ""
|
5928 |
+
|
5929 |
#: app/features/search_bar/search_bar.php:28
|
5930 |
+
msgid "Search results will show here"
|
5931 |
+
msgstr ""
|
5932 |
+
|
5933 |
+
#: app/features/search_bar/search_bar.php:39
|
5934 |
#, fuzzy
|
5935 |
#| msgid "Search Form"
|
5936 |
msgid "Search"
|
5937 |
msgstr "Casella di ricerca"
|
5938 |
|
5939 |
+
#: app/features/search_bar/search_noresult.php:1
|
5940 |
+
msgid "No search result."
|
5941 |
+
msgstr ""
|
5942 |
+
|
5943 |
+
#: app/features/search_bar/search_result.php:11
|
5944 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5945 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5946 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5947 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5948 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5949 |
+
msgid "All of the day"
|
5950 |
+
msgstr "Tutti del giorno"
|
5951 |
+
|
5952 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5953 |
#: app/features/speakers.php:248
|
5954 |
#, fuzzy
|
6015 |
msgid "%s Price"
|
6016 |
msgstr ""
|
6017 |
|
6018 |
+
#: app/libraries/book.php:539
|
6019 |
msgid "Discount"
|
6020 |
msgstr "Sconto"
|
6021 |
|
6022 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
6023 |
#: app/modules/booking/default.php:401
|
6024 |
msgid "Download Invoice"
|
6025 |
msgstr ""
|
6043 |
msgid "Upgrade"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
+
#: app/libraries/factory.php:333
|
6047 |
msgid "day"
|
6048 |
msgstr "giorno"
|
6049 |
|
6050 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
6051 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6052 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6053 |
msgid "days"
|
6054 |
msgstr "giorni"
|
6055 |
|
6056 |
+
#: app/libraries/factory.php:335
|
6057 |
msgid "hour"
|
6058 |
msgstr "ora"
|
6059 |
|
6060 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
6061 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6062 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6063 |
msgid "hours"
|
6064 |
msgstr "ore"
|
6065 |
|
6066 |
+
#: app/libraries/factory.php:337
|
6067 |
msgid "minute"
|
6068 |
msgstr "minuto"
|
6069 |
|
6070 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
6071 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6072 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6073 |
msgid "minutes"
|
6074 |
msgstr "minuti"
|
6075 |
|
6076 |
+
#: app/libraries/factory.php:339
|
6077 |
msgid "second"
|
6078 |
msgstr "secondo"
|
6079 |
|
6080 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
6081 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6082 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6083 |
msgid "seconds"
|
6084 |
msgstr "secondi"
|
6085 |
|
6086 |
+
#: app/libraries/factory.php:383
|
6087 |
msgid "MEC Single Sidebar"
|
6088 |
msgstr ""
|
6089 |
|
6090 |
+
#: app/libraries/factory.php:384
|
6091 |
msgid "Custom sidebar for single and modal page of MEC."
|
6092 |
msgstr ""
|
6093 |
|
6150 |
msgid "Slider View"
|
6151 |
msgstr "Visualizza slider"
|
6152 |
|
6153 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
6154 |
msgid "SU"
|
6155 |
msgstr "D"
|
6156 |
|
6157 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
6158 |
msgid "MO"
|
6159 |
msgstr "L"
|
6160 |
|
6161 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
6162 |
msgid "TU"
|
6163 |
msgstr "M"
|
6164 |
|
6165 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
6166 |
msgid "WE"
|
6167 |
msgstr "M"
|
6168 |
|
6169 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
6170 |
msgid "TH"
|
6171 |
msgstr "G"
|
6172 |
|
6173 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
6174 |
msgid "FR"
|
6175 |
msgstr "V"
|
6176 |
|
6177 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
6178 |
msgid "SA"
|
6179 |
msgstr "S"
|
6180 |
|
6326 |
msgid "Request is not valid."
|
6327 |
msgstr "Richiesta non valida!"
|
6328 |
|
6329 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
6330 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
6331 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
6332 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
6333 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
6334 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
6335 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
6336 |
msgid "Sort"
|
6337 |
msgstr "Ordina"
|
6338 |
|
6339 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
6340 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
6341 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
6342 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
6343 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
6344 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
6345 |
msgid "Required Field"
|
6346 |
msgstr "Campo obbligatorio"
|
6347 |
|
6348 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
6349 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
6350 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
6351 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
6352 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
6353 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
6354 |
msgid "Insert a label for this field"
|
6355 |
msgstr "Inserisci una etichetta per questo campo"
|
6356 |
|
6357 |
+
#: app/libraries/main.php:2411
|
6358 |
msgid "HTML and shortcode are allowed."
|
6359 |
msgstr "HTML e shortcode sono ammessi."
|
6360 |
|
6361 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
6362 |
+
#: app/libraries/main.php:2542
|
6363 |
msgid "Option"
|
6364 |
msgstr "Opzione"
|
6365 |
|
6366 |
+
#: app/libraries/main.php:2576
|
6367 |
#, php-format
|
6368 |
msgid "Instead of %s, the page title with a link will be show."
|
6369 |
msgstr ""
|
6370 |
|
6371 |
+
#: app/libraries/main.php:2578
|
6372 |
msgid "Agreement Page"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
+
#: app/libraries/main.php:2589
|
6376 |
msgid "Checked by default"
|
6377 |
msgstr ""
|
6378 |
|
6379 |
+
#: app/libraries/main.php:2590
|
6380 |
msgid "Unchecked by default"
|
6381 |
msgstr ""
|
6382 |
|
6383 |
+
#: app/libraries/main.php:2613
|
6384 |
msgid "Insert a label for this option"
|
6385 |
msgstr "Inserisci una etichetta per questa opzione"
|
6386 |
|
6387 |
+
#: app/libraries/main.php:2628
|
6388 |
msgid "Free"
|
6389 |
msgstr "Gratuito"
|
6390 |
|
6391 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6392 |
#, fuzzy
|
6393 |
#| msgid "M.E. Calendar"
|
6394 |
msgid "M.E. Calender"
|
6395 |
msgstr "Calendario"
|
6396 |
|
6397 |
+
#: app/libraries/main.php:3349
|
6398 |
#, php-format
|
6399 |
msgid "Copy of %s"
|
6400 |
msgstr "Copia di %s"
|
6401 |
|
6402 |
+
#: app/libraries/main.php:4022
|
6403 |
msgid "Booked an event."
|
6404 |
msgstr "Prenotato un evento."
|
6405 |
|
6406 |
+
#: app/libraries/main.php:4063
|
6407 |
#, php-format
|
6408 |
msgid "%s booked %s event."
|
6409 |
msgstr "%s ha prenotato l'evento %s."
|
6410 |
|
6411 |
+
#: app/libraries/main.php:4506
|
6412 |
msgid "Taxonomies"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
+
#: app/libraries/main.php:4508
|
6416 |
msgid "Category Plural Label"
|
6417 |
msgstr ""
|
6418 |
|
6419 |
+
#: app/libraries/main.php:4509
|
6420 |
msgid "Category Singular Label"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
+
#: app/libraries/main.php:4510
|
6424 |
msgid "Label Plural Label"
|
6425 |
msgstr ""
|
6426 |
|
6427 |
+
#: app/libraries/main.php:4511
|
6428 |
msgid "Label Singular Label"
|
6429 |
msgstr ""
|
6430 |
|
6431 |
+
#: app/libraries/main.php:4511
|
6432 |
msgid "label"
|
6433 |
msgstr ""
|
6434 |
|
6435 |
+
#: app/libraries/main.php:4512
|
6436 |
msgid "Location Plural Label"
|
6437 |
msgstr ""
|
6438 |
|
6439 |
+
#: app/libraries/main.php:4513
|
6440 |
msgid "Location Singular Label"
|
6441 |
msgstr ""
|
6442 |
|
6443 |
+
#: app/libraries/main.php:4514
|
6444 |
msgid "Organizer Plural Label"
|
6445 |
msgstr ""
|
6446 |
|
6447 |
+
#: app/libraries/main.php:4515
|
6448 |
msgid "Organizer Singular Label"
|
6449 |
msgstr ""
|
6450 |
|
6451 |
+
#: app/libraries/main.php:4516
|
6452 |
#, fuzzy
|
6453 |
#| msgid "Search Labels"
|
6454 |
msgid "Speaker Plural Label"
|
6455 |
msgstr "Cerca etichette"
|
6456 |
|
6457 |
+
#: app/libraries/main.php:4517
|
6458 |
#, fuzzy
|
6459 |
#| msgid "Popular Labels"
|
6460 |
msgid "Speaker Singular Label"
|
6461 |
msgstr "Etichette frequenti"
|
6462 |
|
6463 |
+
#: app/libraries/main.php:4523
|
6464 |
msgid "Sunday abbreviation"
|
6465 |
msgstr ""
|
6466 |
|
6467 |
+
#: app/libraries/main.php:4524
|
6468 |
msgid "Monday abbreviation"
|
6469 |
msgstr ""
|
6470 |
|
6471 |
+
#: app/libraries/main.php:4525
|
6472 |
msgid "Tuesday abbreviation"
|
6473 |
msgstr ""
|
6474 |
|
6475 |
+
#: app/libraries/main.php:4526
|
6476 |
msgid "Wednesday abbreviation"
|
6477 |
msgstr ""
|
6478 |
|
6479 |
+
#: app/libraries/main.php:4527
|
6480 |
msgid "Thursday abbreviation"
|
6481 |
msgstr ""
|
6482 |
|
6483 |
+
#: app/libraries/main.php:4528
|
6484 |
msgid "Friday abbreviation"
|
6485 |
msgstr ""
|
6486 |
|
6487 |
+
#: app/libraries/main.php:4529
|
6488 |
msgid "Saturday abbreviation"
|
6489 |
msgstr ""
|
6490 |
|
6491 |
+
#: app/libraries/main.php:4533
|
6492 |
msgid "Others"
|
6493 |
msgstr ""
|
6494 |
|
6495 |
+
#: app/libraries/main.php:4535
|
6496 |
msgid "Booking Success Message"
|
6497 |
msgstr ""
|
6498 |
|
6499 |
+
#: app/libraries/main.php:4535
|
6500 |
msgid ""
|
6501 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6502 |
"needed, please check your email."
|
6505 |
"essere necessario la verifica della prenotazione, si prega di controllare la "
|
6506 |
"posta elettronica."
|
6507 |
|
6508 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6509 |
msgid "Register Button"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6513 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6514 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6515 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6516 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6517 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6518 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6519 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6520 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6521 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6526 |
msgid "REGISTER"
|
6527 |
msgstr "REGISTRA"
|
6528 |
|
6529 |
+
#: app/libraries/main.php:4537
|
6530 |
msgid "View Detail Button"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6534 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6535 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6536 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6541 |
msgid "View Detail"
|
6542 |
msgstr "Visualizza dettaglio"
|
6543 |
|
6544 |
+
#: app/libraries/main.php:4538
|
6545 |
msgid "Event Detail Button"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6549 |
msgid "Event Detail"
|
6550 |
msgstr "Dettaglio evento"
|
6551 |
|
6552 |
+
#: app/libraries/main.php:4540
|
6553 |
msgid "More Info Link"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
+
#: app/libraries/main.php:4543
|
6557 |
msgid "Ticket (Singular)"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
+
#: app/libraries/main.php:4544
|
6561 |
msgid "Tickets (Plural)"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
+
#: app/libraries/main.php:4630
|
6565 |
msgid "EventON"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
+
#: app/libraries/main.php:4631
|
6569 |
msgid "The Events Calendar"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
+
#: app/libraries/main.php:4632
|
6573 |
msgid "Events Schedule WP Plugin"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
+
#: app/libraries/main.php:4633
|
6577 |
msgid "Calendarize It"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6581 |
msgid "Confirmed"
|
6582 |
msgstr "Confermato"
|
6583 |
|
6584 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6585 |
msgid "Rejected"
|
6586 |
msgstr "Rifiutato"
|
6587 |
|
6588 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6589 |
msgid "Pending"
|
6590 |
msgstr "In attesa"
|
6591 |
|
6592 |
+
#: app/libraries/main.php:4757
|
6593 |
msgid "Waiting"
|
6594 |
msgstr "In attesa"
|
6595 |
|
6596 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6597 |
msgid "Skin controller does not exist."
|
6598 |
msgstr "Non esiste il controllo dello stile."
|
6599 |
|
6601 |
msgid "Please verify your email."
|
6602 |
msgstr "Si prega di verificare la propria email."
|
6603 |
|
6604 |
+
#: app/libraries/notifications.php:125
|
6605 |
msgid "Your booking is received."
|
6606 |
msgstr ""
|
6607 |
|
6608 |
+
#: app/libraries/notifications.php:193
|
6609 |
msgid "Your booking is confirmed."
|
6610 |
msgstr "La tua prenotazione è confermata."
|
6611 |
|
6612 |
+
#: app/libraries/notifications.php:282
|
6613 |
#, fuzzy
|
6614 |
#| msgid "Your booking cannot be canceled."
|
6615 |
msgid "booking canceled."
|
6616 |
msgstr "La tua prenotazione non può essere cancellata."
|
6617 |
|
6618 |
+
#: app/libraries/notifications.php:337
|
6619 |
msgid "A new booking is received."
|
6620 |
msgstr "Una nuova prenotazione è stata ricevuta."
|
6621 |
|
6622 |
+
#: app/libraries/notifications.php:488
|
6623 |
msgid "A new event is added."
|
6624 |
msgstr "Un nuovo evento è stato aggiunto."
|
6625 |
|
6626 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6627 |
msgid "to"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6631 |
msgid "+ Add to Google Calendar"
|
6632 |
msgstr "+ Aggiungi a Google Calendar"
|
6633 |
|
6634 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6635 |
msgid "+ iCal export"
|
6636 |
msgstr "+ Esporta iCal"
|
6637 |
|
6638 |
+
#: app/libraries/notifications.php:752
|
6639 |
msgid "Yes"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: app/libraries/notifications.php:752
|
6643 |
msgid "No"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: app/libraries/skins.php:958
|
6647 |
msgid "Ignore month and years"
|
6648 |
msgstr "Ignora mesi e anni"
|
6649 |
|
6720 |
msgid "Get Directions"
|
6721 |
msgstr ""
|
6722 |
|
6723 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6724 |
msgid "Share this event"
|
6725 |
msgstr "Condividi questo evento"
|
6726 |
|
6747 |
msgid "Go to occurrence page"
|
6748 |
msgstr "Vai alla pagina necessaria"
|
6749 |
|
6750 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6751 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6752 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6753 |
msgid "Time"
|
6855 |
msgid "List"
|
6856 |
msgstr "Lista"
|
6857 |
|
6858 |
+
#: app/skins/masonry.php:238
|
6859 |
msgid "All"
|
6860 |
msgstr ""
|
6861 |
|
6873 |
msgid "No Events"
|
6874 |
msgstr "Nessun evento"
|
6875 |
|
6876 |
+
#: app/skins/single.php:204
|
6877 |
msgid "Home"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6881 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6882 |
#: app/skins/single/modern.php:256
|
6883 |
msgid "Sold out!"
|
6884 |
msgstr ""
|
6885 |
|
6886 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6887 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6888 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6889 |
#: app/skins/single/modern.php:41
|
6890 |
msgid "Phone"
|
6891 |
msgstr "Telefono"
|
6892 |
|
6893 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6894 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6895 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6896 |
#: app/skins/single/modern.php:55
|
6897 |
msgid "Website"
|
6898 |
msgstr "Sito web"
|
6899 |
|
6900 |
+
#: app/skins/single.php:912
|
6901 |
#, fuzzy
|
6902 |
#| msgid "No Search Options"
|
6903 |
msgid "Speakers:"
|
languages/modern-events-calendar-lite-nb_NO.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-nb_NO.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-08-
|
5 |
-
"PO-Revision-Date: 2019-08-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb_NO\n"
|
@@ -354,7 +354,7 @@ msgstr "BuddyPress Integrasjon"
|
|
354 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
355 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
356 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
357 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
358 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
359 |
#: app/features/mec/styling.php:59
|
360 |
msgid "Mailchimp Integration"
|
@@ -420,9 +420,9 @@ msgstr "Ingen arrangement funnet i søppelbøtta!"
|
|
420 |
#: app/features/mec/meta_boxes/search_form.php:453
|
421 |
#: app/features/mec/meta_boxes/search_form.php:514
|
422 |
#: app/features/mec/meta_boxes/search_form.php:575
|
423 |
-
#: app/features/mec/settings.php:
|
424 |
-
#: app/libraries/main.php:
|
425 |
-
#: app/skins/single.php:
|
426 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
427 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
428 |
msgid "Category"
|
@@ -430,7 +430,7 @@ msgstr "Kategori"
|
|
430 |
|
431 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
432 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
433 |
-
#: app/libraries/main.php:
|
434 |
msgid "Categories"
|
435 |
msgstr "Kategorier"
|
436 |
|
@@ -505,13 +505,13 @@ msgstr "Arrangementsdetaljer"
|
|
505 |
#: app/features/events.php:322 app/features/events.php:3168
|
506 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
507 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
508 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
509 |
#: app/widgets/single.php:103
|
510 |
msgid "Event Cost"
|
511 |
msgstr "Kostnad for arrangementet"
|
512 |
|
513 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
514 |
-
#: app/libraries/main.php:
|
515 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
516 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
517 |
msgid "Cost"
|
@@ -528,7 +528,7 @@ msgstr "Gjestedata"
|
|
528 |
#: app/features/events.php:432 app/features/events.php:2250
|
529 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
530 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
531 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
532 |
#: app/modules/booking/steps/form.php:37
|
533 |
msgid "Name"
|
534 |
msgstr "Navn"
|
@@ -539,10 +539,10 @@ msgstr "Navn"
|
|
539 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
540 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
541 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
542 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
543 |
-
#: app/libraries/notifications.php:
|
544 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
545 |
-
#: app/skins/single.php:
|
546 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
547 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
548 |
msgid "Email"
|
@@ -688,14 +688,14 @@ msgstr ""
|
|
688 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
689 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
690 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
691 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
692 |
-
#: app/features/mec/settings.php:
|
693 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
694 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
695 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
696 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
697 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
698 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
699 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
700 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
701 |
#: app/skins/single/modern.php:133
|
@@ -905,9 +905,9 @@ msgstr "Ekskluder bestemte dager"
|
|
905 |
|
906 |
#: app/features/events.php:1130 app/features/events.php:2340
|
907 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
908 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
909 |
#: app/modules/booking/steps/tickets.php:22
|
910 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
911 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
912 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
913 |
msgid "Date"
|
@@ -925,7 +925,7 @@ msgid "Day 1"
|
|
925 |
msgstr "Dag 1"
|
926 |
|
927 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
928 |
-
#: app/skins/single.php:
|
929 |
msgid "Hourly Schedule"
|
930 |
msgstr "Timeplan"
|
931 |
|
@@ -966,14 +966,14 @@ msgstr "Tittel"
|
|
966 |
#: app/features/events.php:2154 app/features/events.php:2196
|
967 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
968 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
969 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
970 |
-
#: app/libraries/main.php:
|
971 |
-
#: app/libraries/main.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 |
msgid "Remove"
|
978 |
msgstr "Fjern"
|
979 |
|
@@ -1006,7 +1006,7 @@ msgstr "Beskrivelse"
|
|
1006 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
1007 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
1008 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
1009 |
-
#: app/features/speakers.php:60 app/libraries/main.php:
|
1010 |
#: app/modules/speakers/details.php:18
|
1011 |
msgid "Speakers"
|
1012 |
msgstr "Foredragsholdere"
|
@@ -1023,7 +1023,7 @@ msgid "Event Links"
|
|
1023 |
msgstr "Arrangemenslenker"
|
1024 |
|
1025 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1026 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1027 |
msgid "Event Link"
|
1028 |
msgstr "Arrangemenslenke"
|
1029 |
|
@@ -1050,8 +1050,8 @@ msgid "URL Shortener"
|
|
1050 |
msgstr ""
|
1051 |
|
1052 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1053 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1054 |
-
#: app/skins/single.php:
|
1055 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1056 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1057 |
#: app/widgets/single.php:107
|
@@ -1116,7 +1116,7 @@ msgid "12"
|
|
1116 |
msgstr ""
|
1117 |
|
1118 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1119 |
-
#: app/libraries/main.php:
|
1120 |
msgid "Tickets"
|
1121 |
msgstr "Billetter"
|
1122 |
|
@@ -1192,8 +1192,8 @@ msgstr "Pris pr. dato"
|
|
1192 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1193 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1194 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1195 |
-
#: app/features/mec/settings.php:
|
1196 |
-
#: app/libraries/skins.php:
|
1197 |
msgid "Label"
|
1198 |
msgstr "Etikett"
|
1199 |
|
@@ -1264,48 +1264,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1264 |
msgstr "Maks per billett. La det stå tomt for ubegrenset."
|
1265 |
|
1266 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1267 |
-
#: app/libraries/main.php:
|
1268 |
#, fuzzy
|
1269 |
#| msgid "Name"
|
1270 |
msgid "MEC Name"
|
1271 |
msgstr "Navn"
|
1272 |
|
1273 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1274 |
-
#: app/libraries/main.php:
|
1275 |
#, fuzzy
|
1276 |
#| msgid "Email"
|
1277 |
msgid "MEC Email"
|
1278 |
msgstr "E-post"
|
1279 |
|
1280 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1281 |
-
#: app/libraries/main.php:
|
1282 |
msgid "Text"
|
1283 |
msgstr "Tekst"
|
1284 |
|
1285 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1286 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1287 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1288 |
-
#: app/features/speakers.php:249 app/libraries/main.php:
|
1289 |
msgid "Tel"
|
1290 |
msgstr "Tlf"
|
1291 |
|
1292 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1293 |
-
#: app/libraries/main.php:
|
1294 |
msgid "File"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1298 |
-
#: app/libraries/main.php:
|
1299 |
msgid "Textarea"
|
1300 |
msgstr "Tekstområde"
|
1301 |
|
1302 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1303 |
-
#: app/libraries/main.php:
|
1304 |
msgid "Checkboxes"
|
1305 |
msgstr "Avmerkingsbokser"
|
1306 |
|
1307 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1308 |
-
#: app/libraries/main.php:
|
1309 |
msgid "Radio Buttons"
|
1310 |
msgstr "Radioknapper"
|
1311 |
|
@@ -1378,17 +1378,17 @@ msgstr "Radioknapper"
|
|
1378 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1379 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1380 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1381 |
-
#: app/features/mec/regform.php:277 app/libraries/main.php:
|
1382 |
msgid "Dropdown"
|
1383 |
msgstr "Nedtrekksmeny"
|
1384 |
|
1385 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1386 |
-
#: app/libraries/main.php:
|
1387 |
msgid "Agreement"
|
1388 |
msgstr "Avtalen"
|
1389 |
|
1390 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1391 |
-
#: app/libraries/main.php:
|
1392 |
msgid "Paragraph"
|
1393 |
msgstr "Avsnitt"
|
1394 |
|
@@ -1426,10 +1426,10 @@ msgstr "arrangører"
|
|
1426 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1427 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1428 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1429 |
-
#: app/features/mec/settings.php:
|
1430 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1431 |
-
#: app/libraries/skins.php:
|
1432 |
-
#: app/skins/single.php:
|
1433 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1434 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1435 |
msgid "Location"
|
@@ -1448,11 +1448,11 @@ msgstr "Sted"
|
|
1448 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1449 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1450 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1451 |
-
#: app/features/mec/settings.php:
|
1452 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1453 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1454 |
-
#: app/features/organizers.php:271 app/libraries/main.php:
|
1455 |
-
#: app/libraries/skins.php:
|
1456 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1457 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1458 |
#: app/skins/single/modern.php:31
|
@@ -1605,8 +1605,8 @@ msgstr "Fjern bilde"
|
|
1605 |
|
1606 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1607 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1608 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1609 |
-
#: app/skins/single.php:
|
1610 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1611 |
#: app/skins/single/modern.php:214
|
1612 |
msgid "Labels"
|
@@ -1937,7 +1937,7 @@ msgstr "Legg til i Google Kalender"
|
|
1937 |
|
1938 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1939 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1940 |
-
#: app/features/mec/settings.php:
|
1941 |
msgid "Checking ..."
|
1942 |
msgstr "Sjekker ..."
|
1943 |
|
@@ -2330,7 +2330,7 @@ msgid "Featured"
|
|
2330 |
msgstr "Fremhevet"
|
2331 |
|
2332 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2333 |
-
#: app/libraries/main.php:
|
2334 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2335 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2336 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
@@ -2365,7 +2365,7 @@ msgstr "Arrangement %s"
|
|
2365 |
|
2366 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2367 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2368 |
-
#: app/libraries/main.php:
|
2369 |
msgid "Locations"
|
2370 |
msgstr "Steder"
|
2371 |
|
@@ -2472,7 +2472,7 @@ msgstr "Velg bilde"
|
|
2472 |
msgid "Don't show map in single event page"
|
2473 |
msgstr "Ikke vis kart i enkelt arrangement visning"
|
2474 |
|
2475 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2476 |
#, fuzzy
|
2477 |
#| msgid "Locations"
|
2478 |
msgid "Other Locations"
|
@@ -2526,7 +2526,7 @@ msgstr "Support"
|
|
2526 |
|
2527 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2528 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2529 |
-
#: app/libraries/main.php:
|
2530 |
msgid "Organizers"
|
2531 |
msgstr "Arrangører"
|
2532 |
|
@@ -2647,9 +2647,9 @@ msgstr ""
|
|
2647 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2648 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2649 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2650 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2651 |
-
#: app/features/mec/settings.php:
|
2652 |
-
#: app/features/mec/settings.php:
|
2653 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2654 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2655 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
@@ -2748,7 +2748,7 @@ msgstr "Tilleggsarrangører"
|
|
2748 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2749 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2750 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2751 |
-
#: app/skins/single.php:
|
2752 |
#, fuzzy
|
2753 |
#| msgid "featured event"
|
2754 |
msgid "Related Events"
|
@@ -2879,7 +2879,7 @@ msgstr ""
|
|
2879 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2880 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2881 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2882 |
-
#: app/libraries/notifications.php:
|
2883 |
msgid "Booking Reminder"
|
2884 |
msgstr "Påminnelse angående din bestilling"
|
2885 |
|
@@ -3059,7 +3059,7 @@ msgstr "Legg til variasjon/alternativ"
|
|
3059 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3060 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3061 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3062 |
-
#: app/features/mec/settings.php:
|
3063 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3064 |
msgid "Saved"
|
3065 |
msgstr "Lagret"
|
@@ -3067,7 +3067,7 @@ msgstr "Lagret"
|
|
3067 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3068 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3069 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3070 |
-
#: app/features/mec/settings.php:
|
3071 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3072 |
msgid "Settings Saved!"
|
3073 |
msgstr "Innstillinger Lagret!"
|
@@ -3075,14 +3075,14 @@ msgstr "Innstillinger Lagret!"
|
|
3075 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3076 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3077 |
#: app/features/mec/notifications.php:735
|
3078 |
-
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:
|
3079 |
-
#: app/features/mec/settings.php:
|
3080 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
3081 |
msgid "Verified"
|
3082 |
msgstr "Verifisert"
|
3083 |
|
3084 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3085 |
-
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:
|
3086 |
#: app/features/mec/single.php:502
|
3087 |
msgid "Please Refresh Page"
|
3088 |
msgstr "Vennligst Oppdater Side"
|
@@ -4018,9 +4018,9 @@ msgstr "Deaktivert"
|
|
4018 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4019 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4020 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4021 |
-
#: app/features/mec/settings.php:
|
4022 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4023 |
-
#: app/libraries/main.php:
|
4024 |
msgid "Speaker"
|
4025 |
msgstr "Foredragsholder"
|
4026 |
|
@@ -4034,8 +4034,8 @@ msgstr "Foredragsholder"
|
|
4034 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4035 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4036 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4037 |
-
#: app/features/mec/settings.php:
|
4038 |
-
#: app/libraries/skins.php:
|
4039 |
#, fuzzy
|
4040 |
#| msgid "Tags"
|
4041 |
msgid "Tag"
|
@@ -4113,12 +4113,12 @@ msgid "Show Google Maps on event page"
|
|
4113 |
msgstr "Vis Google Maps på arrangementside"
|
4114 |
|
4115 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4116 |
-
#: app/features/mec/settings.php:
|
4117 |
msgid "API Key"
|
4118 |
msgstr "API-nøkkel"
|
4119 |
|
4120 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
4121 |
-
#: app/features/mec/settings.php:
|
4122 |
msgid "Required!"
|
4123 |
msgstr "Påkrevet!"
|
4124 |
|
@@ -4727,7 +4727,7 @@ msgid ""
|
|
4727 |
msgstr ""
|
4728 |
|
4729 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4730 |
-
#: app/libraries/main.php:
|
4731 |
msgid "Weekdays"
|
4732 |
msgstr "Ukedager"
|
4733 |
|
@@ -5052,31 +5052,53 @@ msgstr ""
|
|
5052 |
"Putte %s kortkode inn i din side. Da vil brukerne være i stand til å se "
|
5053 |
"historien om sine bestillinger."
|
5054 |
|
5055 |
-
#: app/features/mec/settings.php:
|
5056 |
-
msgid "
|
|
|
|
|
|
|
|
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5060 |
msgid "Enable Mailchimp Integration"
|
5061 |
msgstr "Aktiver Mailchimp Integrasjon"
|
5062 |
|
5063 |
-
#: app/features/mec/settings.php:
|
5064 |
msgid "List ID"
|
5065 |
msgstr "Liste-ID"
|
5066 |
|
5067 |
-
#: app/features/mec/settings.php:
|
5068 |
msgid "Subscription Status"
|
5069 |
msgstr "Abonnement Status"
|
5070 |
|
5071 |
-
#: app/features/mec/settings.php:
|
5072 |
msgid "Subscribe automatically"
|
5073 |
msgstr "Abonner automatisk"
|
5074 |
|
5075 |
-
#: app/features/mec/settings.php:
|
5076 |
msgid "Subscribe by verification"
|
5077 |
msgstr "Abonner etter verifikasjon"
|
5078 |
|
5079 |
-
#: app/features/mec/settings.php:
|
5080 |
msgid ""
|
5081 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5082 |
"by mailchimp for subscription verification."
|
@@ -5084,31 +5106,31 @@ msgstr ""
|
|
5084 |
"Velger du \"Abonner med verifikasjon\" blir en epost sendt til bruker av "
|
5085 |
"mailchimp for bekreftelse."
|
5086 |
|
5087 |
-
#: app/features/mec/settings.php:
|
5088 |
#, fuzzy
|
5089 |
#| msgid "Filter Options"
|
5090 |
msgid "Upload Field Options"
|
5091 |
msgstr "Alternativer for filter"
|
5092 |
|
5093 |
-
#: app/features/mec/settings.php:
|
5094 |
msgid "Mime types"
|
5095 |
msgstr ""
|
5096 |
|
5097 |
-
#: app/features/mec/settings.php:
|
5098 |
msgid "Split mime types with \",\"."
|
5099 |
msgstr ""
|
5100 |
|
5101 |
-
#: app/features/mec/settings.php:
|
5102 |
msgid "Default: jpeg,jpg,png,pdf"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: app/features/mec/settings.php:
|
5106 |
#, fuzzy
|
5107 |
#| msgid "Maximum Per Ticket"
|
5108 |
msgid "Maximum file size"
|
5109 |
msgstr "Maks Per billett"
|
5110 |
|
5111 |
-
#: app/features/mec/settings.php:
|
5112 |
msgid "The unit is Megabyte \"MB\""
|
5113 |
msgstr ""
|
5114 |
|
@@ -5795,8 +5817,8 @@ msgstr "f.eks. Ola Nordmann"
|
|
5795 |
msgid "eg. https://webnus.net"
|
5796 |
msgstr "F.eks. https://webnus.net"
|
5797 |
|
5798 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5799 |
-
#: app/skins/single.php:
|
5800 |
msgid "Other Organizers"
|
5801 |
msgstr "Andre Arrangører"
|
5802 |
|
@@ -5815,7 +5837,7 @@ msgstr "Vennligst %s/%s for å se dine bestillinger/profil."
|
|
5815 |
msgid "#"
|
5816 |
msgstr "#"
|
5817 |
|
5818 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5819 |
msgid "Status"
|
5820 |
msgstr "Status"
|
5821 |
|
@@ -5833,7 +5855,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5833 |
msgstr "<i class=\"mec-sl-eye\"></i> %s"
|
5834 |
|
5835 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5836 |
-
#: app/libraries/main.php:
|
5837 |
msgid "Ticket"
|
5838 |
msgstr "Billett"
|
5839 |
|
@@ -5845,12 +5867,37 @@ msgstr "Variasjoner"
|
|
5845 |
msgid "No bookings found!"
|
5846 |
msgstr "Ingen bestillinger funnet!"
|
5847 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5848 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5849 |
#, fuzzy
|
5850 |
#| msgid "Search %s"
|
5851 |
msgid "Search"
|
5852 |
msgstr "Søk i %s"
|
5853 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5854 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5855 |
#: app/features/speakers.php:248
|
5856 |
msgid "Job Title"
|
@@ -5903,11 +5950,11 @@ msgstr ""
|
|
5903 |
msgid "%s Price"
|
5904 |
msgstr "%s pris"
|
5905 |
|
5906 |
-
#: app/libraries/book.php:
|
5907 |
msgid "Discount"
|
5908 |
msgstr "Rabatt"
|
5909 |
|
5910 |
-
#: app/libraries/book.php:
|
5911 |
#: app/modules/booking/default.php:401
|
5912 |
msgid "Download Invoice"
|
5913 |
msgstr "Last ned Faktura"
|
@@ -5931,51 +5978,51 @@ msgctxt "plugin link"
|
|
5931 |
msgid "Upgrade"
|
5932 |
msgstr "Oppgrader"
|
5933 |
|
5934 |
-
#: app/libraries/factory.php:
|
5935 |
msgid "day"
|
5936 |
msgstr "dag"
|
5937 |
|
5938 |
-
#: app/libraries/factory.php:
|
5939 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5940 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5941 |
msgid "days"
|
5942 |
msgstr "dager"
|
5943 |
|
5944 |
-
#: app/libraries/factory.php:
|
5945 |
msgid "hour"
|
5946 |
msgstr "time"
|
5947 |
|
5948 |
-
#: app/libraries/factory.php:
|
5949 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5950 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5951 |
msgid "hours"
|
5952 |
msgstr "timer"
|
5953 |
|
5954 |
-
#: app/libraries/factory.php:
|
5955 |
msgid "minute"
|
5956 |
msgstr "minutt"
|
5957 |
|
5958 |
-
#: app/libraries/factory.php:
|
5959 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5960 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5961 |
msgid "minutes"
|
5962 |
msgstr "minutter"
|
5963 |
|
5964 |
-
#: app/libraries/factory.php:
|
5965 |
msgid "second"
|
5966 |
msgstr "sekund"
|
5967 |
|
5968 |
-
#: app/libraries/factory.php:
|
5969 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
5970 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
5971 |
msgid "seconds"
|
5972 |
msgstr "sekunder"
|
5973 |
|
5974 |
-
#: app/libraries/factory.php:
|
5975 |
msgid "MEC Single Sidebar"
|
5976 |
msgstr "MEC Singel Sidebar"
|
5977 |
|
5978 |
-
#: app/libraries/factory.php:
|
5979 |
msgid "Custom sidebar for single and modal page of MEC."
|
5980 |
msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
|
5981 |
|
@@ -6038,31 +6085,31 @@ msgstr "Karusell Visning"
|
|
6038 |
msgid "Slider View"
|
6039 |
msgstr "Slider Visning"
|
6040 |
|
6041 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6042 |
msgid "SU"
|
6043 |
msgstr "SØN"
|
6044 |
|
6045 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6046 |
msgid "MO"
|
6047 |
msgstr "MAN"
|
6048 |
|
6049 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6050 |
msgid "TU"
|
6051 |
msgstr "TIRS"
|
6052 |
|
6053 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6054 |
msgid "WE"
|
6055 |
msgstr "ONS"
|
6056 |
|
6057 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6058 |
msgid "TH"
|
6059 |
msgstr "TORS"
|
6060 |
|
6061 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6062 |
msgid "FR"
|
6063 |
msgstr "FRE"
|
6064 |
|
6065 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6066 |
msgid "SA"
|
6067 |
msgstr "LØR"
|
6068 |
|
@@ -6212,173 +6259,173 @@ msgstr "iCal eksport stoppet!"
|
|
6212 |
msgid "Request is not valid."
|
6213 |
msgstr "Forespørselen er ugyldig."
|
6214 |
|
6215 |
-
#: app/libraries/main.php:
|
6216 |
-
#: app/libraries/main.php:
|
6217 |
-
#: app/libraries/main.php:
|
6218 |
-
#: app/libraries/main.php:
|
6219 |
-
#: app/libraries/main.php:
|
6220 |
-
#: app/libraries/main.php:
|
6221 |
-
#: app/libraries/main.php:
|
6222 |
msgid "Sort"
|
6223 |
msgstr "Sortere"
|
6224 |
|
6225 |
-
#: app/libraries/main.php:
|
6226 |
-
#: app/libraries/main.php:
|
6227 |
-
#: app/libraries/main.php:
|
6228 |
-
#: app/libraries/main.php:
|
6229 |
-
#: app/libraries/main.php:
|
6230 |
-
#: app/libraries/main.php:
|
6231 |
msgid "Required Field"
|
6232 |
msgstr "Obligatorisk skjemafelt"
|
6233 |
|
6234 |
-
#: app/libraries/main.php:
|
6235 |
-
#: app/libraries/main.php:
|
6236 |
-
#: app/libraries/main.php:
|
6237 |
-
#: app/libraries/main.php:
|
6238 |
-
#: app/libraries/main.php:
|
6239 |
-
#: app/libraries/main.php:
|
6240 |
msgid "Insert a label for this field"
|
6241 |
msgstr "Sett inn en tittel for dette feltet"
|
6242 |
|
6243 |
-
#: app/libraries/main.php:
|
6244 |
msgid "HTML and shortcode are allowed."
|
6245 |
msgstr "HTML og kortkoder er tillatt."
|
6246 |
|
6247 |
-
#: app/libraries/main.php:
|
6248 |
-
#: app/libraries/main.php:
|
6249 |
msgid "Option"
|
6250 |
msgstr "Alternativ"
|
6251 |
|
6252 |
-
#: app/libraries/main.php:
|
6253 |
#, php-format
|
6254 |
msgid "Instead of %s, the page title with a link will be show."
|
6255 |
msgstr "Istedenfor %s, vil sidetittelen med en lenke bli vist."
|
6256 |
|
6257 |
-
#: app/libraries/main.php:
|
6258 |
msgid "Agreement Page"
|
6259 |
msgstr "Avtale Side"
|
6260 |
|
6261 |
-
#: app/libraries/main.php:
|
6262 |
msgid "Checked by default"
|
6263 |
msgstr "Avmerket som standard"
|
6264 |
|
6265 |
-
#: app/libraries/main.php:
|
6266 |
msgid "Unchecked by default"
|
6267 |
msgstr "Ikke avkrysset somstandard"
|
6268 |
|
6269 |
-
#: app/libraries/main.php:
|
6270 |
msgid "Insert a label for this option"
|
6271 |
msgstr "Sett inn en etikett for dette alternativet"
|
6272 |
|
6273 |
-
#: app/libraries/main.php:
|
6274 |
msgid "Free"
|
6275 |
msgstr "Gratis"
|
6276 |
|
6277 |
-
#: app/libraries/main.php:
|
6278 |
#, fuzzy
|
6279 |
#| msgid "M.E. Calendar"
|
6280 |
msgid "M.E. Calender"
|
6281 |
msgstr "ME Kalender"
|
6282 |
|
6283 |
-
#: app/libraries/main.php:
|
6284 |
#, php-format
|
6285 |
msgid "Copy of %s"
|
6286 |
msgstr "Kopi av %s"
|
6287 |
|
6288 |
-
#: app/libraries/main.php:
|
6289 |
msgid "Booked an event."
|
6290 |
msgstr "Bestilte ett arrangement."
|
6291 |
|
6292 |
-
#: app/libraries/main.php:
|
6293 |
#, php-format
|
6294 |
msgid "%s booked %s event."
|
6295 |
msgstr "%s bestilt %s arrangement."
|
6296 |
|
6297 |
-
#: app/libraries/main.php:
|
6298 |
msgid "Taxonomies"
|
6299 |
msgstr "Taxonomies"
|
6300 |
|
6301 |
-
#: app/libraries/main.php:
|
6302 |
msgid "Category Plural Label"
|
6303 |
msgstr "Kategori Fler Etikett"
|
6304 |
|
6305 |
-
#: app/libraries/main.php:
|
6306 |
msgid "Category Singular Label"
|
6307 |
msgstr "Kategori Singel Tittel"
|
6308 |
|
6309 |
-
#: app/libraries/main.php:
|
6310 |
msgid "Label Plural Label"
|
6311 |
msgstr "Etiketter Flertall"
|
6312 |
|
6313 |
-
#: app/libraries/main.php:
|
6314 |
msgid "Label Singular Label"
|
6315 |
msgstr "Etiketter Entall"
|
6316 |
|
6317 |
-
#: app/libraries/main.php:
|
6318 |
msgid "label"
|
6319 |
msgstr "etikett"
|
6320 |
|
6321 |
-
#: app/libraries/main.php:
|
6322 |
msgid "Location Plural Label"
|
6323 |
msgstr "Lokasjon Flertall Etiketter"
|
6324 |
|
6325 |
-
#: app/libraries/main.php:
|
6326 |
msgid "Location Singular Label"
|
6327 |
msgstr "Plasseringen Entall Etikett"
|
6328 |
|
6329 |
-
#: app/libraries/main.php:
|
6330 |
msgid "Organizer Plural Label"
|
6331 |
msgstr "Arrangør Flertall etikett"
|
6332 |
|
6333 |
-
#: app/libraries/main.php:
|
6334 |
msgid "Organizer Singular Label"
|
6335 |
msgstr "Arrangør Enkel Etikett"
|
6336 |
|
6337 |
-
#: app/libraries/main.php:
|
6338 |
msgid "Speaker Plural Label"
|
6339 |
msgstr "Instruktør/Foredragsholder flere etiketter"
|
6340 |
|
6341 |
-
#: app/libraries/main.php:
|
6342 |
msgid "Speaker Singular Label"
|
6343 |
msgstr "Instruktør/Foredragsholder enkelt etikett"
|
6344 |
|
6345 |
-
#: app/libraries/main.php:
|
6346 |
msgid "Sunday abbreviation"
|
6347 |
msgstr "Forkortelser på søndager"
|
6348 |
|
6349 |
-
#: app/libraries/main.php:
|
6350 |
msgid "Monday abbreviation"
|
6351 |
msgstr "Mandag forkortelse"
|
6352 |
|
6353 |
-
#: app/libraries/main.php:
|
6354 |
msgid "Tuesday abbreviation"
|
6355 |
msgstr "Tirsdag forkortelse"
|
6356 |
|
6357 |
-
#: app/libraries/main.php:
|
6358 |
msgid "Wednesday abbreviation"
|
6359 |
msgstr "Onsdag forkortelse"
|
6360 |
|
6361 |
-
#: app/libraries/main.php:
|
6362 |
msgid "Thursday abbreviation"
|
6363 |
msgstr "Torsdag forkortelse"
|
6364 |
|
6365 |
-
#: app/libraries/main.php:
|
6366 |
msgid "Friday abbreviation"
|
6367 |
msgstr "Fredag forkortelse"
|
6368 |
|
6369 |
-
#: app/libraries/main.php:
|
6370 |
msgid "Saturday abbreviation"
|
6371 |
msgstr "Lørdag forkortelse"
|
6372 |
|
6373 |
-
#: app/libraries/main.php:
|
6374 |
msgid "Others"
|
6375 |
msgstr "Øvrige"
|
6376 |
|
6377 |
-
#: app/libraries/main.php:
|
6378 |
msgid "Booking Success Message"
|
6379 |
msgstr "Melding ved vellykket bestilling"
|
6380 |
|
6381 |
-
#: app/libraries/main.php:
|
6382 |
msgid ""
|
6383 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6384 |
"needed, please check your email."
|
@@ -6386,17 +6433,17 @@ msgstr ""
|
|
6386 |
"Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
|
6387 |
"bekreftelse. Vennligst sjekk din epost."
|
6388 |
|
6389 |
-
#: app/libraries/main.php:
|
6390 |
msgid "Register Button"
|
6391 |
msgstr "Registreringsknapp"
|
6392 |
|
6393 |
-
#: app/libraries/main.php:
|
6394 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6395 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6396 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6397 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6398 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6399 |
-
#: app/skins/single.php:
|
6400 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6401 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6402 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6407,11 +6454,11 @@ msgstr "Registreringsknapp"
|
|
6407 |
msgid "REGISTER"
|
6408 |
msgstr "Registrere"
|
6409 |
|
6410 |
-
#: app/libraries/main.php:
|
6411 |
msgid "View Detail Button"
|
6412 |
msgstr "Se Detalj Knapp"
|
6413 |
|
6414 |
-
#: app/libraries/main.php:
|
6415 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6416 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6417 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6422,59 +6469,59 @@ msgstr "Se Detalj Knapp"
|
|
6422 |
msgid "View Detail"
|
6423 |
msgstr "Se detaljer"
|
6424 |
|
6425 |
-
#: app/libraries/main.php:
|
6426 |
msgid "Event Detail Button"
|
6427 |
msgstr "Knapp for arrangementsdetaljer"
|
6428 |
|
6429 |
-
#: app/libraries/main.php:
|
6430 |
msgid "Event Detail"
|
6431 |
msgstr "Arrangement Detaljer"
|
6432 |
|
6433 |
-
#: app/libraries/main.php:
|
6434 |
msgid "More Info Link"
|
6435 |
msgstr "Mer Info Lenke"
|
6436 |
|
6437 |
-
#: app/libraries/main.php:
|
6438 |
msgid "Ticket (Singular)"
|
6439 |
msgstr "Billett (Singel)"
|
6440 |
|
6441 |
-
#: app/libraries/main.php:
|
6442 |
msgid "Tickets (Plural)"
|
6443 |
msgstr "Billetter (Flertall)"
|
6444 |
|
6445 |
-
#: app/libraries/main.php:
|
6446 |
msgid "EventON"
|
6447 |
msgstr "EventON"
|
6448 |
|
6449 |
-
#: app/libraries/main.php:
|
6450 |
msgid "The Events Calendar"
|
6451 |
msgstr "Aktivitetskalenderen"
|
6452 |
|
6453 |
-
#: app/libraries/main.php:
|
6454 |
msgid "Events Schedule WP Plugin"
|
6455 |
msgstr "Arrangement Planlegging WP Plugin"
|
6456 |
|
6457 |
-
#: app/libraries/main.php:
|
6458 |
msgid "Calendarize It"
|
6459 |
msgstr "HOP Kalender"
|
6460 |
|
6461 |
-
#: app/libraries/main.php:
|
6462 |
msgid "Confirmed"
|
6463 |
msgstr "Bekreftet"
|
6464 |
|
6465 |
-
#: app/libraries/main.php:
|
6466 |
msgid "Rejected"
|
6467 |
msgstr "Avvist"
|
6468 |
|
6469 |
-
#: app/libraries/main.php:
|
6470 |
msgid "Pending"
|
6471 |
msgstr "Venter"
|
6472 |
|
6473 |
-
#: app/libraries/main.php:
|
6474 |
msgid "Waiting"
|
6475 |
msgstr "Ventende"
|
6476 |
|
6477 |
-
#: app/libraries/main.php:
|
6478 |
msgid "Skin controller does not exist."
|
6479 |
msgstr "Skin kontroller eksisterer ikke."
|
6480 |
|
@@ -6482,57 +6529,49 @@ msgstr "Skin kontroller eksisterer ikke."
|
|
6482 |
msgid "Please verify your email."
|
6483 |
msgstr "Vennligst bekrefte din E-post."
|
6484 |
|
6485 |
-
#: app/libraries/notifications.php:
|
6486 |
msgid "Your booking is received."
|
6487 |
msgstr "Din bestilling er mottatt."
|
6488 |
|
6489 |
-
#: app/libraries/notifications.php:
|
6490 |
msgid "Your booking is confirmed."
|
6491 |
msgstr "Din Bestilling er bekreftet."
|
6492 |
|
6493 |
-
#: app/libraries/notifications.php:
|
6494 |
#, fuzzy
|
6495 |
#| msgid "Your booking cannot be canceled."
|
6496 |
msgid "booking canceled."
|
6497 |
msgstr "Din booking ble ikke kansellert."
|
6498 |
|
6499 |
-
#: app/libraries/notifications.php:
|
6500 |
msgid "A new booking is received."
|
6501 |
msgstr "En ny bestilling er mottatt."
|
6502 |
|
6503 |
-
#: app/libraries/notifications.php:
|
6504 |
msgid "A new event is added."
|
6505 |
msgstr "Ett nytt arrangement er lagt til."
|
6506 |
|
6507 |
-
#: app/libraries/notifications.php:
|
6508 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6509 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6510 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6511 |
-
#: app/skins/single/modern.php:184
|
6512 |
-
msgid "All of the day"
|
6513 |
-
msgstr "Hele dagen"
|
6514 |
-
|
6515 |
-
#: app/libraries/notifications.php:611
|
6516 |
msgid "to"
|
6517 |
msgstr "til"
|
6518 |
|
6519 |
-
#: app/libraries/notifications.php:
|
6520 |
msgid "+ Add to Google Calendar"
|
6521 |
msgstr "+ Legg til i Google Kalender"
|
6522 |
|
6523 |
-
#: app/libraries/notifications.php:
|
6524 |
msgid "+ iCal export"
|
6525 |
msgstr "+ iCal eksport"
|
6526 |
|
6527 |
-
#: app/libraries/notifications.php:
|
6528 |
msgid "Yes"
|
6529 |
msgstr "Ja"
|
6530 |
|
6531 |
-
#: app/libraries/notifications.php:
|
6532 |
msgid "No"
|
6533 |
msgstr "Nei"
|
6534 |
|
6535 |
-
#: app/libraries/skins.php:
|
6536 |
msgid "Ignore month and years"
|
6537 |
msgstr "Ignorer måned og år"
|
6538 |
|
@@ -6610,7 +6649,7 @@ msgstr "Adresse fra ..."
|
|
6610 |
msgid "Get Directions"
|
6611 |
msgstr "Få veibeskrivelse"
|
6612 |
|
6613 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6614 |
msgid "Share this event"
|
6615 |
msgstr "Del arrangementet"
|
6616 |
|
@@ -6637,7 +6676,7 @@ msgstr "Neste Forekomst"
|
|
6637 |
msgid "Go to occurrence page"
|
6638 |
msgstr "Gå til gjentagende side"
|
6639 |
|
6640 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6641 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6642 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6643 |
msgid "Time"
|
@@ -6749,7 +6788,7 @@ msgstr "Ingen arrangement"
|
|
6749 |
msgid "List"
|
6750 |
msgstr "Liste"
|
6751 |
|
6752 |
-
#: app/skins/masonry.php:
|
6753 |
msgid "All"
|
6754 |
msgstr "Alle"
|
6755 |
|
@@ -6767,31 +6806,31 @@ msgstr "Kalender for %s"
|
|
6767 |
msgid "No Events"
|
6768 |
msgstr "Ingen hendelser"
|
6769 |
|
6770 |
-
#: app/skins/single.php:
|
6771 |
msgid "Home"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
-
#: app/skins/single.php:
|
6775 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6776 |
#: app/skins/single/modern.php:256
|
6777 |
msgid "Sold out!"
|
6778 |
msgstr "Utsolgt!"
|
6779 |
|
6780 |
-
#: app/skins/single.php:
|
6781 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6782 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6783 |
#: app/skins/single/modern.php:41
|
6784 |
msgid "Phone"
|
6785 |
msgstr "Telefon"
|
6786 |
|
6787 |
-
#: app/skins/single.php:
|
6788 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6789 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6790 |
#: app/skins/single/modern.php:55
|
6791 |
msgid "Website"
|
6792 |
msgstr "Nettsted"
|
6793 |
|
6794 |
-
#: app/skins/single.php:
|
6795 |
msgid "Speakers:"
|
6796 |
msgstr "Høyttalere:"
|
6797 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-13 16:46+0430\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb_NO\n"
|
354 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
355 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
356 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
357 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
358 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
359 |
#: app/features/mec/styling.php:59
|
360 |
msgid "Mailchimp Integration"
|
420 |
#: app/features/mec/meta_boxes/search_form.php:453
|
421 |
#: app/features/mec/meta_boxes/search_form.php:514
|
422 |
#: app/features/mec/meta_boxes/search_form.php:575
|
423 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
424 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
425 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
426 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
427 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
428 |
msgid "Category"
|
430 |
|
431 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
432 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
433 |
+
#: app/libraries/main.php:4508
|
434 |
msgid "Categories"
|
435 |
msgstr "Kategorier"
|
436 |
|
505 |
#: app/features/events.php:322 app/features/events.php:3168
|
506 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
507 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
508 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
509 |
#: app/widgets/single.php:103
|
510 |
msgid "Event Cost"
|
511 |
msgstr "Kostnad for arrangementet"
|
512 |
|
513 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
514 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
515 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
516 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
517 |
msgid "Cost"
|
528 |
#: app/features/events.php:432 app/features/events.php:2250
|
529 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
530 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
531 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
532 |
#: app/modules/booking/steps/form.php:37
|
533 |
msgid "Name"
|
534 |
msgstr "Navn"
|
539 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
540 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
541 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
542 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
543 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
544 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
545 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
546 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
547 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
548 |
msgid "Email"
|
688 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
689 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
690 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
691 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
692 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
693 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
694 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
695 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
696 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
697 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
698 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
699 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
700 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
701 |
#: app/skins/single/modern.php:133
|
905 |
|
906 |
#: app/features/events.php:1130 app/features/events.php:2340
|
907 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
908 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
909 |
#: app/modules/booking/steps/tickets.php:22
|
910 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
911 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
912 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
913 |
msgid "Date"
|
925 |
msgstr "Dag 1"
|
926 |
|
927 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
928 |
+
#: app/skins/single.php:898
|
929 |
msgid "Hourly Schedule"
|
930 |
msgstr "Timeplan"
|
931 |
|
966 |
#: app/features/events.php:2154 app/features/events.php:2196
|
967 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
968 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
969 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
970 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
971 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
972 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
973 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
974 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
975 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
976 |
+
#: app/libraries/main.php:2612
|
977 |
msgid "Remove"
|
978 |
msgstr "Fjern"
|
979 |
|
1006 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
1007 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
1008 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
1009 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4516
|
1010 |
#: app/modules/speakers/details.php:18
|
1011 |
msgid "Speakers"
|
1012 |
msgstr "Foredragsholdere"
|
1023 |
msgstr "Arrangemenslenker"
|
1024 |
|
1025 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1026 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4539
|
1027 |
msgid "Event Link"
|
1028 |
msgstr "Arrangemenslenke"
|
1029 |
|
1050 |
msgstr ""
|
1051 |
|
1052 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1053 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4540
|
1054 |
+
#: app/skins/single.php:627 app/skins/single/default.php:118
|
1055 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1056 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1057 |
#: app/widgets/single.php:107
|
1116 |
msgstr ""
|
1117 |
|
1118 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1119 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1120 |
msgid "Tickets"
|
1121 |
msgstr "Billetter"
|
1122 |
|
1192 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1193 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1194 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1195 |
+
#: app/features/mec/settings.php:937 app/features/mec/single.php:408
|
1196 |
+
#: app/libraries/skins.php:937
|
1197 |
msgid "Label"
|
1198 |
msgstr "Etikett"
|
1199 |
|
1264 |
msgstr "Maks per billett. La det stå tomt for ubegrenset."
|
1265 |
|
1266 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1267 |
+
#: app/libraries/main.php:2202
|
1268 |
#, fuzzy
|
1269 |
#| msgid "Name"
|
1270 |
msgid "MEC Name"
|
1271 |
msgstr "Navn"
|
1272 |
|
1273 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1274 |
+
#: app/libraries/main.php:2231
|
1275 |
#, fuzzy
|
1276 |
#| msgid "Email"
|
1277 |
msgid "MEC Email"
|
1278 |
msgstr "E-post"
|
1279 |
|
1280 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1281 |
+
#: app/libraries/main.php:2172
|
1282 |
msgid "Text"
|
1283 |
msgstr "Tekst"
|
1284 |
|
1285 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1286 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1287 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1288 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2348
|
1289 |
msgid "Tel"
|
1290 |
msgstr "Tlf"
|
1291 |
|
1292 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1293 |
+
#: app/libraries/main.php:2290
|
1294 |
msgid "File"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1298 |
+
#: app/libraries/main.php:2377
|
1299 |
msgid "Textarea"
|
1300 |
msgstr "Tekstområde"
|
1301 |
|
1302 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1303 |
+
#: app/libraries/main.php:2430
|
1304 |
msgid "Checkboxes"
|
1305 |
msgstr "Avmerkingsbokser"
|
1306 |
|
1307 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1308 |
+
#: app/libraries/main.php:2474
|
1309 |
msgid "Radio Buttons"
|
1310 |
msgstr "Radioknapper"
|
1311 |
|
1378 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1379 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1380 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1381 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2518
|
1382 |
msgid "Dropdown"
|
1383 |
msgstr "Nedtrekksmeny"
|
1384 |
|
1385 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1386 |
+
#: app/libraries/main.php:2565
|
1387 |
msgid "Agreement"
|
1388 |
msgstr "Avtalen"
|
1389 |
|
1390 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1391 |
+
#: app/libraries/main.php:2406
|
1392 |
msgid "Paragraph"
|
1393 |
msgstr "Avsnitt"
|
1394 |
|
1426 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1427 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1428 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1429 |
+
#: app/features/mec/settings.php:911 app/features/mec/single.php:398
|
1430 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1431 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1432 |
+
#: app/skins/single.php:875 app/skins/single/default.php:154
|
1433 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1434 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1435 |
msgid "Location"
|
1448 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1449 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1450 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1451 |
+
#: app/features/mec/settings.php:917 app/features/mec/single.php:394
|
1452 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1453 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1454 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4515
|
1455 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
1456 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1457 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1458 |
#: app/skins/single/modern.php:31
|
1605 |
|
1606 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1607 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1608 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
|
1609 |
+
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1610 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1611 |
#: app/skins/single/modern.php:214
|
1612 |
msgid "Labels"
|
1937 |
|
1938 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1939 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1940 |
+
#: app/features/mec/settings.php:1103 app/features/mec/single.php:480
|
1941 |
msgid "Checking ..."
|
1942 |
msgstr "Sjekker ..."
|
1943 |
|
2330 |
msgstr "Fremhevet"
|
2331 |
|
2332 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2333 |
+
#: app/libraries/main.php:4756 app/skins/agenda/render.php:41
|
2334 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2335 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2336 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2365 |
|
2366 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2367 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2368 |
+
#: app/libraries/main.php:4512
|
2369 |
msgid "Locations"
|
2370 |
msgstr "Steder"
|
2371 |
|
2472 |
msgid "Don't show map in single event page"
|
2473 |
msgstr "Ikke vis kart i enkelt arrangement visning"
|
2474 |
|
2475 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2476 |
#, fuzzy
|
2477 |
#| msgid "Locations"
|
2478 |
msgid "Other Locations"
|
2526 |
|
2527 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2528 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2529 |
+
#: app/libraries/main.php:4514
|
2530 |
msgid "Organizers"
|
2531 |
msgstr "Arrangører"
|
2532 |
|
2647 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2648 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2649 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2650 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
|
2651 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2652 |
+
#: app/features/mec/settings.php:1134 app/features/mec/single.php:14
|
2653 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2654 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2655 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2748 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2749 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2750 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2751 |
+
#: app/skins/single.php:162
|
2752 |
#, fuzzy
|
2753 |
#| msgid "featured event"
|
2754 |
msgid "Related Events"
|
2879 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2880 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2881 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2882 |
+
#: app/libraries/notifications.php:405
|
2883 |
msgid "Booking Reminder"
|
2884 |
msgstr "Påminnelse angående din bestilling"
|
2885 |
|
3059 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3060 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3061 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3062 |
+
#: app/features/mec/settings.php:1098 app/features/mec/single.php:475
|
3063 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3064 |
msgid "Saved"
|
3065 |
msgstr "Lagret"
|
3067 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3068 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3069 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3070 |
+
#: app/features/mec/settings.php:1099 app/features/mec/single.php:476
|
3071 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3072 |
msgid "Settings Saved!"
|
3073 |
msgstr "Innstillinger Lagret!"
|
3075 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3076 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3077 |
#: app/features/mec/notifications.php:735
|
3078 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
|
3079 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
3080 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
3081 |
msgid "Verified"
|
3082 |
msgstr "Verifisert"
|
3083 |
|
3084 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3085 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
|
3086 |
#: app/features/mec/single.php:502
|
3087 |
msgid "Please Refresh Page"
|
3088 |
msgstr "Vennligst Oppdater Side"
|
4018 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4019 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4020 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4021 |
+
#: app/features/mec/settings.php:924 app/features/mec/single.php:403
|
4022 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4023 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
4024 |
msgid "Speaker"
|
4025 |
msgstr "Foredragsholder"
|
4026 |
|
4034 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4035 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4036 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4037 |
+
#: app/features/mec/settings.php:931 app/features/mec/single.php:412
|
4038 |
+
#: app/libraries/skins.php:911
|
4039 |
#, fuzzy
|
4040 |
#| msgid "Tags"
|
4041 |
msgid "Tag"
|
4113 |
msgstr "Vis Google Maps på arrangementside"
|
4114 |
|
4115 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4116 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
4117 |
msgid "API Key"
|
4118 |
msgstr "API-nøkkel"
|
4119 |
|
4120 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
4121 |
+
#: app/features/mec/settings.php:980
|
4122 |
msgid "Required!"
|
4123 |
msgstr "Påkrevet!"
|
4124 |
|
4727 |
msgstr ""
|
4728 |
|
4729 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4730 |
+
#: app/libraries/main.php:4521
|
4731 |
msgid "Weekdays"
|
4732 |
msgstr "Ukedager"
|
4733 |
|
5052 |
"Putte %s kortkode inn i din side. Da vil brukerne være i stand til å se "
|
5053 |
"historien om sine bestillinger."
|
5054 |
|
5055 |
+
#: app/features/mec/settings.php:890
|
5056 |
+
msgid "Ajax Live mode"
|
5057 |
+
msgstr ""
|
5058 |
+
|
5059 |
+
#: app/features/mec/settings.php:894
|
5060 |
+
msgid "Ajax mode"
|
5061 |
msgstr ""
|
5062 |
|
5063 |
+
#: app/features/mec/settings.php:895
|
5064 |
+
msgid ""
|
5065 |
+
"if you enable this option, search button disappeared and to use this "
|
5066 |
+
"feature, text input field must be enabled."
|
5067 |
+
msgstr ""
|
5068 |
+
|
5069 |
+
#: app/features/mec/settings.php:901
|
5070 |
+
#, fuzzy
|
5071 |
+
#| msgid "Search Form"
|
5072 |
+
msgid "Search bar fields"
|
5073 |
+
msgstr "Søkefelt"
|
5074 |
+
|
5075 |
+
#: app/features/mec/settings.php:943
|
5076 |
+
#, fuzzy
|
5077 |
+
#| msgid "Text Input"
|
5078 |
+
msgid "Text input"
|
5079 |
+
msgstr "Skriv inn tekst"
|
5080 |
+
|
5081 |
+
#: app/features/mec/settings.php:956
|
5082 |
msgid "Enable Mailchimp Integration"
|
5083 |
msgstr "Aktiver Mailchimp Integrasjon"
|
5084 |
|
5085 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
5086 |
msgid "List ID"
|
5087 |
msgstr "Liste-ID"
|
5088 |
|
5089 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
5090 |
msgid "Subscription Status"
|
5091 |
msgstr "Abonnement Status"
|
5092 |
|
5093 |
+
#: app/features/mec/settings.php:990
|
5094 |
msgid "Subscribe automatically"
|
5095 |
msgstr "Abonner automatisk"
|
5096 |
|
5097 |
+
#: app/features/mec/settings.php:991
|
5098 |
msgid "Subscribe by verification"
|
5099 |
msgstr "Abonner etter verifikasjon"
|
5100 |
|
5101 |
+
#: app/features/mec/settings.php:996
|
5102 |
msgid ""
|
5103 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5104 |
"by mailchimp for subscription verification."
|
5106 |
"Velger du \"Abonner med verifikasjon\" blir en epost sendt til bruker av "
|
5107 |
"mailchimp for bekreftelse."
|
5108 |
|
5109 |
+
#: app/features/mec/settings.php:1008
|
5110 |
#, fuzzy
|
5111 |
#| msgid "Filter Options"
|
5112 |
msgid "Upload Field Options"
|
5113 |
msgstr "Alternativer for filter"
|
5114 |
|
5115 |
+
#: app/features/mec/settings.php:1010
|
5116 |
msgid "Mime types"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: app/features/mec/settings.php:1014
|
5120 |
msgid "Split mime types with \",\"."
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: app/features/mec/settings.php:1014
|
5124 |
msgid "Default: jpeg,jpg,png,pdf"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
+
#: app/features/mec/settings.php:1017
|
5128 |
#, fuzzy
|
5129 |
#| msgid "Maximum Per Ticket"
|
5130 |
msgid "Maximum file size"
|
5131 |
msgstr "Maks Per billett"
|
5132 |
|
5133 |
+
#: app/features/mec/settings.php:1021
|
5134 |
msgid "The unit is Megabyte \"MB\""
|
5135 |
msgstr ""
|
5136 |
|
5817 |
msgid "eg. https://webnus.net"
|
5818 |
msgstr "F.eks. https://webnus.net"
|
5819 |
|
5820 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5821 |
+
#: app/skins/single.php:813
|
5822 |
msgid "Other Organizers"
|
5823 |
msgstr "Andre Arrangører"
|
5824 |
|
5837 |
msgid "#"
|
5838 |
msgstr "#"
|
5839 |
|
5840 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5841 |
msgid "Status"
|
5842 |
msgstr "Status"
|
5843 |
|
5855 |
msgstr "<i class=\"mec-sl-eye\"></i> %s"
|
5856 |
|
5857 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5858 |
+
#: app/libraries/main.php:4543
|
5859 |
msgid "Ticket"
|
5860 |
msgstr "Billett"
|
5861 |
|
5867 |
msgid "No bookings found!"
|
5868 |
msgstr "Ingen bestillinger funnet!"
|
5869 |
|
5870 |
+
#: app/features/search.php:90
|
5871 |
+
msgid "Please enter at least 3 characters and try again"
|
5872 |
+
msgstr ""
|
5873 |
+
|
5874 |
+
#: app/features/search_bar/search_bar.php:26
|
5875 |
+
msgid "Please enter at least 3 characters"
|
5876 |
+
msgstr ""
|
5877 |
+
|
5878 |
#: app/features/search_bar/search_bar.php:28
|
5879 |
+
msgid "Search results will show here"
|
5880 |
+
msgstr ""
|
5881 |
+
|
5882 |
+
#: app/features/search_bar/search_bar.php:39
|
5883 |
#, fuzzy
|
5884 |
#| msgid "Search %s"
|
5885 |
msgid "Search"
|
5886 |
msgstr "Søk i %s"
|
5887 |
|
5888 |
+
#: app/features/search_bar/search_noresult.php:1
|
5889 |
+
msgid "No search result."
|
5890 |
+
msgstr ""
|
5891 |
+
|
5892 |
+
#: app/features/search_bar/search_result.php:11
|
5893 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5894 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5895 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5896 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5897 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5898 |
+
msgid "All of the day"
|
5899 |
+
msgstr "Hele dagen"
|
5900 |
+
|
5901 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5902 |
#: app/features/speakers.php:248
|
5903 |
msgid "Job Title"
|
5950 |
msgid "%s Price"
|
5951 |
msgstr "%s pris"
|
5952 |
|
5953 |
+
#: app/libraries/book.php:539
|
5954 |
msgid "Discount"
|
5955 |
msgstr "Rabatt"
|
5956 |
|
5957 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
5958 |
#: app/modules/booking/default.php:401
|
5959 |
msgid "Download Invoice"
|
5960 |
msgstr "Last ned Faktura"
|
5978 |
msgid "Upgrade"
|
5979 |
msgstr "Oppgrader"
|
5980 |
|
5981 |
+
#: app/libraries/factory.php:333
|
5982 |
msgid "day"
|
5983 |
msgstr "dag"
|
5984 |
|
5985 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
5986 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5987 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5988 |
msgid "days"
|
5989 |
msgstr "dager"
|
5990 |
|
5991 |
+
#: app/libraries/factory.php:335
|
5992 |
msgid "hour"
|
5993 |
msgstr "time"
|
5994 |
|
5995 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
5996 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5997 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5998 |
msgid "hours"
|
5999 |
msgstr "timer"
|
6000 |
|
6001 |
+
#: app/libraries/factory.php:337
|
6002 |
msgid "minute"
|
6003 |
msgstr "minutt"
|
6004 |
|
6005 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
6006 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6007 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6008 |
msgid "minutes"
|
6009 |
msgstr "minutter"
|
6010 |
|
6011 |
+
#: app/libraries/factory.php:339
|
6012 |
msgid "second"
|
6013 |
msgstr "sekund"
|
6014 |
|
6015 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
6016 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6017 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6018 |
msgid "seconds"
|
6019 |
msgstr "sekunder"
|
6020 |
|
6021 |
+
#: app/libraries/factory.php:383
|
6022 |
msgid "MEC Single Sidebar"
|
6023 |
msgstr "MEC Singel Sidebar"
|
6024 |
|
6025 |
+
#: app/libraries/factory.php:384
|
6026 |
msgid "Custom sidebar for single and modal page of MEC."
|
6027 |
msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
|
6028 |
|
6085 |
msgid "Slider View"
|
6086 |
msgstr "Slider Visning"
|
6087 |
|
6088 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
6089 |
msgid "SU"
|
6090 |
msgstr "SØN"
|
6091 |
|
6092 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
6093 |
msgid "MO"
|
6094 |
msgstr "MAN"
|
6095 |
|
6096 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
6097 |
msgid "TU"
|
6098 |
msgstr "TIRS"
|
6099 |
|
6100 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
6101 |
msgid "WE"
|
6102 |
msgstr "ONS"
|
6103 |
|
6104 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
6105 |
msgid "TH"
|
6106 |
msgstr "TORS"
|
6107 |
|
6108 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
6109 |
msgid "FR"
|
6110 |
msgstr "FRE"
|
6111 |
|
6112 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
6113 |
msgid "SA"
|
6114 |
msgstr "LØR"
|
6115 |
|
6259 |
msgid "Request is not valid."
|
6260 |
msgstr "Forespørselen er ugyldig."
|
6261 |
|
6262 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
6263 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
6264 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
6265 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
6266 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
6267 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
6268 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
6269 |
msgid "Sort"
|
6270 |
msgstr "Sortere"
|
6271 |
|
6272 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
6273 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
6274 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
6275 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
6276 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
6277 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
6278 |
msgid "Required Field"
|
6279 |
msgstr "Obligatorisk skjemafelt"
|
6280 |
|
6281 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
6282 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
6283 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
6284 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
6285 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
6286 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
6287 |
msgid "Insert a label for this field"
|
6288 |
msgstr "Sett inn en tittel for dette feltet"
|
6289 |
|
6290 |
+
#: app/libraries/main.php:2411
|
6291 |
msgid "HTML and shortcode are allowed."
|
6292 |
msgstr "HTML og kortkoder er tillatt."
|
6293 |
|
6294 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
6295 |
+
#: app/libraries/main.php:2542
|
6296 |
msgid "Option"
|
6297 |
msgstr "Alternativ"
|
6298 |
|
6299 |
+
#: app/libraries/main.php:2576
|
6300 |
#, php-format
|
6301 |
msgid "Instead of %s, the page title with a link will be show."
|
6302 |
msgstr "Istedenfor %s, vil sidetittelen med en lenke bli vist."
|
6303 |
|
6304 |
+
#: app/libraries/main.php:2578
|
6305 |
msgid "Agreement Page"
|
6306 |
msgstr "Avtale Side"
|
6307 |
|
6308 |
+
#: app/libraries/main.php:2589
|
6309 |
msgid "Checked by default"
|
6310 |
msgstr "Avmerket som standard"
|
6311 |
|
6312 |
+
#: app/libraries/main.php:2590
|
6313 |
msgid "Unchecked by default"
|
6314 |
msgstr "Ikke avkrysset somstandard"
|
6315 |
|
6316 |
+
#: app/libraries/main.php:2613
|
6317 |
msgid "Insert a label for this option"
|
6318 |
msgstr "Sett inn en etikett for dette alternativet"
|
6319 |
|
6320 |
+
#: app/libraries/main.php:2628
|
6321 |
msgid "Free"
|
6322 |
msgstr "Gratis"
|
6323 |
|
6324 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6325 |
#, fuzzy
|
6326 |
#| msgid "M.E. Calendar"
|
6327 |
msgid "M.E. Calender"
|
6328 |
msgstr "ME Kalender"
|
6329 |
|
6330 |
+
#: app/libraries/main.php:3349
|
6331 |
#, php-format
|
6332 |
msgid "Copy of %s"
|
6333 |
msgstr "Kopi av %s"
|
6334 |
|
6335 |
+
#: app/libraries/main.php:4022
|
6336 |
msgid "Booked an event."
|
6337 |
msgstr "Bestilte ett arrangement."
|
6338 |
|
6339 |
+
#: app/libraries/main.php:4063
|
6340 |
#, php-format
|
6341 |
msgid "%s booked %s event."
|
6342 |
msgstr "%s bestilt %s arrangement."
|
6343 |
|
6344 |
+
#: app/libraries/main.php:4506
|
6345 |
msgid "Taxonomies"
|
6346 |
msgstr "Taxonomies"
|
6347 |
|
6348 |
+
#: app/libraries/main.php:4508
|
6349 |
msgid "Category Plural Label"
|
6350 |
msgstr "Kategori Fler Etikett"
|
6351 |
|
6352 |
+
#: app/libraries/main.php:4509
|
6353 |
msgid "Category Singular Label"
|
6354 |
msgstr "Kategori Singel Tittel"
|
6355 |
|
6356 |
+
#: app/libraries/main.php:4510
|
6357 |
msgid "Label Plural Label"
|
6358 |
msgstr "Etiketter Flertall"
|
6359 |
|
6360 |
+
#: app/libraries/main.php:4511
|
6361 |
msgid "Label Singular Label"
|
6362 |
msgstr "Etiketter Entall"
|
6363 |
|
6364 |
+
#: app/libraries/main.php:4511
|
6365 |
msgid "label"
|
6366 |
msgstr "etikett"
|
6367 |
|
6368 |
+
#: app/libraries/main.php:4512
|
6369 |
msgid "Location Plural Label"
|
6370 |
msgstr "Lokasjon Flertall Etiketter"
|
6371 |
|
6372 |
+
#: app/libraries/main.php:4513
|
6373 |
msgid "Location Singular Label"
|
6374 |
msgstr "Plasseringen Entall Etikett"
|
6375 |
|
6376 |
+
#: app/libraries/main.php:4514
|
6377 |
msgid "Organizer Plural Label"
|
6378 |
msgstr "Arrangør Flertall etikett"
|
6379 |
|
6380 |
+
#: app/libraries/main.php:4515
|
6381 |
msgid "Organizer Singular Label"
|
6382 |
msgstr "Arrangør Enkel Etikett"
|
6383 |
|
6384 |
+
#: app/libraries/main.php:4516
|
6385 |
msgid "Speaker Plural Label"
|
6386 |
msgstr "Instruktør/Foredragsholder flere etiketter"
|
6387 |
|
6388 |
+
#: app/libraries/main.php:4517
|
6389 |
msgid "Speaker Singular Label"
|
6390 |
msgstr "Instruktør/Foredragsholder enkelt etikett"
|
6391 |
|
6392 |
+
#: app/libraries/main.php:4523
|
6393 |
msgid "Sunday abbreviation"
|
6394 |
msgstr "Forkortelser på søndager"
|
6395 |
|
6396 |
+
#: app/libraries/main.php:4524
|
6397 |
msgid "Monday abbreviation"
|
6398 |
msgstr "Mandag forkortelse"
|
6399 |
|
6400 |
+
#: app/libraries/main.php:4525
|
6401 |
msgid "Tuesday abbreviation"
|
6402 |
msgstr "Tirsdag forkortelse"
|
6403 |
|
6404 |
+
#: app/libraries/main.php:4526
|
6405 |
msgid "Wednesday abbreviation"
|
6406 |
msgstr "Onsdag forkortelse"
|
6407 |
|
6408 |
+
#: app/libraries/main.php:4527
|
6409 |
msgid "Thursday abbreviation"
|
6410 |
msgstr "Torsdag forkortelse"
|
6411 |
|
6412 |
+
#: app/libraries/main.php:4528
|
6413 |
msgid "Friday abbreviation"
|
6414 |
msgstr "Fredag forkortelse"
|
6415 |
|
6416 |
+
#: app/libraries/main.php:4529
|
6417 |
msgid "Saturday abbreviation"
|
6418 |
msgstr "Lørdag forkortelse"
|
6419 |
|
6420 |
+
#: app/libraries/main.php:4533
|
6421 |
msgid "Others"
|
6422 |
msgstr "Øvrige"
|
6423 |
|
6424 |
+
#: app/libraries/main.php:4535
|
6425 |
msgid "Booking Success Message"
|
6426 |
msgstr "Melding ved vellykket bestilling"
|
6427 |
|
6428 |
+
#: app/libraries/main.php:4535
|
6429 |
msgid ""
|
6430 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6431 |
"needed, please check your email."
|
6433 |
"Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
|
6434 |
"bekreftelse. Vennligst sjekk din epost."
|
6435 |
|
6436 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6437 |
msgid "Register Button"
|
6438 |
msgstr "Registreringsknapp"
|
6439 |
|
6440 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6441 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6442 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6443 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6444 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6445 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6446 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6447 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6448 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6449 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6454 |
msgid "REGISTER"
|
6455 |
msgstr "Registrere"
|
6456 |
|
6457 |
+
#: app/libraries/main.php:4537
|
6458 |
msgid "View Detail Button"
|
6459 |
msgstr "Se Detalj Knapp"
|
6460 |
|
6461 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6462 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6463 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6464 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6469 |
msgid "View Detail"
|
6470 |
msgstr "Se detaljer"
|
6471 |
|
6472 |
+
#: app/libraries/main.php:4538
|
6473 |
msgid "Event Detail Button"
|
6474 |
msgstr "Knapp for arrangementsdetaljer"
|
6475 |
|
6476 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6477 |
msgid "Event Detail"
|
6478 |
msgstr "Arrangement Detaljer"
|
6479 |
|
6480 |
+
#: app/libraries/main.php:4540
|
6481 |
msgid "More Info Link"
|
6482 |
msgstr "Mer Info Lenke"
|
6483 |
|
6484 |
+
#: app/libraries/main.php:4543
|
6485 |
msgid "Ticket (Singular)"
|
6486 |
msgstr "Billett (Singel)"
|
6487 |
|
6488 |
+
#: app/libraries/main.php:4544
|
6489 |
msgid "Tickets (Plural)"
|
6490 |
msgstr "Billetter (Flertall)"
|
6491 |
|
6492 |
+
#: app/libraries/main.php:4630
|
6493 |
msgid "EventON"
|
6494 |
msgstr "EventON"
|
6495 |
|
6496 |
+
#: app/libraries/main.php:4631
|
6497 |
msgid "The Events Calendar"
|
6498 |
msgstr "Aktivitetskalenderen"
|
6499 |
|
6500 |
+
#: app/libraries/main.php:4632
|
6501 |
msgid "Events Schedule WP Plugin"
|
6502 |
msgstr "Arrangement Planlegging WP Plugin"
|
6503 |
|
6504 |
+
#: app/libraries/main.php:4633
|
6505 |
msgid "Calendarize It"
|
6506 |
msgstr "HOP Kalender"
|
6507 |
|
6508 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6509 |
msgid "Confirmed"
|
6510 |
msgstr "Bekreftet"
|
6511 |
|
6512 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6513 |
msgid "Rejected"
|
6514 |
msgstr "Avvist"
|
6515 |
|
6516 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6517 |
msgid "Pending"
|
6518 |
msgstr "Venter"
|
6519 |
|
6520 |
+
#: app/libraries/main.php:4757
|
6521 |
msgid "Waiting"
|
6522 |
msgstr "Ventende"
|
6523 |
|
6524 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6525 |
msgid "Skin controller does not exist."
|
6526 |
msgstr "Skin kontroller eksisterer ikke."
|
6527 |
|
6529 |
msgid "Please verify your email."
|
6530 |
msgstr "Vennligst bekrefte din E-post."
|
6531 |
|
6532 |
+
#: app/libraries/notifications.php:125
|
6533 |
msgid "Your booking is received."
|
6534 |
msgstr "Din bestilling er mottatt."
|
6535 |
|
6536 |
+
#: app/libraries/notifications.php:193
|
6537 |
msgid "Your booking is confirmed."
|
6538 |
msgstr "Din Bestilling er bekreftet."
|
6539 |
|
6540 |
+
#: app/libraries/notifications.php:282
|
6541 |
#, fuzzy
|
6542 |
#| msgid "Your booking cannot be canceled."
|
6543 |
msgid "booking canceled."
|
6544 |
msgstr "Din booking ble ikke kansellert."
|
6545 |
|
6546 |
+
#: app/libraries/notifications.php:337
|
6547 |
msgid "A new booking is received."
|
6548 |
msgstr "En ny bestilling er mottatt."
|
6549 |
|
6550 |
+
#: app/libraries/notifications.php:488
|
6551 |
msgid "A new event is added."
|
6552 |
msgstr "Ett nytt arrangement er lagt til."
|
6553 |
|
6554 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6555 |
msgid "to"
|
6556 |
msgstr "til"
|
6557 |
|
6558 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6559 |
msgid "+ Add to Google Calendar"
|
6560 |
msgstr "+ Legg til i Google Kalender"
|
6561 |
|
6562 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6563 |
msgid "+ iCal export"
|
6564 |
msgstr "+ iCal eksport"
|
6565 |
|
6566 |
+
#: app/libraries/notifications.php:752
|
6567 |
msgid "Yes"
|
6568 |
msgstr "Ja"
|
6569 |
|
6570 |
+
#: app/libraries/notifications.php:752
|
6571 |
msgid "No"
|
6572 |
msgstr "Nei"
|
6573 |
|
6574 |
+
#: app/libraries/skins.php:958
|
6575 |
msgid "Ignore month and years"
|
6576 |
msgstr "Ignorer måned og år"
|
6577 |
|
6649 |
msgid "Get Directions"
|
6650 |
msgstr "Få veibeskrivelse"
|
6651 |
|
6652 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6653 |
msgid "Share this event"
|
6654 |
msgstr "Del arrangementet"
|
6655 |
|
6676 |
msgid "Go to occurrence page"
|
6677 |
msgstr "Gå til gjentagende side"
|
6678 |
|
6679 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6680 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6681 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6682 |
msgid "Time"
|
6788 |
msgid "List"
|
6789 |
msgstr "Liste"
|
6790 |
|
6791 |
+
#: app/skins/masonry.php:238
|
6792 |
msgid "All"
|
6793 |
msgstr "Alle"
|
6794 |
|
6806 |
msgid "No Events"
|
6807 |
msgstr "Ingen hendelser"
|
6808 |
|
6809 |
+
#: app/skins/single.php:204
|
6810 |
msgid "Home"
|
6811 |
msgstr ""
|
6812 |
|
6813 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6814 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6815 |
#: app/skins/single/modern.php:256
|
6816 |
msgid "Sold out!"
|
6817 |
msgstr "Utsolgt!"
|
6818 |
|
6819 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6820 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6821 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6822 |
#: app/skins/single/modern.php:41
|
6823 |
msgid "Phone"
|
6824 |
msgstr "Telefon"
|
6825 |
|
6826 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6827 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6828 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6829 |
#: app/skins/single/modern.php:55
|
6830 |
msgid "Website"
|
6831 |
msgstr "Nettsted"
|
6832 |
|
6833 |
+
#: app/skins/single.php:912
|
6834 |
msgid "Speakers:"
|
6835 |
msgstr "Høyttalere:"
|
6836 |
|
languages/modern-events-calendar-lite-nl_NL.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-nl_NL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-08-
|
5 |
-
"PO-Revision-Date: 2019-08-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -335,7 +335,7 @@ msgstr ""
|
|
335 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
336 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
337 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
338 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
339 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
340 |
#: app/features/mec/styling.php:59
|
341 |
msgid "Mailchimp Integration"
|
@@ -401,9 +401,9 @@ msgstr "Geen evenementen gevonden in de prullenbak."
|
|
401 |
#: app/features/mec/meta_boxes/search_form.php:453
|
402 |
#: app/features/mec/meta_boxes/search_form.php:514
|
403 |
#: app/features/mec/meta_boxes/search_form.php:575
|
404 |
-
#: app/features/mec/settings.php:
|
405 |
-
#: app/libraries/main.php:
|
406 |
-
#: app/skins/single.php:
|
407 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
408 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
409 |
msgid "Category"
|
@@ -411,7 +411,7 @@ msgstr "Categorie"
|
|
411 |
|
412 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
413 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
414 |
-
#: app/libraries/main.php:
|
415 |
msgid "Categories"
|
416 |
msgstr "Categorieën"
|
417 |
|
@@ -486,13 +486,13 @@ msgstr "Evenement details"
|
|
486 |
#: app/features/events.php:322 app/features/events.php:3168
|
487 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
488 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
489 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
490 |
#: app/widgets/single.php:103
|
491 |
msgid "Event Cost"
|
492 |
msgstr "Evenements kosten"
|
493 |
|
494 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
495 |
-
#: app/libraries/main.php:
|
496 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
497 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
498 |
msgid "Cost"
|
@@ -509,7 +509,7 @@ msgstr ""
|
|
509 |
#: app/features/events.php:432 app/features/events.php:2250
|
510 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
511 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
512 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
513 |
#: app/modules/booking/steps/form.php:37
|
514 |
msgid "Name"
|
515 |
msgstr "Naam"
|
@@ -520,10 +520,10 @@ msgstr "Naam"
|
|
520 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
521 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
522 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
523 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
524 |
-
#: app/libraries/notifications.php:
|
525 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
526 |
-
#: app/skins/single.php:
|
527 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
528 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
529 |
msgid "Email"
|
@@ -669,14 +669,14 @@ msgstr ""
|
|
669 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
670 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
671 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
672 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
673 |
-
#: app/features/mec/settings.php:
|
674 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
675 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
676 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
677 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
678 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
679 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
680 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
681 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
682 |
#: app/skins/single/modern.php:133
|
@@ -889,9 +889,9 @@ msgstr "Elke doordeweekse dag"
|
|
889 |
|
890 |
#: app/features/events.php:1130 app/features/events.php:2340
|
891 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
892 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
893 |
#: app/modules/booking/steps/tickets.php:22
|
894 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
895 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
896 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
897 |
msgid "Date"
|
@@ -909,7 +909,7 @@ msgid "Day 1"
|
|
909 |
msgstr ""
|
910 |
|
911 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
912 |
-
#: app/skins/single.php:
|
913 |
msgid "Hourly Schedule"
|
914 |
msgstr "Urenschema"
|
915 |
|
@@ -948,14 +948,14 @@ msgstr "Titel"
|
|
948 |
#: app/features/events.php:2154 app/features/events.php:2196
|
949 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
950 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
951 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
952 |
-
#: app/libraries/main.php:
|
953 |
-
#: app/libraries/main.php:
|
954 |
-
#: app/libraries/main.php:
|
955 |
-
#: app/libraries/main.php:
|
956 |
-
#: app/libraries/main.php:
|
957 |
-
#: app/libraries/main.php:
|
958 |
-
#: app/libraries/main.php:
|
959 |
msgid "Remove"
|
960 |
msgstr "Verwijderen"
|
961 |
|
@@ -988,7 +988,7 @@ msgstr "Beschrijving"
|
|
988 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
989 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
990 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
991 |
-
#: app/features/speakers.php:60 app/libraries/main.php:
|
992 |
#: app/modules/speakers/details.php:18
|
993 |
msgid "Speakers"
|
994 |
msgstr ""
|
@@ -1005,7 +1005,7 @@ msgid "Event Links"
|
|
1005 |
msgstr "Evenement locatie"
|
1006 |
|
1007 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1008 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1009 |
#, fuzzy
|
1010 |
msgid "Event Link"
|
1011 |
msgstr "Evenement locatie"
|
@@ -1030,8 +1030,8 @@ msgid "URL Shortener"
|
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1033 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1034 |
-
#: app/skins/single.php:
|
1035 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1036 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1037 |
#: app/widgets/single.php:107
|
@@ -1097,7 +1097,7 @@ msgid "12"
|
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1100 |
-
#: app/libraries/main.php:
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Tickets"
|
1103 |
|
@@ -1171,8 +1171,8 @@ msgstr "Prijs label"
|
|
1171 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1172 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1174 |
-
#: app/features/mec/settings.php:
|
1175 |
-
#: app/libraries/skins.php:
|
1176 |
msgid "Label"
|
1177 |
msgstr "Label"
|
1178 |
|
@@ -1247,48 +1247,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1250 |
-
#: app/libraries/main.php:
|
1251 |
#, fuzzy
|
1252 |
#| msgid "Name"
|
1253 |
msgid "MEC Name"
|
1254 |
msgstr "Naam"
|
1255 |
|
1256 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1257 |
-
#: app/libraries/main.php:
|
1258 |
#, fuzzy
|
1259 |
#| msgid "Email"
|
1260 |
msgid "MEC Email"
|
1261 |
msgstr "Email"
|
1262 |
|
1263 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1264 |
-
#: app/libraries/main.php:
|
1265 |
msgid "Text"
|
1266 |
msgstr "Tekst"
|
1267 |
|
1268 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1269 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1270 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1271 |
-
#: app/features/speakers.php:249 app/libraries/main.php:
|
1272 |
msgid "Tel"
|
1273 |
msgstr "Tel"
|
1274 |
|
1275 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1276 |
-
#: app/libraries/main.php:
|
1277 |
msgid "File"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1281 |
-
#: app/libraries/main.php:
|
1282 |
msgid "Textarea"
|
1283 |
msgstr "Tekstgebied"
|
1284 |
|
1285 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1286 |
-
#: app/libraries/main.php:
|
1287 |
msgid "Checkboxes"
|
1288 |
msgstr "Checkboxes"
|
1289 |
|
1290 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1291 |
-
#: app/libraries/main.php:
|
1292 |
msgid "Radio Buttons"
|
1293 |
msgstr "Radio knoppen"
|
1294 |
|
@@ -1361,17 +1361,17 @@ msgstr "Radio knoppen"
|
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1364 |
-
#: app/features/mec/regform.php:277 app/libraries/main.php:
|
1365 |
msgid "Dropdown"
|
1366 |
msgstr "Dropdown"
|
1367 |
|
1368 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1369 |
-
#: app/libraries/main.php:
|
1370 |
msgid "Agreement"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1374 |
-
#: app/libraries/main.php:
|
1375 |
msgid "Paragraph"
|
1376 |
msgstr "Paragraaf"
|
1377 |
|
@@ -1409,10 +1409,10 @@ msgstr ""
|
|
1409 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1410 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1411 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1412 |
-
#: app/features/mec/settings.php:
|
1413 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1414 |
-
#: app/libraries/skins.php:
|
1415 |
-
#: app/skins/single.php:
|
1416 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1417 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1418 |
msgid "Location"
|
@@ -1431,11 +1431,11 @@ msgstr "Locatie"
|
|
1431 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1434 |
-
#: app/features/mec/settings.php:
|
1435 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1436 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1437 |
-
#: app/features/organizers.php:271 app/libraries/main.php:
|
1438 |
-
#: app/libraries/skins.php:
|
1439 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1440 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1441 |
#: app/skins/single/modern.php:31
|
@@ -1589,8 +1589,8 @@ msgstr "Verwijder afbeelding"
|
|
1589 |
|
1590 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1591 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1592 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1593 |
-
#: app/skins/single.php:
|
1594 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1595 |
#: app/skins/single/modern.php:214
|
1596 |
msgid "Labels"
|
@@ -1913,7 +1913,7 @@ msgstr ""
|
|
1913 |
|
1914 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1915 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1916 |
-
#: app/features/mec/settings.php:
|
1917 |
msgid "Checking ..."
|
1918 |
msgstr ""
|
1919 |
|
@@ -2287,7 +2287,7 @@ msgid "Featured"
|
|
2287 |
msgstr "Uitgelichte afbeelding"
|
2288 |
|
2289 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2290 |
-
#: app/libraries/main.php:
|
2291 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2292 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2293 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
@@ -2322,7 +2322,7 @@ msgstr ""
|
|
2322 |
|
2323 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2324 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2325 |
-
#: app/libraries/main.php:
|
2326 |
msgid "Locations"
|
2327 |
msgstr "Locaties"
|
2328 |
|
@@ -2429,7 +2429,7 @@ msgstr "Kies afbeelding"
|
|
2429 |
msgid "Don't show map in single event page"
|
2430 |
msgstr "Verberg de map op de pagina van het evenement"
|
2431 |
|
2432 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2433 |
#, fuzzy
|
2434 |
#| msgid "Search Locations"
|
2435 |
msgid "Other Locations"
|
@@ -2481,7 +2481,7 @@ msgstr "Support"
|
|
2481 |
|
2482 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2483 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2484 |
-
#: app/libraries/main.php:
|
2485 |
msgid "Organizers"
|
2486 |
msgstr "Organisatoren"
|
2487 |
|
@@ -2603,9 +2603,9 @@ msgstr ""
|
|
2603 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2604 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2605 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2606 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2607 |
-
#: app/features/mec/settings.php:
|
2608 |
-
#: app/features/mec/settings.php:
|
2609 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2610 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2611 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
@@ -2703,7 +2703,7 @@ msgstr "Alle locaties"
|
|
2703 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2704 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2705 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2706 |
-
#: app/skins/single.php:
|
2707 |
#, fuzzy
|
2708 |
#| msgid "featured event"
|
2709 |
msgid "Related Events"
|
@@ -2834,7 +2834,7 @@ msgstr ""
|
|
2834 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2835 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2836 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2837 |
-
#: app/libraries/notifications.php:
|
2838 |
msgid "Booking Reminder"
|
2839 |
msgstr ""
|
2840 |
|
@@ -3015,7 +3015,7 @@ msgstr ""
|
|
3015 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3016 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3017 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3018 |
-
#: app/features/mec/settings.php:
|
3019 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3020 |
msgid "Saved"
|
3021 |
msgstr "Opgeslagen"
|
@@ -3023,7 +3023,7 @@ msgstr "Opgeslagen"
|
|
3023 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3024 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3025 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3026 |
-
#: app/features/mec/settings.php:
|
3027 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3028 |
msgid "Settings Saved!"
|
3029 |
msgstr ""
|
@@ -3031,14 +3031,14 @@ msgstr ""
|
|
3031 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3032 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3033 |
#: app/features/mec/notifications.php:735
|
3034 |
-
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:
|
3035 |
-
#: app/features/mec/settings.php:
|
3036 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
3037 |
msgid "Verified"
|
3038 |
msgstr "Geverifieerd"
|
3039 |
|
3040 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3041 |
-
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:
|
3042 |
#: app/features/mec/single.php:502
|
3043 |
msgid "Please Refresh Page"
|
3044 |
msgstr ""
|
@@ -3987,9 +3987,9 @@ msgstr "Uitgeschakeld"
|
|
3987 |
#: app/features/mec/meta_boxes/search_form.php:474
|
3988 |
#: app/features/mec/meta_boxes/search_form.php:535
|
3989 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3990 |
-
#: app/features/mec/settings.php:
|
3991 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
3992 |
-
#: app/libraries/main.php:
|
3993 |
msgid "Speaker"
|
3994 |
msgstr ""
|
3995 |
|
@@ -4003,8 +4003,8 @@ msgstr ""
|
|
4003 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4004 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4005 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4006 |
-
#: app/features/mec/settings.php:
|
4007 |
-
#: app/libraries/skins.php:
|
4008 |
#, fuzzy
|
4009 |
#| msgid "Tags"
|
4010 |
msgid "Tag"
|
@@ -4088,12 +4088,12 @@ msgid "Show Google Maps on event page"
|
|
4088 |
msgstr "Laat Google Maps op evenementen pagina zien"
|
4089 |
|
4090 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4091 |
-
#: app/features/mec/settings.php:
|
4092 |
msgid "API Key"
|
4093 |
msgstr "API key"
|
4094 |
|
4095 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
4096 |
-
#: app/features/mec/settings.php:
|
4097 |
msgid "Required!"
|
4098 |
msgstr "Verplicht!"
|
4099 |
|
@@ -4702,7 +4702,7 @@ msgid ""
|
|
4702 |
msgstr ""
|
4703 |
|
4704 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4705 |
-
#: app/libraries/main.php:
|
4706 |
msgid "Weekdays"
|
4707 |
msgstr ""
|
4708 |
|
@@ -5016,61 +5016,80 @@ msgid ""
|
|
5016 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
-
#: app/features/mec/settings.php:
|
5020 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
#: app/features/mec/settings.php:
|
5024 |
msgid "Enable Mailchimp Integration"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
#: app/features/mec/settings.php:
|
5028 |
msgid "List ID"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
-
#: app/features/mec/settings.php:
|
5032 |
msgid "Subscription Status"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
-
#: app/features/mec/settings.php:
|
5036 |
msgid "Subscribe automatically"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: app/features/mec/settings.php:
|
5040 |
msgid "Subscribe by verification"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#: app/features/mec/settings.php:
|
5044 |
msgid ""
|
5045 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5046 |
"by mailchimp for subscription verification."
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#: app/features/mec/settings.php:
|
5050 |
#, fuzzy
|
5051 |
#| msgid "Filter Options"
|
5052 |
msgid "Upload Field Options"
|
5053 |
msgstr "Filter opties"
|
5054 |
|
5055 |
-
#: app/features/mec/settings.php:
|
5056 |
msgid "Mime types"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#: app/features/mec/settings.php:
|
5060 |
msgid "Split mime types with \",\"."
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#: app/features/mec/settings.php:
|
5064 |
msgid "Default: jpeg,jpg,png,pdf"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: app/features/mec/settings.php:
|
5068 |
#, fuzzy
|
5069 |
#| msgid "Maximum events"
|
5070 |
msgid "Maximum file size"
|
5071 |
msgstr "Mximum evenementen"
|
5072 |
|
5073 |
-
#: app/features/mec/settings.php:
|
5074 |
msgid "The unit is Megabyte \"MB\""
|
5075 |
msgstr ""
|
5076 |
|
@@ -5757,8 +5776,8 @@ msgstr "bijv. john@smith.com"
|
|
5757 |
msgid "eg. https://webnus.net"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5761 |
-
#: app/skins/single.php:
|
5762 |
msgid "Other Organizers"
|
5763 |
msgstr ""
|
5764 |
|
@@ -5777,7 +5796,7 @@ msgstr "Gelieve %s/%s om een uitgelichte afbeelding in te dienen."
|
|
5777 |
msgid "#"
|
5778 |
msgstr ""
|
5779 |
|
5780 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5781 |
msgid "Status"
|
5782 |
msgstr ""
|
5783 |
|
@@ -5795,7 +5814,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5795 |
msgstr ""
|
5796 |
|
5797 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5798 |
-
#: app/libraries/main.php:
|
5799 |
msgid "Ticket"
|
5800 |
msgstr "Ticket"
|
5801 |
|
@@ -5809,11 +5828,36 @@ msgstr "Verificatie"
|
|
5809 |
msgid "No bookings found!"
|
5810 |
msgstr "Geen boekingen gevonden!"
|
5811 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5812 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5813 |
#, fuzzy
|
5814 |
msgid "Search"
|
5815 |
msgstr "Zoek coupons"
|
5816 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5817 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5818 |
#: app/features/speakers.php:248
|
5819 |
#, fuzzy
|
@@ -5878,11 +5922,11 @@ msgstr ""
|
|
5878 |
msgid "%s Price"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
-
#: app/libraries/book.php:
|
5882 |
msgid "Discount"
|
5883 |
msgstr "Korting"
|
5884 |
|
5885 |
-
#: app/libraries/book.php:
|
5886 |
#: app/modules/booking/default.php:401
|
5887 |
msgid "Download Invoice"
|
5888 |
msgstr ""
|
@@ -5906,51 +5950,51 @@ msgctxt "plugin link"
|
|
5906 |
msgid "Upgrade"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
-
#: app/libraries/factory.php:
|
5910 |
msgid "day"
|
5911 |
msgstr "dag"
|
5912 |
|
5913 |
-
#: app/libraries/factory.php:
|
5914 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5915 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5916 |
msgid "days"
|
5917 |
msgstr "dagen"
|
5918 |
|
5919 |
-
#: app/libraries/factory.php:
|
5920 |
msgid "hour"
|
5921 |
msgstr "uur"
|
5922 |
|
5923 |
-
#: app/libraries/factory.php:
|
5924 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5925 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5926 |
msgid "hours"
|
5927 |
msgstr "uren"
|
5928 |
|
5929 |
-
#: app/libraries/factory.php:
|
5930 |
msgid "minute"
|
5931 |
msgstr "minuut"
|
5932 |
|
5933 |
-
#: app/libraries/factory.php:
|
5934 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5935 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5936 |
msgid "minutes"
|
5937 |
msgstr "minuten"
|
5938 |
|
5939 |
-
#: app/libraries/factory.php:
|
5940 |
msgid "second"
|
5941 |
msgstr "seconde"
|
5942 |
|
5943 |
-
#: app/libraries/factory.php:
|
5944 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
5945 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
5946 |
msgid "seconds"
|
5947 |
msgstr "secondes"
|
5948 |
|
5949 |
-
#: app/libraries/factory.php:
|
5950 |
msgid "MEC Single Sidebar"
|
5951 |
msgstr ""
|
5952 |
|
5953 |
-
#: app/libraries/factory.php:
|
5954 |
msgid "Custom sidebar for single and modal page of MEC."
|
5955 |
msgstr ""
|
5956 |
|
@@ -6016,31 +6060,31 @@ msgstr "Cover weergave"
|
|
6016 |
msgid "Slider View"
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6020 |
msgid "SU"
|
6021 |
msgstr "ZO"
|
6022 |
|
6023 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6024 |
msgid "MO"
|
6025 |
msgstr "MA"
|
6026 |
|
6027 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6028 |
msgid "TU"
|
6029 |
msgstr "DI"
|
6030 |
|
6031 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6032 |
msgid "WE"
|
6033 |
msgstr "WO"
|
6034 |
|
6035 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6036 |
msgid "TH"
|
6037 |
msgstr "DO"
|
6038 |
|
6039 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6040 |
msgid "FR"
|
6041 |
msgstr "VR"
|
6042 |
|
6043 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6044 |
msgid "SA"
|
6045 |
msgstr "ZA"
|
6046 |
|
@@ -6192,177 +6236,177 @@ msgstr "iCal exporteren gestopt!"
|
|
6192 |
msgid "Request is not valid."
|
6193 |
msgstr "Aanvraag is ongeldig!"
|
6194 |
|
6195 |
-
#: app/libraries/main.php:
|
6196 |
-
#: app/libraries/main.php:
|
6197 |
-
#: app/libraries/main.php:
|
6198 |
-
#: app/libraries/main.php:
|
6199 |
-
#: app/libraries/main.php:
|
6200 |
-
#: app/libraries/main.php:
|
6201 |
-
#: app/libraries/main.php:
|
6202 |
msgid "Sort"
|
6203 |
msgstr "Sorteren"
|
6204 |
|
6205 |
-
#: app/libraries/main.php:
|
6206 |
-
#: app/libraries/main.php:
|
6207 |
-
#: app/libraries/main.php:
|
6208 |
-
#: app/libraries/main.php:
|
6209 |
-
#: app/libraries/main.php:
|
6210 |
-
#: app/libraries/main.php:
|
6211 |
msgid "Required Field"
|
6212 |
msgstr "Verplicht veld"
|
6213 |
|
6214 |
-
#: app/libraries/main.php:
|
6215 |
-
#: app/libraries/main.php:
|
6216 |
-
#: app/libraries/main.php:
|
6217 |
-
#: app/libraries/main.php:
|
6218 |
-
#: app/libraries/main.php:
|
6219 |
-
#: app/libraries/main.php:
|
6220 |
msgid "Insert a label for this field"
|
6221 |
msgstr "Voer een label in voor dit veld"
|
6222 |
|
6223 |
-
#: app/libraries/main.php:
|
6224 |
msgid "HTML and shortcode are allowed."
|
6225 |
msgstr "HTML en shortcodes zijn toegestaan."
|
6226 |
|
6227 |
-
#: app/libraries/main.php:
|
6228 |
-
#: app/libraries/main.php:
|
6229 |
msgid "Option"
|
6230 |
msgstr "Optie"
|
6231 |
|
6232 |
-
#: app/libraries/main.php:
|
6233 |
#, php-format
|
6234 |
msgid "Instead of %s, the page title with a link will be show."
|
6235 |
msgstr ""
|
6236 |
|
6237 |
-
#: app/libraries/main.php:
|
6238 |
msgid "Agreement Page"
|
6239 |
msgstr ""
|
6240 |
|
6241 |
-
#: app/libraries/main.php:
|
6242 |
msgid "Checked by default"
|
6243 |
msgstr ""
|
6244 |
|
6245 |
-
#: app/libraries/main.php:
|
6246 |
msgid "Unchecked by default"
|
6247 |
msgstr ""
|
6248 |
|
6249 |
-
#: app/libraries/main.php:
|
6250 |
msgid "Insert a label for this option"
|
6251 |
msgstr "Voer een label in voor deze optie"
|
6252 |
|
6253 |
-
#: app/libraries/main.php:
|
6254 |
msgid "Free"
|
6255 |
msgstr "Gratis"
|
6256 |
|
6257 |
-
#: app/libraries/main.php:
|
6258 |
#, fuzzy
|
6259 |
#| msgid "M.E. Calendar"
|
6260 |
msgid "M.E. Calender"
|
6261 |
msgstr "M.E. Calendar"
|
6262 |
|
6263 |
-
#: app/libraries/main.php:
|
6264 |
#, php-format
|
6265 |
msgid "Copy of %s"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
-
#: app/libraries/main.php:
|
6269 |
msgid "Booked an event."
|
6270 |
msgstr ""
|
6271 |
|
6272 |
-
#: app/libraries/main.php:
|
6273 |
#, php-format
|
6274 |
msgid "%s booked %s event."
|
6275 |
msgstr ""
|
6276 |
|
6277 |
-
#: app/libraries/main.php:
|
6278 |
msgid "Taxonomies"
|
6279 |
msgstr ""
|
6280 |
|
6281 |
-
#: app/libraries/main.php:
|
6282 |
msgid "Category Plural Label"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
-
#: app/libraries/main.php:
|
6286 |
msgid "Category Singular Label"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
-
#: app/libraries/main.php:
|
6290 |
msgid "Label Plural Label"
|
6291 |
msgstr ""
|
6292 |
|
6293 |
-
#: app/libraries/main.php:
|
6294 |
msgid "Label Singular Label"
|
6295 |
msgstr ""
|
6296 |
|
6297 |
-
#: app/libraries/main.php:
|
6298 |
msgid "label"
|
6299 |
msgstr ""
|
6300 |
|
6301 |
-
#: app/libraries/main.php:
|
6302 |
msgid "Location Plural Label"
|
6303 |
msgstr ""
|
6304 |
|
6305 |
-
#: app/libraries/main.php:
|
6306 |
msgid "Location Singular Label"
|
6307 |
msgstr ""
|
6308 |
|
6309 |
-
#: app/libraries/main.php:
|
6310 |
msgid "Organizer Plural Label"
|
6311 |
msgstr ""
|
6312 |
|
6313 |
-
#: app/libraries/main.php:
|
6314 |
msgid "Organizer Singular Label"
|
6315 |
msgstr ""
|
6316 |
|
6317 |
-
#: app/libraries/main.php:
|
6318 |
#, fuzzy
|
6319 |
#| msgid "Search Labels"
|
6320 |
msgid "Speaker Plural Label"
|
6321 |
msgstr "Zoek labels"
|
6322 |
|
6323 |
-
#: app/libraries/main.php:
|
6324 |
#, fuzzy
|
6325 |
#| msgid "Popular Labels"
|
6326 |
msgid "Speaker Singular Label"
|
6327 |
msgstr "Populaire labels"
|
6328 |
|
6329 |
-
#: app/libraries/main.php:
|
6330 |
msgid "Sunday abbreviation"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
-
#: app/libraries/main.php:
|
6334 |
msgid "Monday abbreviation"
|
6335 |
msgstr ""
|
6336 |
|
6337 |
-
#: app/libraries/main.php:
|
6338 |
msgid "Tuesday abbreviation"
|
6339 |
msgstr ""
|
6340 |
|
6341 |
-
#: app/libraries/main.php:
|
6342 |
msgid "Wednesday abbreviation"
|
6343 |
msgstr ""
|
6344 |
|
6345 |
-
#: app/libraries/main.php:
|
6346 |
msgid "Thursday abbreviation"
|
6347 |
msgstr ""
|
6348 |
|
6349 |
-
#: app/libraries/main.php:
|
6350 |
msgid "Friday abbreviation"
|
6351 |
msgstr ""
|
6352 |
|
6353 |
-
#: app/libraries/main.php:
|
6354 |
msgid "Saturday abbreviation"
|
6355 |
msgstr ""
|
6356 |
|
6357 |
-
#: app/libraries/main.php:
|
6358 |
msgid "Others"
|
6359 |
msgstr ""
|
6360 |
|
6361 |
-
#: app/libraries/main.php:
|
6362 |
msgid "Booking Success Message"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
-
#: app/libraries/main.php:
|
6366 |
msgid ""
|
6367 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6368 |
"needed, please check your email."
|
@@ -6370,17 +6414,17 @@ msgstr ""
|
|
6370 |
"Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
|
6371 |
"nodig zijn, controleer uw email alstublieft."
|
6372 |
|
6373 |
-
#: app/libraries/main.php:
|
6374 |
msgid "Register Button"
|
6375 |
msgstr ""
|
6376 |
|
6377 |
-
#: app/libraries/main.php:
|
6378 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6379 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6380 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6381 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6382 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6383 |
-
#: app/skins/single.php:
|
6384 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6385 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6386 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6391,11 +6435,11 @@ msgstr ""
|
|
6391 |
msgid "REGISTER"
|
6392 |
msgstr "REGISTREREN"
|
6393 |
|
6394 |
-
#: app/libraries/main.php:
|
6395 |
msgid "View Detail Button"
|
6396 |
msgstr ""
|
6397 |
|
6398 |
-
#: app/libraries/main.php:
|
6399 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6400 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6401 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6406,60 +6450,60 @@ msgstr ""
|
|
6406 |
msgid "View Detail"
|
6407 |
msgstr "Bekijk detail"
|
6408 |
|
6409 |
-
#: app/libraries/main.php:
|
6410 |
msgid "Event Detail Button"
|
6411 |
msgstr ""
|
6412 |
|
6413 |
-
#: app/libraries/main.php:
|
6414 |
#, fuzzy
|
6415 |
msgid "Event Detail"
|
6416 |
msgstr "Evenement details"
|
6417 |
|
6418 |
-
#: app/libraries/main.php:
|
6419 |
msgid "More Info Link"
|
6420 |
msgstr ""
|
6421 |
|
6422 |
-
#: app/libraries/main.php:
|
6423 |
msgid "Ticket (Singular)"
|
6424 |
msgstr ""
|
6425 |
|
6426 |
-
#: app/libraries/main.php:
|
6427 |
msgid "Tickets (Plural)"
|
6428 |
msgstr ""
|
6429 |
|
6430 |
-
#: app/libraries/main.php:
|
6431 |
msgid "EventON"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
-
#: app/libraries/main.php:
|
6435 |
msgid "The Events Calendar"
|
6436 |
msgstr ""
|
6437 |
|
6438 |
-
#: app/libraries/main.php:
|
6439 |
msgid "Events Schedule WP Plugin"
|
6440 |
msgstr ""
|
6441 |
|
6442 |
-
#: app/libraries/main.php:
|
6443 |
msgid "Calendarize It"
|
6444 |
msgstr ""
|
6445 |
|
6446 |
-
#: app/libraries/main.php:
|
6447 |
msgid "Confirmed"
|
6448 |
msgstr "Bevestigd"
|
6449 |
|
6450 |
-
#: app/libraries/main.php:
|
6451 |
msgid "Rejected"
|
6452 |
msgstr "Afgewezen"
|
6453 |
|
6454 |
-
#: app/libraries/main.php:
|
6455 |
msgid "Pending"
|
6456 |
msgstr "In afwachting"
|
6457 |
|
6458 |
-
#: app/libraries/main.php:
|
6459 |
msgid "Waiting"
|
6460 |
msgstr "In afwachting"
|
6461 |
|
6462 |
-
#: app/libraries/main.php:
|
6463 |
msgid "Skin controller does not exist."
|
6464 |
msgstr "Skin controller bestaat niet."
|
6465 |
|
@@ -6467,57 +6511,49 @@ msgstr "Skin controller bestaat niet."
|
|
6467 |
msgid "Please verify your email."
|
6468 |
msgstr "Controleer uw email."
|
6469 |
|
6470 |
-
#: app/libraries/notifications.php:
|
6471 |
msgid "Your booking is received."
|
6472 |
msgstr ""
|
6473 |
|
6474 |
-
#: app/libraries/notifications.php:
|
6475 |
msgid "Your booking is confirmed."
|
6476 |
msgstr "Uw boeking is bevestigd."
|
6477 |
|
6478 |
-
#: app/libraries/notifications.php:
|
6479 |
#, fuzzy
|
6480 |
#| msgid "Your booking cannot be canceled."
|
6481 |
msgid "booking canceled."
|
6482 |
msgstr "Uw boeking kan niet worden geannuleerd."
|
6483 |
|
6484 |
-
#: app/libraries/notifications.php:
|
6485 |
msgid "A new booking is received."
|
6486 |
msgstr "Een nieuwe boeking ontvangen."
|
6487 |
|
6488 |
-
#: app/libraries/notifications.php:
|
6489 |
msgid "A new event is added."
|
6490 |
msgstr "Een nieuw evenement is toegevoegd."
|
6491 |
|
6492 |
-
#: app/libraries/notifications.php:
|
6493 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6494 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6495 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6496 |
-
#: app/skins/single/modern.php:184
|
6497 |
-
msgid "All of the day"
|
6498 |
-
msgstr "Hele dag"
|
6499 |
-
|
6500 |
-
#: app/libraries/notifications.php:611
|
6501 |
msgid "to"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
-
#: app/libraries/notifications.php:
|
6505 |
msgid "+ Add to Google Calendar"
|
6506 |
msgstr "+ Aan Google Kalender toevoegen"
|
6507 |
|
6508 |
-
#: app/libraries/notifications.php:
|
6509 |
msgid "+ iCal export"
|
6510 |
msgstr "+ iCal export"
|
6511 |
|
6512 |
-
#: app/libraries/notifications.php:
|
6513 |
msgid "Yes"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
-
#: app/libraries/notifications.php:
|
6517 |
msgid "No"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
-
#: app/libraries/skins.php:
|
6521 |
msgid "Ignore month and years"
|
6522 |
msgstr ""
|
6523 |
|
@@ -6595,7 +6631,7 @@ msgstr "Adres ..."
|
|
6595 |
msgid "Get Directions"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6599 |
msgid "Share this event"
|
6600 |
msgstr "Deel dit evenement"
|
6601 |
|
@@ -6622,7 +6658,7 @@ msgstr ""
|
|
6622 |
msgid "Go to occurrence page"
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6626 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6627 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6628 |
msgid "Time"
|
@@ -6731,7 +6767,7 @@ msgstr "Geen evenement"
|
|
6731 |
msgid "List"
|
6732 |
msgstr "Lijstweergave"
|
6733 |
|
6734 |
-
#: app/skins/masonry.php:
|
6735 |
msgid "All"
|
6736 |
msgstr ""
|
6737 |
|
@@ -6749,31 +6785,31 @@ msgstr "Evenementen in %s"
|
|
6749 |
msgid "No Events"
|
6750 |
msgstr "Geen evenementen"
|
6751 |
|
6752 |
-
#: app/skins/single.php:
|
6753 |
msgid "Home"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: app/skins/single.php:
|
6757 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6758 |
#: app/skins/single/modern.php:256
|
6759 |
msgid "Sold out!"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
-
#: app/skins/single.php:
|
6763 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6764 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6765 |
#: app/skins/single/modern.php:41
|
6766 |
msgid "Phone"
|
6767 |
msgstr "Telefoon"
|
6768 |
|
6769 |
-
#: app/skins/single.php:
|
6770 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6771 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6772 |
#: app/skins/single/modern.php:55
|
6773 |
msgid "Website"
|
6774 |
msgstr "Website"
|
6775 |
|
6776 |
-
#: app/skins/single.php:
|
6777 |
#, fuzzy
|
6778 |
msgid "Speakers:"
|
6779 |
msgstr "Zoek locaties"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-13 16:46+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
335 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
336 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
337 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
338 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
339 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
340 |
#: app/features/mec/styling.php:59
|
341 |
msgid "Mailchimp Integration"
|
401 |
#: app/features/mec/meta_boxes/search_form.php:453
|
402 |
#: app/features/mec/meta_boxes/search_form.php:514
|
403 |
#: app/features/mec/meta_boxes/search_form.php:575
|
404 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
405 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
406 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
407 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
408 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
409 |
msgid "Category"
|
411 |
|
412 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
413 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
414 |
+
#: app/libraries/main.php:4508
|
415 |
msgid "Categories"
|
416 |
msgstr "Categorieën"
|
417 |
|
486 |
#: app/features/events.php:322 app/features/events.php:3168
|
487 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
488 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
489 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
490 |
#: app/widgets/single.php:103
|
491 |
msgid "Event Cost"
|
492 |
msgstr "Evenements kosten"
|
493 |
|
494 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
495 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
496 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
497 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
498 |
msgid "Cost"
|
509 |
#: app/features/events.php:432 app/features/events.php:2250
|
510 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
511 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
512 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
513 |
#: app/modules/booking/steps/form.php:37
|
514 |
msgid "Name"
|
515 |
msgstr "Naam"
|
520 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
521 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
522 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
523 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
524 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
525 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
526 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
527 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
528 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
529 |
msgid "Email"
|
669 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
670 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
671 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
672 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
673 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
674 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
675 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
676 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
677 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
678 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
679 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
680 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
681 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
682 |
#: app/skins/single/modern.php:133
|
889 |
|
890 |
#: app/features/events.php:1130 app/features/events.php:2340
|
891 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
892 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
893 |
#: app/modules/booking/steps/tickets.php:22
|
894 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
895 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
896 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
897 |
msgid "Date"
|
909 |
msgstr ""
|
910 |
|
911 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
912 |
+
#: app/skins/single.php:898
|
913 |
msgid "Hourly Schedule"
|
914 |
msgstr "Urenschema"
|
915 |
|
948 |
#: app/features/events.php:2154 app/features/events.php:2196
|
949 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
950 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
951 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
952 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
953 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
954 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
955 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
956 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
957 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
958 |
+
#: app/libraries/main.php:2612
|
959 |
msgid "Remove"
|
960 |
msgstr "Verwijderen"
|
961 |
|
988 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
989 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
990 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
991 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4516
|
992 |
#: app/modules/speakers/details.php:18
|
993 |
msgid "Speakers"
|
994 |
msgstr ""
|
1005 |
msgstr "Evenement locatie"
|
1006 |
|
1007 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1008 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4539
|
1009 |
#, fuzzy
|
1010 |
msgid "Event Link"
|
1011 |
msgstr "Evenement locatie"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1033 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4540
|
1034 |
+
#: app/skins/single.php:627 app/skins/single/default.php:118
|
1035 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1036 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1037 |
#: app/widgets/single.php:107
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1100 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Tickets"
|
1103 |
|
1171 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1172 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1174 |
+
#: app/features/mec/settings.php:937 app/features/mec/single.php:408
|
1175 |
+
#: app/libraries/skins.php:937
|
1176 |
msgid "Label"
|
1177 |
msgstr "Label"
|
1178 |
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1250 |
+
#: app/libraries/main.php:2202
|
1251 |
#, fuzzy
|
1252 |
#| msgid "Name"
|
1253 |
msgid "MEC Name"
|
1254 |
msgstr "Naam"
|
1255 |
|
1256 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1257 |
+
#: app/libraries/main.php:2231
|
1258 |
#, fuzzy
|
1259 |
#| msgid "Email"
|
1260 |
msgid "MEC Email"
|
1261 |
msgstr "Email"
|
1262 |
|
1263 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1264 |
+
#: app/libraries/main.php:2172
|
1265 |
msgid "Text"
|
1266 |
msgstr "Tekst"
|
1267 |
|
1268 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1269 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1270 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1271 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2348
|
1272 |
msgid "Tel"
|
1273 |
msgstr "Tel"
|
1274 |
|
1275 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1276 |
+
#: app/libraries/main.php:2290
|
1277 |
msgid "File"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1281 |
+
#: app/libraries/main.php:2377
|
1282 |
msgid "Textarea"
|
1283 |
msgstr "Tekstgebied"
|
1284 |
|
1285 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1286 |
+
#: app/libraries/main.php:2430
|
1287 |
msgid "Checkboxes"
|
1288 |
msgstr "Checkboxes"
|
1289 |
|
1290 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1291 |
+
#: app/libraries/main.php:2474
|
1292 |
msgid "Radio Buttons"
|
1293 |
msgstr "Radio knoppen"
|
1294 |
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1364 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2518
|
1365 |
msgid "Dropdown"
|
1366 |
msgstr "Dropdown"
|
1367 |
|
1368 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1369 |
+
#: app/libraries/main.php:2565
|
1370 |
msgid "Agreement"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1374 |
+
#: app/libraries/main.php:2406
|
1375 |
msgid "Paragraph"
|
1376 |
msgstr "Paragraaf"
|
1377 |
|
1409 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1410 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1411 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1412 |
+
#: app/features/mec/settings.php:911 app/features/mec/single.php:398
|
1413 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1414 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1415 |
+
#: app/skins/single.php:875 app/skins/single/default.php:154
|
1416 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1417 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1418 |
msgid "Location"
|
1431 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1434 |
+
#: app/features/mec/settings.php:917 app/features/mec/single.php:394
|
1435 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1436 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1437 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4515
|
1438 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
1439 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1440 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1441 |
#: app/skins/single/modern.php:31
|
1589 |
|
1590 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1591 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1592 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
|
1593 |
+
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1594 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1595 |
#: app/skins/single/modern.php:214
|
1596 |
msgid "Labels"
|
1913 |
|
1914 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1915 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1916 |
+
#: app/features/mec/settings.php:1103 app/features/mec/single.php:480
|
1917 |
msgid "Checking ..."
|
1918 |
msgstr ""
|
1919 |
|
2287 |
msgstr "Uitgelichte afbeelding"
|
2288 |
|
2289 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2290 |
+
#: app/libraries/main.php:4756 app/skins/agenda/render.php:41
|
2291 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2292 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2293 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2322 |
|
2323 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2324 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2325 |
+
#: app/libraries/main.php:4512
|
2326 |
msgid "Locations"
|
2327 |
msgstr "Locaties"
|
2328 |
|
2429 |
msgid "Don't show map in single event page"
|
2430 |
msgstr "Verberg de map op de pagina van het evenement"
|
2431 |
|
2432 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2433 |
#, fuzzy
|
2434 |
#| msgid "Search Locations"
|
2435 |
msgid "Other Locations"
|
2481 |
|
2482 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2483 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2484 |
+
#: app/libraries/main.php:4514
|
2485 |
msgid "Organizers"
|
2486 |
msgstr "Organisatoren"
|
2487 |
|
2603 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2604 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2605 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2606 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
|
2607 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2608 |
+
#: app/features/mec/settings.php:1134 app/features/mec/single.php:14
|
2609 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2610 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2611 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2703 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2704 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2705 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2706 |
+
#: app/skins/single.php:162
|
2707 |
#, fuzzy
|
2708 |
#| msgid "featured event"
|
2709 |
msgid "Related Events"
|
2834 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2835 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2836 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2837 |
+
#: app/libraries/notifications.php:405
|
2838 |
msgid "Booking Reminder"
|
2839 |
msgstr ""
|
2840 |
|
3015 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3016 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3017 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3018 |
+
#: app/features/mec/settings.php:1098 app/features/mec/single.php:475
|
3019 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3020 |
msgid "Saved"
|
3021 |
msgstr "Opgeslagen"
|
3023 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3024 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3025 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3026 |
+
#: app/features/mec/settings.php:1099 app/features/mec/single.php:476
|
3027 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3028 |
msgid "Settings Saved!"
|
3029 |
msgstr ""
|
3031 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3032 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3033 |
#: app/features/mec/notifications.php:735
|
3034 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
|
3035 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
3036 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
3037 |
msgid "Verified"
|
3038 |
msgstr "Geverifieerd"
|
3039 |
|
3040 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3041 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
|
3042 |
#: app/features/mec/single.php:502
|
3043 |
msgid "Please Refresh Page"
|
3044 |
msgstr ""
|
3987 |
#: app/features/mec/meta_boxes/search_form.php:474
|
3988 |
#: app/features/mec/meta_boxes/search_form.php:535
|
3989 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3990 |
+
#: app/features/mec/settings.php:924 app/features/mec/single.php:403
|
3991 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
3992 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
3993 |
msgid "Speaker"
|
3994 |
msgstr ""
|
3995 |
|
4003 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4004 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4005 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4006 |
+
#: app/features/mec/settings.php:931 app/features/mec/single.php:412
|
4007 |
+
#: app/libraries/skins.php:911
|
4008 |
#, fuzzy
|
4009 |
#| msgid "Tags"
|
4010 |
msgid "Tag"
|
4088 |
msgstr "Laat Google Maps op evenementen pagina zien"
|
4089 |
|
4090 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4091 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
4092 |
msgid "API Key"
|
4093 |
msgstr "API key"
|
4094 |
|
4095 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
4096 |
+
#: app/features/mec/settings.php:980
|
4097 |
msgid "Required!"
|
4098 |
msgstr "Verplicht!"
|
4099 |
|
4702 |
msgstr ""
|
4703 |
|
4704 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4705 |
+
#: app/libraries/main.php:4521
|
4706 |
msgid "Weekdays"
|
4707 |
msgstr ""
|
4708 |
|
5016 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: app/features/mec/settings.php:890
|
5020 |
+
msgid "Ajax Live mode"
|
5021 |
+
msgstr ""
|
5022 |
+
|
5023 |
+
#: app/features/mec/settings.php:894
|
5024 |
+
msgid "Ajax mode"
|
5025 |
+
msgstr ""
|
5026 |
+
|
5027 |
+
#: app/features/mec/settings.php:895
|
5028 |
+
msgid ""
|
5029 |
+
"if you enable this option, search button disappeared and to use this "
|
5030 |
+
"feature, text input field must be enabled."
|
5031 |
+
msgstr ""
|
5032 |
+
|
5033 |
+
#: app/features/mec/settings.php:901
|
5034 |
+
#, fuzzy
|
5035 |
+
msgid "Search bar fields"
|
5036 |
+
msgstr "Zoek coupons"
|
5037 |
+
|
5038 |
+
#: app/features/mec/settings.php:943
|
5039 |
+
msgid "Text input"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
+
#: app/features/mec/settings.php:956
|
5043 |
msgid "Enable Mailchimp Integration"
|
5044 |
msgstr ""
|
5045 |
|
5046 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
5047 |
msgid "List ID"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
5051 |
msgid "Subscription Status"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
+
#: app/features/mec/settings.php:990
|
5055 |
msgid "Subscribe automatically"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
+
#: app/features/mec/settings.php:991
|
5059 |
msgid "Subscribe by verification"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
+
#: app/features/mec/settings.php:996
|
5063 |
msgid ""
|
5064 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5065 |
"by mailchimp for subscription verification."
|
5066 |
msgstr ""
|
5067 |
|
5068 |
+
#: app/features/mec/settings.php:1008
|
5069 |
#, fuzzy
|
5070 |
#| msgid "Filter Options"
|
5071 |
msgid "Upload Field Options"
|
5072 |
msgstr "Filter opties"
|
5073 |
|
5074 |
+
#: app/features/mec/settings.php:1010
|
5075 |
msgid "Mime types"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: app/features/mec/settings.php:1014
|
5079 |
msgid "Split mime types with \",\"."
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: app/features/mec/settings.php:1014
|
5083 |
msgid "Default: jpeg,jpg,png,pdf"
|
5084 |
msgstr ""
|
5085 |
|
5086 |
+
#: app/features/mec/settings.php:1017
|
5087 |
#, fuzzy
|
5088 |
#| msgid "Maximum events"
|
5089 |
msgid "Maximum file size"
|
5090 |
msgstr "Mximum evenementen"
|
5091 |
|
5092 |
+
#: app/features/mec/settings.php:1021
|
5093 |
msgid "The unit is Megabyte \"MB\""
|
5094 |
msgstr ""
|
5095 |
|
5776 |
msgid "eg. https://webnus.net"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5780 |
+
#: app/skins/single.php:813
|
5781 |
msgid "Other Organizers"
|
5782 |
msgstr ""
|
5783 |
|
5796 |
msgid "#"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5800 |
msgid "Status"
|
5801 |
msgstr ""
|
5802 |
|
5814 |
msgstr ""
|
5815 |
|
5816 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5817 |
+
#: app/libraries/main.php:4543
|
5818 |
msgid "Ticket"
|
5819 |
msgstr "Ticket"
|
5820 |
|
5828 |
msgid "No bookings found!"
|
5829 |
msgstr "Geen boekingen gevonden!"
|
5830 |
|
5831 |
+
#: app/features/search.php:90
|
5832 |
+
msgid "Please enter at least 3 characters and try again"
|
5833 |
+
msgstr ""
|
5834 |
+
|
5835 |
+
#: app/features/search_bar/search_bar.php:26
|
5836 |
+
msgid "Please enter at least 3 characters"
|
5837 |
+
msgstr ""
|
5838 |
+
|
5839 |
#: app/features/search_bar/search_bar.php:28
|
5840 |
+
msgid "Search results will show here"
|
5841 |
+
msgstr ""
|
5842 |
+
|
5843 |
+
#: app/features/search_bar/search_bar.php:39
|
5844 |
#, fuzzy
|
5845 |
msgid "Search"
|
5846 |
msgstr "Zoek coupons"
|
5847 |
|
5848 |
+
#: app/features/search_bar/search_noresult.php:1
|
5849 |
+
msgid "No search result."
|
5850 |
+
msgstr ""
|
5851 |
+
|
5852 |
+
#: app/features/search_bar/search_result.php:11
|
5853 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5854 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5855 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5856 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5857 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5858 |
+
msgid "All of the day"
|
5859 |
+
msgstr "Hele dag"
|
5860 |
+
|
5861 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5862 |
#: app/features/speakers.php:248
|
5863 |
#, fuzzy
|
5922 |
msgid "%s Price"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
+
#: app/libraries/book.php:539
|
5926 |
msgid "Discount"
|
5927 |
msgstr "Korting"
|
5928 |
|
5929 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
5930 |
#: app/modules/booking/default.php:401
|
5931 |
msgid "Download Invoice"
|
5932 |
msgstr ""
|
5950 |
msgid "Upgrade"
|
5951 |
msgstr ""
|
5952 |
|
5953 |
+
#: app/libraries/factory.php:333
|
5954 |
msgid "day"
|
5955 |
msgstr "dag"
|
5956 |
|
5957 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
5958 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5959 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5960 |
msgid "days"
|
5961 |
msgstr "dagen"
|
5962 |
|
5963 |
+
#: app/libraries/factory.php:335
|
5964 |
msgid "hour"
|
5965 |
msgstr "uur"
|
5966 |
|
5967 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
5968 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5969 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5970 |
msgid "hours"
|
5971 |
msgstr "uren"
|
5972 |
|
5973 |
+
#: app/libraries/factory.php:337
|
5974 |
msgid "minute"
|
5975 |
msgstr "minuut"
|
5976 |
|
5977 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
5978 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5979 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5980 |
msgid "minutes"
|
5981 |
msgstr "minuten"
|
5982 |
|
5983 |
+
#: app/libraries/factory.php:339
|
5984 |
msgid "second"
|
5985 |
msgstr "seconde"
|
5986 |
|
5987 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
5988 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
5989 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
5990 |
msgid "seconds"
|
5991 |
msgstr "secondes"
|
5992 |
|
5993 |
+
#: app/libraries/factory.php:383
|
5994 |
msgid "MEC Single Sidebar"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
+
#: app/libraries/factory.php:384
|
5998 |
msgid "Custom sidebar for single and modal page of MEC."
|
5999 |
msgstr ""
|
6000 |
|
6060 |
msgid "Slider View"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
6064 |
msgid "SU"
|
6065 |
msgstr "ZO"
|
6066 |
|
6067 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
6068 |
msgid "MO"
|
6069 |
msgstr "MA"
|
6070 |
|
6071 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
6072 |
msgid "TU"
|
6073 |
msgstr "DI"
|
6074 |
|
6075 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
6076 |
msgid "WE"
|
6077 |
msgstr "WO"
|
6078 |
|
6079 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
6080 |
msgid "TH"
|
6081 |
msgstr "DO"
|
6082 |
|
6083 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
6084 |
msgid "FR"
|
6085 |
msgstr "VR"
|
6086 |
|
6087 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
6088 |
msgid "SA"
|
6089 |
msgstr "ZA"
|
6090 |
|
6236 |
msgid "Request is not valid."
|
6237 |
msgstr "Aanvraag is ongeldig!"
|
6238 |
|
6239 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
6240 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
6241 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
6242 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
6243 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
6244 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
6245 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
6246 |
msgid "Sort"
|
6247 |
msgstr "Sorteren"
|
6248 |
|
6249 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
6250 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
6251 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
6252 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
6253 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
6254 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
6255 |
msgid "Required Field"
|
6256 |
msgstr "Verplicht veld"
|
6257 |
|
6258 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
6259 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
6260 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
6261 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
6262 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
6263 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
6264 |
msgid "Insert a label for this field"
|
6265 |
msgstr "Voer een label in voor dit veld"
|
6266 |
|
6267 |
+
#: app/libraries/main.php:2411
|
6268 |
msgid "HTML and shortcode are allowed."
|
6269 |
msgstr "HTML en shortcodes zijn toegestaan."
|
6270 |
|
6271 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
6272 |
+
#: app/libraries/main.php:2542
|
6273 |
msgid "Option"
|
6274 |
msgstr "Optie"
|
6275 |
|
6276 |
+
#: app/libraries/main.php:2576
|
6277 |
#, php-format
|
6278 |
msgid "Instead of %s, the page title with a link will be show."
|
6279 |
msgstr ""
|
6280 |
|
6281 |
+
#: app/libraries/main.php:2578
|
6282 |
msgid "Agreement Page"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
+
#: app/libraries/main.php:2589
|
6286 |
msgid "Checked by default"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
+
#: app/libraries/main.php:2590
|
6290 |
msgid "Unchecked by default"
|
6291 |
msgstr ""
|
6292 |
|
6293 |
+
#: app/libraries/main.php:2613
|
6294 |
msgid "Insert a label for this option"
|
6295 |
msgstr "Voer een label in voor deze optie"
|
6296 |
|
6297 |
+
#: app/libraries/main.php:2628
|
6298 |
msgid "Free"
|
6299 |
msgstr "Gratis"
|
6300 |
|
6301 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6302 |
#, fuzzy
|
6303 |
#| msgid "M.E. Calendar"
|
6304 |
msgid "M.E. Calender"
|
6305 |
msgstr "M.E. Calendar"
|
6306 |
|
6307 |
+
#: app/libraries/main.php:3349
|
6308 |
#, php-format
|
6309 |
msgid "Copy of %s"
|
6310 |
msgstr ""
|
6311 |
|
6312 |
+
#: app/libraries/main.php:4022
|
6313 |
msgid "Booked an event."
|
6314 |
msgstr ""
|
6315 |
|
6316 |
+
#: app/libraries/main.php:4063
|
6317 |
#, php-format
|
6318 |
msgid "%s booked %s event."
|
6319 |
msgstr ""
|
6320 |
|
6321 |
+
#: app/libraries/main.php:4506
|
6322 |
msgid "Taxonomies"
|
6323 |
msgstr ""
|
6324 |
|
6325 |
+
#: app/libraries/main.php:4508
|
6326 |
msgid "Category Plural Label"
|
6327 |
msgstr ""
|
6328 |
|
6329 |
+
#: app/libraries/main.php:4509
|
6330 |
msgid "Category Singular Label"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
+
#: app/libraries/main.php:4510
|
6334 |
msgid "Label Plural Label"
|
6335 |
msgstr ""
|
6336 |
|
6337 |
+
#: app/libraries/main.php:4511
|
6338 |
msgid "Label Singular Label"
|
6339 |
msgstr ""
|
6340 |
|
6341 |
+
#: app/libraries/main.php:4511
|
6342 |
msgid "label"
|
6343 |
msgstr ""
|
6344 |
|
6345 |
+
#: app/libraries/main.php:4512
|
6346 |
msgid "Location Plural Label"
|
6347 |
msgstr ""
|
6348 |
|
6349 |
+
#: app/libraries/main.php:4513
|
6350 |
msgid "Location Singular Label"
|
6351 |
msgstr ""
|
6352 |
|
6353 |
+
#: app/libraries/main.php:4514
|
6354 |
msgid "Organizer Plural Label"
|
6355 |
msgstr ""
|
6356 |
|
6357 |
+
#: app/libraries/main.php:4515
|
6358 |
msgid "Organizer Singular Label"
|
6359 |
msgstr ""
|
6360 |
|
6361 |
+
#: app/libraries/main.php:4516
|
6362 |
#, fuzzy
|
6363 |
#| msgid "Search Labels"
|
6364 |
msgid "Speaker Plural Label"
|
6365 |
msgstr "Zoek labels"
|
6366 |
|
6367 |
+
#: app/libraries/main.php:4517
|
6368 |
#, fuzzy
|
6369 |
#| msgid "Popular Labels"
|
6370 |
msgid "Speaker Singular Label"
|
6371 |
msgstr "Populaire labels"
|
6372 |
|
6373 |
+
#: app/libraries/main.php:4523
|
6374 |
msgid "Sunday abbreviation"
|
6375 |
msgstr ""
|
6376 |
|
6377 |
+
#: app/libraries/main.php:4524
|
6378 |
msgid "Monday abbreviation"
|
6379 |
msgstr ""
|
6380 |
|
6381 |
+
#: app/libraries/main.php:4525
|
6382 |
msgid "Tuesday abbreviation"
|
6383 |
msgstr ""
|
6384 |
|
6385 |
+
#: app/libraries/main.php:4526
|
6386 |
msgid "Wednesday abbreviation"
|
6387 |
msgstr ""
|
6388 |
|
6389 |
+
#: app/libraries/main.php:4527
|
6390 |
msgid "Thursday abbreviation"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
+
#: app/libraries/main.php:4528
|
6394 |
msgid "Friday abbreviation"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
+
#: app/libraries/main.php:4529
|
6398 |
msgid "Saturday abbreviation"
|
6399 |
msgstr ""
|
6400 |
|
6401 |
+
#: app/libraries/main.php:4533
|
6402 |
msgid "Others"
|
6403 |
msgstr ""
|
6404 |
|
6405 |
+
#: app/libraries/main.php:4535
|
6406 |
msgid "Booking Success Message"
|
6407 |
msgstr ""
|
6408 |
|
6409 |
+
#: app/libraries/main.php:4535
|
6410 |
msgid ""
|
6411 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6412 |
"needed, please check your email."
|
6414 |
"Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
|
6415 |
"nodig zijn, controleer uw email alstublieft."
|
6416 |
|
6417 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6418 |
msgid "Register Button"
|
6419 |
msgstr ""
|
6420 |
|
6421 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6422 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6423 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6424 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6425 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6426 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6427 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6428 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6429 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6430 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6435 |
msgid "REGISTER"
|
6436 |
msgstr "REGISTREREN"
|
6437 |
|
6438 |
+
#: app/libraries/main.php:4537
|
6439 |
msgid "View Detail Button"
|
6440 |
msgstr ""
|
6441 |
|
6442 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6443 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6444 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6445 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6450 |
msgid "View Detail"
|
6451 |
msgstr "Bekijk detail"
|
6452 |
|
6453 |
+
#: app/libraries/main.php:4538
|
6454 |
msgid "Event Detail Button"
|
6455 |
msgstr ""
|
6456 |
|
6457 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6458 |
#, fuzzy
|
6459 |
msgid "Event Detail"
|
6460 |
msgstr "Evenement details"
|
6461 |
|
6462 |
+
#: app/libraries/main.php:4540
|
6463 |
msgid "More Info Link"
|
6464 |
msgstr ""
|
6465 |
|
6466 |
+
#: app/libraries/main.php:4543
|
6467 |
msgid "Ticket (Singular)"
|
6468 |
msgstr ""
|
6469 |
|
6470 |
+
#: app/libraries/main.php:4544
|
6471 |
msgid "Tickets (Plural)"
|
6472 |
msgstr ""
|
6473 |
|
6474 |
+
#: app/libraries/main.php:4630
|
6475 |
msgid "EventON"
|
6476 |
msgstr ""
|
6477 |
|
6478 |
+
#: app/libraries/main.php:4631
|
6479 |
msgid "The Events Calendar"
|
6480 |
msgstr ""
|
6481 |
|
6482 |
+
#: app/libraries/main.php:4632
|
6483 |
msgid "Events Schedule WP Plugin"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
+
#: app/libraries/main.php:4633
|
6487 |
msgid "Calendarize It"
|
6488 |
msgstr ""
|
6489 |
|
6490 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6491 |
msgid "Confirmed"
|
6492 |
msgstr "Bevestigd"
|
6493 |
|
6494 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6495 |
msgid "Rejected"
|
6496 |
msgstr "Afgewezen"
|
6497 |
|
6498 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6499 |
msgid "Pending"
|
6500 |
msgstr "In afwachting"
|
6501 |
|
6502 |
+
#: app/libraries/main.php:4757
|
6503 |
msgid "Waiting"
|
6504 |
msgstr "In afwachting"
|
6505 |
|
6506 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6507 |
msgid "Skin controller does not exist."
|
6508 |
msgstr "Skin controller bestaat niet."
|
6509 |
|
6511 |
msgid "Please verify your email."
|
6512 |
msgstr "Controleer uw email."
|
6513 |
|
6514 |
+
#: app/libraries/notifications.php:125
|
6515 |
msgid "Your booking is received."
|
6516 |
msgstr ""
|
6517 |
|
6518 |
+
#: app/libraries/notifications.php:193
|
6519 |
msgid "Your booking is confirmed."
|
6520 |
msgstr "Uw boeking is bevestigd."
|
6521 |
|
6522 |
+
#: app/libraries/notifications.php:282
|
6523 |
#, fuzzy
|
6524 |
#| msgid "Your booking cannot be canceled."
|
6525 |
msgid "booking canceled."
|
6526 |
msgstr "Uw boeking kan niet worden geannuleerd."
|
6527 |
|
6528 |
+
#: app/libraries/notifications.php:337
|
6529 |
msgid "A new booking is received."
|
6530 |
msgstr "Een nieuwe boeking ontvangen."
|
6531 |
|
6532 |
+
#: app/libraries/notifications.php:488
|
6533 |
msgid "A new event is added."
|
6534 |
msgstr "Een nieuw evenement is toegevoegd."
|
6535 |
|
6536 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6537 |
msgid "to"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6541 |
msgid "+ Add to Google Calendar"
|
6542 |
msgstr "+ Aan Google Kalender toevoegen"
|
6543 |
|
6544 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6545 |
msgid "+ iCal export"
|
6546 |
msgstr "+ iCal export"
|
6547 |
|
6548 |
+
#: app/libraries/notifications.php:752
|
6549 |
msgid "Yes"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
+
#: app/libraries/notifications.php:752
|
6553 |
msgid "No"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
+
#: app/libraries/skins.php:958
|
6557 |
msgid "Ignore month and years"
|
6558 |
msgstr ""
|
6559 |
|
6631 |
msgid "Get Directions"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6635 |
msgid "Share this event"
|
6636 |
msgstr "Deel dit evenement"
|
6637 |
|
6658 |
msgid "Go to occurrence page"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6662 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6663 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6664 |
msgid "Time"
|
6767 |
msgid "List"
|
6768 |
msgstr "Lijstweergave"
|
6769 |
|
6770 |
+
#: app/skins/masonry.php:238
|
6771 |
msgid "All"
|
6772 |
msgstr ""
|
6773 |
|
6785 |
msgid "No Events"
|
6786 |
msgstr "Geen evenementen"
|
6787 |
|
6788 |
+
#: app/skins/single.php:204
|
6789 |
msgid "Home"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6793 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6794 |
#: app/skins/single/modern.php:256
|
6795 |
msgid "Sold out!"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6799 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6800 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6801 |
#: app/skins/single/modern.php:41
|
6802 |
msgid "Phone"
|
6803 |
msgstr "Telefoon"
|
6804 |
|
6805 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6806 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6807 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6808 |
#: app/skins/single/modern.php:55
|
6809 |
msgid "Website"
|
6810 |
msgstr "Website"
|
6811 |
|
6812 |
+
#: app/skins/single.php:912
|
6813 |
#, fuzzy
|
6814 |
msgid "Speakers:"
|
6815 |
msgstr "Zoek locaties"
|
languages/modern-events-calendar-lite-pl_PL.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-pl_PL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-08-
|
5 |
-
"PO-Revision-Date: 2019-08-
|
6 |
"Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pl_PL\n"
|
@@ -337,7 +337,7 @@ msgstr "Integracja z BuddyPressem"
|
|
337 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
338 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
339 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
340 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
341 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
342 |
#: app/features/mec/styling.php:59
|
343 |
msgid "Mailchimp Integration"
|
@@ -403,9 +403,9 @@ msgstr "Nie znaleziono wydarzeń w Koszu!"
|
|
403 |
#: app/features/mec/meta_boxes/search_form.php:453
|
404 |
#: app/features/mec/meta_boxes/search_form.php:514
|
405 |
#: app/features/mec/meta_boxes/search_form.php:575
|
406 |
-
#: app/features/mec/settings.php:
|
407 |
-
#: app/libraries/main.php:
|
408 |
-
#: app/skins/single.php:
|
409 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
410 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
411 |
msgid "Category"
|
@@ -413,7 +413,7 @@ msgstr "Kategoria"
|
|
413 |
|
414 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
415 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
416 |
-
#: app/libraries/main.php:
|
417 |
msgid "Categories"
|
418 |
msgstr "Kategorie"
|
419 |
|
@@ -488,13 +488,13 @@ msgstr "Szczegóły wydarzenia"
|
|
488 |
#: app/features/events.php:322 app/features/events.php:3168
|
489 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
490 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
491 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
492 |
#: app/widgets/single.php:103
|
493 |
msgid "Event Cost"
|
494 |
msgstr "Koszt wydarzenia"
|
495 |
|
496 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
497 |
-
#: app/libraries/main.php:
|
498 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
499 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
500 |
msgid "Cost"
|
@@ -511,7 +511,7 @@ msgstr "Dane gości"
|
|
511 |
#: app/features/events.php:432 app/features/events.php:2250
|
512 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
513 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
514 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
515 |
#: app/modules/booking/steps/form.php:37
|
516 |
msgid "Name"
|
517 |
msgstr "Imię"
|
@@ -522,10 +522,10 @@ msgstr "Imię"
|
|
522 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
523 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
524 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
525 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
526 |
-
#: app/libraries/notifications.php:
|
527 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
528 |
-
#: app/skins/single.php:
|
529 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
530 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
531 |
msgid "Email"
|
@@ -671,14 +671,14 @@ msgstr ""
|
|
671 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
672 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
673 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
674 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
675 |
-
#: app/features/mec/settings.php:
|
676 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
677 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
678 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
679 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
680 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
681 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
682 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
683 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
684 |
#: app/skins/single/modern.php:133
|
@@ -888,9 +888,9 @@ msgstr "Wyklucz pewne dni"
|
|
888 |
|
889 |
#: app/features/events.php:1130 app/features/events.php:2340
|
890 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
891 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
892 |
#: app/modules/booking/steps/tickets.php:22
|
893 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
894 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
895 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
896 |
msgid "Date"
|
@@ -908,7 +908,7 @@ msgid "Day 1"
|
|
908 |
msgstr ""
|
909 |
|
910 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
911 |
-
#: app/skins/single.php:
|
912 |
msgid "Hourly Schedule"
|
913 |
msgstr "Harmonogram"
|
914 |
|
@@ -947,14 +947,14 @@ msgstr "Tytuł"
|
|
947 |
#: app/features/events.php:2154 app/features/events.php:2196
|
948 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
949 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
950 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
951 |
-
#: app/libraries/main.php:
|
952 |
-
#: app/libraries/main.php:
|
953 |
-
#: app/libraries/main.php:
|
954 |
-
#: app/libraries/main.php:
|
955 |
-
#: app/libraries/main.php:
|
956 |
-
#: app/libraries/main.php:
|
957 |
-
#: app/libraries/main.php:
|
958 |
msgid "Remove"
|
959 |
msgstr "Usuń"
|
960 |
|
@@ -987,7 +987,7 @@ msgstr "Opis"
|
|
987 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
988 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
989 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
990 |
-
#: app/features/speakers.php:60 app/libraries/main.php:
|
991 |
#: app/modules/speakers/details.php:18
|
992 |
msgid "Speakers"
|
993 |
msgstr ""
|
@@ -1004,7 +1004,7 @@ msgid "Event Links"
|
|
1004 |
msgstr "Linki wydarzenia"
|
1005 |
|
1006 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1007 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1008 |
msgid "Event Link"
|
1009 |
msgstr "Link strony www wydarzenia"
|
1010 |
|
@@ -1031,8 +1031,8 @@ msgid "URL Shortener"
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1034 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1035 |
-
#: app/skins/single.php:
|
1036 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1037 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1038 |
#: app/widgets/single.php:107
|
@@ -1097,7 +1097,7 @@ msgid "12"
|
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1100 |
-
#: app/libraries/main.php:
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Bilety"
|
1103 |
|
@@ -1171,8 +1171,8 @@ msgstr "Tekst etykiety"
|
|
1171 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1172 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1174 |
-
#: app/features/mec/settings.php:
|
1175 |
-
#: app/libraries/skins.php:
|
1176 |
msgid "Label"
|
1177 |
msgstr "Etykieta"
|
1178 |
|
@@ -1248,48 +1248,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1248 |
msgstr ""
|
1249 |
|
1250 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1251 |
-
#: app/libraries/main.php:
|
1252 |
#, fuzzy
|
1253 |
#| msgid "Name"
|
1254 |
msgid "MEC Name"
|
1255 |
msgstr "Imię"
|
1256 |
|
1257 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1258 |
-
#: app/libraries/main.php:
|
1259 |
#, fuzzy
|
1260 |
#| msgid "Email"
|
1261 |
msgid "MEC Email"
|
1262 |
msgstr "Email"
|
1263 |
|
1264 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1265 |
-
#: app/libraries/main.php:
|
1266 |
msgid "Text"
|
1267 |
msgstr "Pole tekstowe"
|
1268 |
|
1269 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1270 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1271 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1272 |
-
#: app/features/speakers.php:249 app/libraries/main.php:
|
1273 |
msgid "Tel"
|
1274 |
msgstr "Tel"
|
1275 |
|
1276 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1277 |
-
#: app/libraries/main.php:
|
1278 |
msgid "File"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1282 |
-
#: app/libraries/main.php:
|
1283 |
msgid "Textarea"
|
1284 |
msgstr "Obszar tekstowy"
|
1285 |
|
1286 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1287 |
-
#: app/libraries/main.php:
|
1288 |
msgid "Checkboxes"
|
1289 |
msgstr "Pola wyboru"
|
1290 |
|
1291 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1292 |
-
#: app/libraries/main.php:
|
1293 |
msgid "Radio Buttons"
|
1294 |
msgstr "Przyciski radiowe"
|
1295 |
|
@@ -1362,17 +1362,17 @@ msgstr "Przyciski radiowe"
|
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1364 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1365 |
-
#: app/features/mec/regform.php:277 app/libraries/main.php:
|
1366 |
msgid "Dropdown"
|
1367 |
msgstr "Lista rozwijalna"
|
1368 |
|
1369 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1370 |
-
#: app/libraries/main.php:
|
1371 |
msgid "Agreement"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1375 |
-
#: app/libraries/main.php:
|
1376 |
msgid "Paragraph"
|
1377 |
msgstr "Paragraf"
|
1378 |
|
@@ -1410,10 +1410,10 @@ msgstr "organizatorzy"
|
|
1410 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1411 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1412 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1413 |
-
#: app/features/mec/settings.php:
|
1414 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1415 |
-
#: app/libraries/skins.php:
|
1416 |
-
#: app/skins/single.php:
|
1417 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1418 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1419 |
msgid "Location"
|
@@ -1432,11 +1432,11 @@ msgstr "Lokalizacja"
|
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1434 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1435 |
-
#: app/features/mec/settings.php:
|
1436 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1437 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1438 |
-
#: app/features/organizers.php:271 app/libraries/main.php:
|
1439 |
-
#: app/libraries/skins.php:
|
1440 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1441 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1442 |
#: app/skins/single/modern.php:31
|
@@ -1589,8 +1589,8 @@ msgstr "Usuń obraz"
|
|
1589 |
|
1590 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1591 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1592 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1593 |
-
#: app/skins/single.php:
|
1594 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1595 |
#: app/skins/single/modern.php:214
|
1596 |
msgid "Labels"
|
@@ -1932,7 +1932,7 @@ msgstr "Dodaj do Kalendarza Google"
|
|
1932 |
|
1933 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1934 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1935 |
-
#: app/features/mec/settings.php:
|
1936 |
msgid "Checking ..."
|
1937 |
msgstr "Sprawdzanie ..."
|
1938 |
|
@@ -2338,7 +2338,7 @@ msgid "Featured"
|
|
2338 |
msgstr "Obraz wyróżniający"
|
2339 |
|
2340 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2341 |
-
#: app/libraries/main.php:
|
2342 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2343 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2344 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
@@ -2373,7 +2373,7 @@ msgstr "Wydarzenie %s"
|
|
2373 |
|
2374 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2375 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2376 |
-
#: app/libraries/main.php:
|
2377 |
msgid "Locations"
|
2378 |
msgstr "Lokalizacje"
|
2379 |
|
@@ -2480,7 +2480,7 @@ msgstr "Wybierz obraz"
|
|
2480 |
msgid "Don't show map in single event page"
|
2481 |
msgstr "Nie pokazuj mapy na stronie wydarzenia"
|
2482 |
|
2483 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2484 |
#, fuzzy
|
2485 |
#| msgid "Search Locations"
|
2486 |
msgid "Other Locations"
|
@@ -2532,7 +2532,7 @@ msgstr "Wsparcie"
|
|
2532 |
|
2533 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2534 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2535 |
-
#: app/libraries/main.php:
|
2536 |
msgid "Organizers"
|
2537 |
msgstr "Organizatorzy"
|
2538 |
|
@@ -2653,9 +2653,9 @@ msgstr ""
|
|
2653 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2654 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2655 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2656 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2657 |
-
#: app/features/mec/settings.php:
|
2658 |
-
#: app/features/mec/settings.php:
|
2659 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2660 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2661 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
@@ -2755,7 +2755,7 @@ msgstr "Wszystkie lokalizacje"
|
|
2755 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2756 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2757 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2758 |
-
#: app/skins/single.php:
|
2759 |
#, fuzzy
|
2760 |
#| msgid "featured event"
|
2761 |
msgid "Related Events"
|
@@ -2886,7 +2886,7 @@ msgstr ""
|
|
2886 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2887 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2888 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2889 |
-
#: app/libraries/notifications.php:
|
2890 |
msgid "Booking Reminder"
|
2891 |
msgstr ""
|
2892 |
|
@@ -3066,7 +3066,7 @@ msgstr ""
|
|
3066 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3067 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3068 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3069 |
-
#: app/features/mec/settings.php:
|
3070 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3071 |
msgid "Saved"
|
3072 |
msgstr "Zapisane"
|
@@ -3074,7 +3074,7 @@ msgstr "Zapisane"
|
|
3074 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3075 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3076 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3077 |
-
#: app/features/mec/settings.php:
|
3078 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3079 |
msgid "Settings Saved!"
|
3080 |
msgstr ""
|
@@ -3082,14 +3082,14 @@ msgstr ""
|
|
3082 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3083 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3084 |
#: app/features/mec/notifications.php:735
|
3085 |
-
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:
|
3086 |
-
#: app/features/mec/settings.php:
|
3087 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
3088 |
msgid "Verified"
|
3089 |
msgstr "Zweryfikowane"
|
3090 |
|
3091 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3092 |
-
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:
|
3093 |
#: app/features/mec/single.php:502
|
3094 |
msgid "Please Refresh Page"
|
3095 |
msgstr "Proszę odświeżyć stronę"
|
@@ -4031,9 +4031,9 @@ msgstr "Wyłączone"
|
|
4031 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4032 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4033 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4034 |
-
#: app/features/mec/settings.php:
|
4035 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4036 |
-
#: app/libraries/main.php:
|
4037 |
msgid "Speaker"
|
4038 |
msgstr ""
|
4039 |
|
@@ -4047,8 +4047,8 @@ msgstr ""
|
|
4047 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4048 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4049 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4050 |
-
#: app/features/mec/settings.php:
|
4051 |
-
#: app/libraries/skins.php:
|
4052 |
#, fuzzy
|
4053 |
#| msgid "Tags"
|
4054 |
msgid "Tag"
|
@@ -4130,12 +4130,12 @@ msgid "Show Google Maps on event page"
|
|
4130 |
msgstr "Pokaż Mapy Google na stronie wydarzenia"
|
4131 |
|
4132 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4133 |
-
#: app/features/mec/settings.php:
|
4134 |
msgid "API Key"
|
4135 |
msgstr "Klucz API"
|
4136 |
|
4137 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
4138 |
-
#: app/features/mec/settings.php:
|
4139 |
msgid "Required!"
|
4140 |
msgstr "Wymagane!"
|
4141 |
|
@@ -4747,7 +4747,7 @@ msgid ""
|
|
4747 |
msgstr ""
|
4748 |
|
4749 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4750 |
-
#: app/libraries/main.php:
|
4751 |
msgid "Weekdays"
|
4752 |
msgstr "Dni powszednie"
|
4753 |
|
@@ -5076,31 +5076,53 @@ msgid ""
|
|
5076 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: app/features/mec/settings.php:
|
5080 |
-
msgid "
|
|
|
|
|
|
|
|
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5084 |
msgid "Enable Mailchimp Integration"
|
5085 |
msgstr "Włącz integrację z MailChimp"
|
5086 |
|
5087 |
-
#: app/features/mec/settings.php:
|
5088 |
msgid "List ID"
|
5089 |
msgstr "ID listy"
|
5090 |
|
5091 |
-
#: app/features/mec/settings.php:
|
5092 |
msgid "Subscription Status"
|
5093 |
msgstr "Status subskrypcji"
|
5094 |
|
5095 |
-
#: app/features/mec/settings.php:
|
5096 |
msgid "Subscribe automatically"
|
5097 |
msgstr "Zapisz się automatycznie"
|
5098 |
|
5099 |
-
#: app/features/mec/settings.php:
|
5100 |
msgid "Subscribe by verification"
|
5101 |
msgstr "Subskrybuj przez weryfikację"
|
5102 |
|
5103 |
-
#: app/features/mec/settings.php:
|
5104 |
msgid ""
|
5105 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5106 |
"by mailchimp for subscription verification."
|
@@ -5109,31 +5131,31 @@ msgstr ""
|
|
5109 |
"będzie musiał potwierdzić zapisanie do newslettera za pomocą linku "
|
5110 |
"umieszczonego w wiadomości email."
|
5111 |
|
5112 |
-
#: app/features/mec/settings.php:
|
5113 |
#, fuzzy
|
5114 |
#| msgid "Filter Options"
|
5115 |
msgid "Upload Field Options"
|
5116 |
msgstr "Opcje filtrów"
|
5117 |
|
5118 |
-
#: app/features/mec/settings.php:
|
5119 |
msgid "Mime types"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: app/features/mec/settings.php:
|
5123 |
msgid "Split mime types with \",\"."
|
5124 |
msgstr ""
|
5125 |
|
5126 |
-
#: app/features/mec/settings.php:
|
5127 |
msgid "Default: jpeg,jpg,png,pdf"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
-
#: app/features/mec/settings.php:
|
5131 |
#, fuzzy
|
5132 |
#| msgid "Amount (Per Ticket)"
|
5133 |
msgid "Maximum file size"
|
5134 |
msgstr "Wartość (bilet)"
|
5135 |
|
5136 |
-
#: app/features/mec/settings.php:
|
5137 |
msgid "The unit is Megabyte \"MB\""
|
5138 |
msgstr ""
|
5139 |
|
@@ -5852,8 +5874,8 @@ msgstr "np. email@domena.pl"
|
|
5852 |
msgid "eg. https://webnus.net"
|
5853 |
msgstr "http://webnus.biz"
|
5854 |
|
5855 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5856 |
-
#: app/skins/single.php:
|
5857 |
msgid "Other Organizers"
|
5858 |
msgstr ""
|
5859 |
|
@@ -5872,7 +5894,7 @@ msgstr "Proszę %s/%s, aby utworzyć nowe wydarzenia."
|
|
5872 |
msgid "#"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5876 |
msgid "Status"
|
5877 |
msgstr ""
|
5878 |
|
@@ -5890,7 +5912,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5890 |
msgstr ""
|
5891 |
|
5892 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5893 |
-
#: app/libraries/main.php:
|
5894 |
msgid "Ticket"
|
5895 |
msgstr "Zgłoszenie"
|
5896 |
|
@@ -5904,12 +5926,37 @@ msgstr "Potwierdzenie"
|
|
5904 |
msgid "No bookings found!"
|
5905 |
msgstr "Nie znaleziono rezerwacji!"
|
5906 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5907 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5908 |
#, fuzzy
|
5909 |
#| msgid "Search %s"
|
5910 |
msgid "Search"
|
5911 |
msgstr "Wyszukaj %s"
|
5912 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5913 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5914 |
#: app/features/speakers.php:248
|
5915 |
#, fuzzy
|
@@ -5976,11 +6023,11 @@ msgstr ""
|
|
5976 |
msgid "%s Price"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: app/libraries/book.php:
|
5980 |
msgid "Discount"
|
5981 |
msgstr "Zniżka"
|
5982 |
|
5983 |
-
#: app/libraries/book.php:
|
5984 |
#: app/modules/booking/default.php:401
|
5985 |
msgid "Download Invoice"
|
5986 |
msgstr ""
|
@@ -6004,51 +6051,51 @@ msgctxt "plugin link"
|
|
6004 |
msgid "Upgrade"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#: app/libraries/factory.php:
|
6008 |
msgid "day"
|
6009 |
msgstr "dzień"
|
6010 |
|
6011 |
-
#: app/libraries/factory.php:
|
6012 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6013 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6014 |
msgid "days"
|
6015 |
msgstr "dni"
|
6016 |
|
6017 |
-
#: app/libraries/factory.php:
|
6018 |
msgid "hour"
|
6019 |
msgstr "godzina"
|
6020 |
|
6021 |
-
#: app/libraries/factory.php:
|
6022 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6023 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6024 |
msgid "hours"
|
6025 |
msgstr "godzin"
|
6026 |
|
6027 |
-
#: app/libraries/factory.php:
|
6028 |
msgid "minute"
|
6029 |
msgstr "minuta"
|
6030 |
|
6031 |
-
#: app/libraries/factory.php:
|
6032 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6033 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6034 |
msgid "minutes"
|
6035 |
msgstr "minut"
|
6036 |
|
6037 |
-
#: app/libraries/factory.php:
|
6038 |
msgid "second"
|
6039 |
msgstr "sekunda"
|
6040 |
|
6041 |
-
#: app/libraries/factory.php:
|
6042 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6043 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6044 |
msgid "seconds"
|
6045 |
msgstr "sekund"
|
6046 |
|
6047 |
-
#: app/libraries/factory.php:
|
6048 |
msgid "MEC Single Sidebar"
|
6049 |
msgstr "Pasek boczny wydarzenia"
|
6050 |
|
6051 |
-
#: app/libraries/factory.php:
|
6052 |
msgid "Custom sidebar for single and modal page of MEC."
|
6053 |
msgstr ""
|
6054 |
"Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
|
@@ -6112,31 +6159,31 @@ msgstr "Widok karuzeli"
|
|
6112 |
msgid "Slider View"
|
6113 |
msgstr "Widok suwaka"
|
6114 |
|
6115 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6116 |
msgid "SU"
|
6117 |
msgstr "NIE"
|
6118 |
|
6119 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6120 |
msgid "MO"
|
6121 |
msgstr "PN"
|
6122 |
|
6123 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6124 |
msgid "TU"
|
6125 |
msgstr "WT"
|
6126 |
|
6127 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6128 |
msgid "WE"
|
6129 |
msgstr "ŚR"
|
6130 |
|
6131 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6132 |
msgid "TH"
|
6133 |
msgstr "CZW"
|
6134 |
|
6135 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6136 |
msgid "FR"
|
6137 |
msgstr "PT"
|
6138 |
|
6139 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6140 |
msgid "SA"
|
6141 |
msgstr "SOB"
|
6142 |
|
@@ -6288,177 +6335,177 @@ msgstr "iCal eksport zatrzymany!"
|
|
6288 |
msgid "Request is not valid."
|
6289 |
msgstr "Nieprawidłowe żądanie!"
|
6290 |
|
6291 |
-
#: app/libraries/main.php:
|
6292 |
-
#: app/libraries/main.php:
|
6293 |
-
#: app/libraries/main.php:
|
6294 |
-
#: app/libraries/main.php:
|
6295 |
-
#: app/libraries/main.php:
|
6296 |
-
#: app/libraries/main.php:
|
6297 |
-
#: app/libraries/main.php:
|
6298 |
msgid "Sort"
|
6299 |
msgstr "Sortowanie"
|
6300 |
|
6301 |
-
#: app/libraries/main.php:
|
6302 |
-
#: app/libraries/main.php:
|
6303 |
-
#: app/libraries/main.php:
|
6304 |
-
#: app/libraries/main.php:
|
6305 |
-
#: app/libraries/main.php:
|
6306 |
-
#: app/libraries/main.php:
|
6307 |
msgid "Required Field"
|
6308 |
msgstr "Wymagane pole"
|
6309 |
|
6310 |
-
#: app/libraries/main.php:
|
6311 |
-
#: app/libraries/main.php:
|
6312 |
-
#: app/libraries/main.php:
|
6313 |
-
#: app/libraries/main.php:
|
6314 |
-
#: app/libraries/main.php:
|
6315 |
-
#: app/libraries/main.php:
|
6316 |
msgid "Insert a label for this field"
|
6317 |
msgstr "Wpisz etykietę dla tego pola"
|
6318 |
|
6319 |
-
#: app/libraries/main.php:
|
6320 |
msgid "HTML and shortcode are allowed."
|
6321 |
msgstr "HTML i shortcode są dozwolone."
|
6322 |
|
6323 |
-
#: app/libraries/main.php:
|
6324 |
-
#: app/libraries/main.php:
|
6325 |
msgid "Option"
|
6326 |
msgstr "Opcja"
|
6327 |
|
6328 |
-
#: app/libraries/main.php:
|
6329 |
#, php-format
|
6330 |
msgid "Instead of %s, the page title with a link will be show."
|
6331 |
msgstr ""
|
6332 |
|
6333 |
-
#: app/libraries/main.php:
|
6334 |
msgid "Agreement Page"
|
6335 |
msgstr ""
|
6336 |
|
6337 |
-
#: app/libraries/main.php:
|
6338 |
msgid "Checked by default"
|
6339 |
msgstr ""
|
6340 |
|
6341 |
-
#: app/libraries/main.php:
|
6342 |
msgid "Unchecked by default"
|
6343 |
msgstr ""
|
6344 |
|
6345 |
-
#: app/libraries/main.php:
|
6346 |
msgid "Insert a label for this option"
|
6347 |
msgstr "Podaj etykietę dla tej opcji"
|
6348 |
|
6349 |
-
#: app/libraries/main.php:
|
6350 |
msgid "Free"
|
6351 |
msgstr "Darmowy"
|
6352 |
|
6353 |
-
#: app/libraries/main.php:
|
6354 |
#, fuzzy
|
6355 |
#| msgid "M.E. Calendar"
|
6356 |
msgid "M.E. Calender"
|
6357 |
msgstr "Kalendarz"
|
6358 |
|
6359 |
-
#: app/libraries/main.php:
|
6360 |
#, php-format
|
6361 |
msgid "Copy of %s"
|
6362 |
msgstr "Kopia %s"
|
6363 |
|
6364 |
-
#: app/libraries/main.php:
|
6365 |
msgid "Booked an event."
|
6366 |
msgstr "Zarezerwowano wydarzenie."
|
6367 |
|
6368 |
-
#: app/libraries/main.php:
|
6369 |
#, php-format
|
6370 |
msgid "%s booked %s event."
|
6371 |
msgstr "%s zarezerwował %s wydarzenie."
|
6372 |
|
6373 |
-
#: app/libraries/main.php:
|
6374 |
msgid "Taxonomies"
|
6375 |
msgstr "Taksonomie"
|
6376 |
|
6377 |
-
#: app/libraries/main.php:
|
6378 |
msgid "Category Plural Label"
|
6379 |
msgstr "Etykieta dla kategorii - liczba mnoga"
|
6380 |
|
6381 |
-
#: app/libraries/main.php:
|
6382 |
msgid "Category Singular Label"
|
6383 |
msgstr "Etykieta dla kategorii - liczba pojedyncza"
|
6384 |
|
6385 |
-
#: app/libraries/main.php:
|
6386 |
msgid "Label Plural Label"
|
6387 |
msgstr "Etykieta - liczba mnoga"
|
6388 |
|
6389 |
-
#: app/libraries/main.php:
|
6390 |
msgid "Label Singular Label"
|
6391 |
msgstr "Etykieta - liczba pojedyncza"
|
6392 |
|
6393 |
-
#: app/libraries/main.php:
|
6394 |
msgid "label"
|
6395 |
msgstr "etykieta"
|
6396 |
|
6397 |
-
#: app/libraries/main.php:
|
6398 |
msgid "Location Plural Label"
|
6399 |
msgstr "Etykieta dla lokalizacji - wersja mnoga"
|
6400 |
|
6401 |
-
#: app/libraries/main.php:
|
6402 |
msgid "Location Singular Label"
|
6403 |
msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
|
6404 |
|
6405 |
-
#: app/libraries/main.php:
|
6406 |
msgid "Organizer Plural Label"
|
6407 |
msgstr "Etykieta dla organizatora - wersja mnoga"
|
6408 |
|
6409 |
-
#: app/libraries/main.php:
|
6410 |
msgid "Organizer Singular Label"
|
6411 |
msgstr "Etykieta dla organizatora - wersja pojedyncza"
|
6412 |
|
6413 |
-
#: app/libraries/main.php:
|
6414 |
#, fuzzy
|
6415 |
#| msgid "Label Plural Label"
|
6416 |
msgid "Speaker Plural Label"
|
6417 |
msgstr "Etykieta - liczba mnoga"
|
6418 |
|
6419 |
-
#: app/libraries/main.php:
|
6420 |
#, fuzzy
|
6421 |
#| msgid "Label Singular Label"
|
6422 |
msgid "Speaker Singular Label"
|
6423 |
msgstr "Etykieta - liczba pojedyncza"
|
6424 |
|
6425 |
-
#: app/libraries/main.php:
|
6426 |
msgid "Sunday abbreviation"
|
6427 |
msgstr "Niedziela"
|
6428 |
|
6429 |
-
#: app/libraries/main.php:
|
6430 |
msgid "Monday abbreviation"
|
6431 |
msgstr "Poniedziałek"
|
6432 |
|
6433 |
-
#: app/libraries/main.php:
|
6434 |
msgid "Tuesday abbreviation"
|
6435 |
msgstr "Wtorek"
|
6436 |
|
6437 |
-
#: app/libraries/main.php:
|
6438 |
msgid "Wednesday abbreviation"
|
6439 |
msgstr "Środa"
|
6440 |
|
6441 |
-
#: app/libraries/main.php:
|
6442 |
msgid "Thursday abbreviation"
|
6443 |
msgstr "Czwartek"
|
6444 |
|
6445 |
-
#: app/libraries/main.php:
|
6446 |
msgid "Friday abbreviation"
|
6447 |
msgstr "Piątek"
|
6448 |
|
6449 |
-
#: app/libraries/main.php:
|
6450 |
msgid "Saturday abbreviation"
|
6451 |
msgstr "Sobota"
|
6452 |
|
6453 |
-
#: app/libraries/main.php:
|
6454 |
msgid "Others"
|
6455 |
msgstr "Inne"
|
6456 |
|
6457 |
-
#: app/libraries/main.php:
|
6458 |
msgid "Booking Success Message"
|
6459 |
msgstr "Wiadomość zakończenia rezerwacji"
|
6460 |
|
6461 |
-
#: app/libraries/main.php:
|
6462 |
msgid ""
|
6463 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6464 |
"needed, please check your email."
|
@@ -6466,17 +6513,17 @@ msgstr ""
|
|
6466 |
"Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
|
6467 |
"rezerwacji może być konieczna, sprawdź swoją pocztę email."
|
6468 |
|
6469 |
-
#: app/libraries/main.php:
|
6470 |
msgid "Register Button"
|
6471 |
msgstr "Przycisk rejestracji"
|
6472 |
|
6473 |
-
#: app/libraries/main.php:
|
6474 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6475 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6476 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6477 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6478 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6479 |
-
#: app/skins/single.php:
|
6480 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6481 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6482 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6487,11 +6534,11 @@ msgstr "Przycisk rejestracji"
|
|
6487 |
msgid "REGISTER"
|
6488 |
msgstr "REJESTRACJA"
|
6489 |
|
6490 |
-
#: app/libraries/main.php:
|
6491 |
msgid "View Detail Button"
|
6492 |
msgstr "Pokaż szczegóły"
|
6493 |
|
6494 |
-
#: app/libraries/main.php:
|
6495 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6496 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6497 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6502,59 +6549,59 @@ msgstr "Pokaż szczegóły"
|
|
6502 |
msgid "View Detail"
|
6503 |
msgstr "Pokaż szczegóły"
|
6504 |
|
6505 |
-
#: app/libraries/main.php:
|
6506 |
msgid "Event Detail Button"
|
6507 |
msgstr "Szczegóły wydarzenia"
|
6508 |
|
6509 |
-
#: app/libraries/main.php:
|
6510 |
msgid "Event Detail"
|
6511 |
msgstr "Szczegóły wydarzenia"
|
6512 |
|
6513 |
-
#: app/libraries/main.php:
|
6514 |
msgid "More Info Link"
|
6515 |
msgstr "Więcej informacji"
|
6516 |
|
6517 |
-
#: app/libraries/main.php:
|
6518 |
msgid "Ticket (Singular)"
|
6519 |
msgstr ""
|
6520 |
|
6521 |
-
#: app/libraries/main.php:
|
6522 |
msgid "Tickets (Plural)"
|
6523 |
msgstr ""
|
6524 |
|
6525 |
-
#: app/libraries/main.php:
|
6526 |
msgid "EventON"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
-
#: app/libraries/main.php:
|
6530 |
msgid "The Events Calendar"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
-
#: app/libraries/main.php:
|
6534 |
msgid "Events Schedule WP Plugin"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
-
#: app/libraries/main.php:
|
6538 |
msgid "Calendarize It"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
-
#: app/libraries/main.php:
|
6542 |
msgid "Confirmed"
|
6543 |
msgstr "Potwierdzone"
|
6544 |
|
6545 |
-
#: app/libraries/main.php:
|
6546 |
msgid "Rejected"
|
6547 |
msgstr "Odrzucone"
|
6548 |
|
6549 |
-
#: app/libraries/main.php:
|
6550 |
msgid "Pending"
|
6551 |
msgstr "Oczekuje"
|
6552 |
|
6553 |
-
#: app/libraries/main.php:
|
6554 |
msgid "Waiting"
|
6555 |
msgstr "Oczekuje"
|
6556 |
|
6557 |
-
#: app/libraries/main.php:
|
6558 |
msgid "Skin controller does not exist."
|
6559 |
msgstr "Kontroler skórki nie iestnieje."
|
6560 |
|
@@ -6562,57 +6609,49 @@ msgstr "Kontroler skórki nie iestnieje."
|
|
6562 |
msgid "Please verify your email."
|
6563 |
msgstr "Potwierdź swój email."
|
6564 |
|
6565 |
-
#: app/libraries/notifications.php:
|
6566 |
msgid "Your booking is received."
|
6567 |
msgstr "Otrzymaliśmy twoją rezerwację."
|
6568 |
|
6569 |
-
#: app/libraries/notifications.php:
|
6570 |
msgid "Your booking is confirmed."
|
6571 |
msgstr "Twoja rezerwacja jest potwierdzona."
|
6572 |
|
6573 |
-
#: app/libraries/notifications.php:
|
6574 |
#, fuzzy
|
6575 |
#| msgid "Your booking cannot be canceled."
|
6576 |
msgid "booking canceled."
|
6577 |
msgstr "Twoja rezerwacja nie może zostać anulowana."
|
6578 |
|
6579 |
-
#: app/libraries/notifications.php:
|
6580 |
msgid "A new booking is received."
|
6581 |
msgstr "Otrzymałeś nową rezerwację."
|
6582 |
|
6583 |
-
#: app/libraries/notifications.php:
|
6584 |
msgid "A new event is added."
|
6585 |
msgstr "Nowe wydarzenie zostało dodane."
|
6586 |
|
6587 |
-
#: app/libraries/notifications.php:
|
6588 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6589 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6590 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6591 |
-
#: app/skins/single/modern.php:184
|
6592 |
-
msgid "All of the day"
|
6593 |
-
msgstr "Cały dzień"
|
6594 |
-
|
6595 |
-
#: app/libraries/notifications.php:611
|
6596 |
msgid "to"
|
6597 |
msgstr ""
|
6598 |
|
6599 |
-
#: app/libraries/notifications.php:
|
6600 |
msgid "+ Add to Google Calendar"
|
6601 |
msgstr "+ Dodaj do Google Calendar"
|
6602 |
|
6603 |
-
#: app/libraries/notifications.php:
|
6604 |
msgid "+ iCal export"
|
6605 |
msgstr "+ eksport iCal"
|
6606 |
|
6607 |
-
#: app/libraries/notifications.php:
|
6608 |
msgid "Yes"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#: app/libraries/notifications.php:
|
6612 |
msgid "No"
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#: app/libraries/skins.php:
|
6616 |
msgid "Ignore month and years"
|
6617 |
msgstr "Ignoruj miesiąc i lata"
|
6618 |
|
@@ -6689,7 +6728,7 @@ msgstr "Adres z ..."
|
|
6689 |
msgid "Get Directions"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6693 |
msgid "Share this event"
|
6694 |
msgstr "Poleć to wydarzenie"
|
6695 |
|
@@ -6716,7 +6755,7 @@ msgstr "Następne wystąpienie"
|
|
6716 |
msgid "Go to occurrence page"
|
6717 |
msgstr "Przejdź do strony wystąpienia"
|
6718 |
|
6719 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6720 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6721 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6722 |
msgid "Time"
|
@@ -6826,7 +6865,7 @@ msgstr "Brak wydarzenia"
|
|
6826 |
msgid "List"
|
6827 |
msgstr "Lista"
|
6828 |
|
6829 |
-
#: app/skins/masonry.php:
|
6830 |
msgid "All"
|
6831 |
msgstr ""
|
6832 |
|
@@ -6844,31 +6883,31 @@ msgstr "Wydarzenia dla %s"
|
|
6844 |
msgid "No Events"
|
6845 |
msgstr "Brak wydarzeń"
|
6846 |
|
6847 |
-
#: app/skins/single.php:
|
6848 |
msgid "Home"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
-
#: app/skins/single.php:
|
6852 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6853 |
#: app/skins/single/modern.php:256
|
6854 |
msgid "Sold out!"
|
6855 |
msgstr "Wyprzedane!"
|
6856 |
|
6857 |
-
#: app/skins/single.php:
|
6858 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6859 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6860 |
#: app/skins/single/modern.php:41
|
6861 |
msgid "Phone"
|
6862 |
msgstr "Telefon"
|
6863 |
|
6864 |
-
#: app/skins/single.php:
|
6865 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6866 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6867 |
#: app/skins/single/modern.php:55
|
6868 |
msgid "Website"
|
6869 |
msgstr "Strona WWW"
|
6870 |
|
6871 |
-
#: app/skins/single.php:
|
6872 |
#, fuzzy
|
6873 |
#| msgid "No Search Options"
|
6874 |
msgid "Speakers:"
|
@@ -7471,9 +7510,6 @@ msgstr ""
|
|
7471 |
#~ msgid "Popular Labels"
|
7472 |
#~ msgstr "Popularne etykiety"
|
7473 |
|
7474 |
-
#~ msgid "Search Labels"
|
7475 |
-
#~ msgstr "Szukaj"
|
7476 |
-
|
7477 |
#~ msgid "Edit Location"
|
7478 |
#~ msgstr "Edytuj lokalizacje"
|
7479 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-13 16:46+0430\n"
|
6 |
"Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pl_PL\n"
|
337 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
338 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
339 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
340 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
341 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
342 |
#: app/features/mec/styling.php:59
|
343 |
msgid "Mailchimp Integration"
|
403 |
#: app/features/mec/meta_boxes/search_form.php:453
|
404 |
#: app/features/mec/meta_boxes/search_form.php:514
|
405 |
#: app/features/mec/meta_boxes/search_form.php:575
|
406 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
407 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
408 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
409 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
410 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
411 |
msgid "Category"
|
413 |
|
414 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
415 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
416 |
+
#: app/libraries/main.php:4508
|
417 |
msgid "Categories"
|
418 |
msgstr "Kategorie"
|
419 |
|
488 |
#: app/features/events.php:322 app/features/events.php:3168
|
489 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
490 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
491 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
492 |
#: app/widgets/single.php:103
|
493 |
msgid "Event Cost"
|
494 |
msgstr "Koszt wydarzenia"
|
495 |
|
496 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
497 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
498 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
499 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
500 |
msgid "Cost"
|
511 |
#: app/features/events.php:432 app/features/events.php:2250
|
512 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
513 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
514 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
515 |
#: app/modules/booking/steps/form.php:37
|
516 |
msgid "Name"
|
517 |
msgstr "Imię"
|
522 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
523 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
524 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
525 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
526 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
527 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
528 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
529 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
530 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
531 |
msgid "Email"
|
671 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
672 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
673 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
674 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
675 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
676 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
677 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
678 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
679 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
680 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
681 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
682 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
683 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
684 |
#: app/skins/single/modern.php:133
|
888 |
|
889 |
#: app/features/events.php:1130 app/features/events.php:2340
|
890 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
891 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
892 |
#: app/modules/booking/steps/tickets.php:22
|
893 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
894 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
895 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
896 |
msgid "Date"
|
908 |
msgstr ""
|
909 |
|
910 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
911 |
+
#: app/skins/single.php:898
|
912 |
msgid "Hourly Schedule"
|
913 |
msgstr "Harmonogram"
|
914 |
|
947 |
#: app/features/events.php:2154 app/features/events.php:2196
|
948 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
949 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
950 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
951 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
952 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
953 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
954 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
955 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
956 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
957 |
+
#: app/libraries/main.php:2612
|
958 |
msgid "Remove"
|
959 |
msgstr "Usuń"
|
960 |
|
987 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
988 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
989 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
990 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4516
|
991 |
#: app/modules/speakers/details.php:18
|
992 |
msgid "Speakers"
|
993 |
msgstr ""
|
1004 |
msgstr "Linki wydarzenia"
|
1005 |
|
1006 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1007 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4539
|
1008 |
msgid "Event Link"
|
1009 |
msgstr "Link strony www wydarzenia"
|
1010 |
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1034 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4540
|
1035 |
+
#: app/skins/single.php:627 app/skins/single/default.php:118
|
1036 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1037 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1038 |
#: app/widgets/single.php:107
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1100 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Bilety"
|
1103 |
|
1171 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1172 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1174 |
+
#: app/features/mec/settings.php:937 app/features/mec/single.php:408
|
1175 |
+
#: app/libraries/skins.php:937
|
1176 |
msgid "Label"
|
1177 |
msgstr "Etykieta"
|
1178 |
|
1248 |
msgstr ""
|
1249 |
|
1250 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1251 |
+
#: app/libraries/main.php:2202
|
1252 |
#, fuzzy
|
1253 |
#| msgid "Name"
|
1254 |
msgid "MEC Name"
|
1255 |
msgstr "Imię"
|
1256 |
|
1257 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1258 |
+
#: app/libraries/main.php:2231
|
1259 |
#, fuzzy
|
1260 |
#| msgid "Email"
|
1261 |
msgid "MEC Email"
|
1262 |
msgstr "Email"
|
1263 |
|
1264 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1265 |
+
#: app/libraries/main.php:2172
|
1266 |
msgid "Text"
|
1267 |
msgstr "Pole tekstowe"
|
1268 |
|
1269 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1270 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1271 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1272 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2348
|
1273 |
msgid "Tel"
|
1274 |
msgstr "Tel"
|
1275 |
|
1276 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1277 |
+
#: app/libraries/main.php:2290
|
1278 |
msgid "File"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1282 |
+
#: app/libraries/main.php:2377
|
1283 |
msgid "Textarea"
|
1284 |
msgstr "Obszar tekstowy"
|
1285 |
|
1286 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1287 |
+
#: app/libraries/main.php:2430
|
1288 |
msgid "Checkboxes"
|
1289 |
msgstr "Pola wyboru"
|
1290 |
|
1291 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1292 |
+
#: app/libraries/main.php:2474
|
1293 |
msgid "Radio Buttons"
|
1294 |
msgstr "Przyciski radiowe"
|
1295 |
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1364 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1365 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2518
|
1366 |
msgid "Dropdown"
|
1367 |
msgstr "Lista rozwijalna"
|
1368 |
|
1369 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1370 |
+
#: app/libraries/main.php:2565
|
1371 |
msgid "Agreement"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1375 |
+
#: app/libraries/main.php:2406
|
1376 |
msgid "Paragraph"
|
1377 |
msgstr "Paragraf"
|
1378 |
|
1410 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1411 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1412 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1413 |
+
#: app/features/mec/settings.php:911 app/features/mec/single.php:398
|
1414 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1415 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1416 |
+
#: app/skins/single.php:875 app/skins/single/default.php:154
|
1417 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1418 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1419 |
msgid "Location"
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1434 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1435 |
+
#: app/features/mec/settings.php:917 app/features/mec/single.php:394
|
1436 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1437 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1438 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4515
|
1439 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
1440 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1441 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1442 |
#: app/skins/single/modern.php:31
|
1589 |
|
1590 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1591 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1592 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
|
1593 |
+
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1594 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1595 |
#: app/skins/single/modern.php:214
|
1596 |
msgid "Labels"
|
1932 |
|
1933 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1934 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1935 |
+
#: app/features/mec/settings.php:1103 app/features/mec/single.php:480
|
1936 |
msgid "Checking ..."
|
1937 |
msgstr "Sprawdzanie ..."
|
1938 |
|
2338 |
msgstr "Obraz wyróżniający"
|
2339 |
|
2340 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2341 |
+
#: app/libraries/main.php:4756 app/skins/agenda/render.php:41
|
2342 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2343 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2344 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2373 |
|
2374 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2375 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2376 |
+
#: app/libraries/main.php:4512
|
2377 |
msgid "Locations"
|
2378 |
msgstr "Lokalizacje"
|
2379 |
|
2480 |
msgid "Don't show map in single event page"
|
2481 |
msgstr "Nie pokazuj mapy na stronie wydarzenia"
|
2482 |
|
2483 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2484 |
#, fuzzy
|
2485 |
#| msgid "Search Locations"
|
2486 |
msgid "Other Locations"
|
2532 |
|
2533 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2534 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2535 |
+
#: app/libraries/main.php:4514
|
2536 |
msgid "Organizers"
|
2537 |
msgstr "Organizatorzy"
|
2538 |
|
2653 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2654 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2655 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2656 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
|
2657 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2658 |
+
#: app/features/mec/settings.php:1134 app/features/mec/single.php:14
|
2659 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2660 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2661 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2755 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2756 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2757 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2758 |
+
#: app/skins/single.php:162
|
2759 |
#, fuzzy
|
2760 |
#| msgid "featured event"
|
2761 |
msgid "Related Events"
|
2886 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2887 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2888 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2889 |
+
#: app/libraries/notifications.php:405
|
2890 |
msgid "Booking Reminder"
|
2891 |
msgstr ""
|
2892 |
|
3066 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3067 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3068 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3069 |
+
#: app/features/mec/settings.php:1098 app/features/mec/single.php:475
|
3070 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3071 |
msgid "Saved"
|
3072 |
msgstr "Zapisane"
|
3074 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3075 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3076 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3077 |
+
#: app/features/mec/settings.php:1099 app/features/mec/single.php:476
|
3078 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3079 |
msgid "Settings Saved!"
|
3080 |
msgstr ""
|
3082 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3083 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3084 |
#: app/features/mec/notifications.php:735
|
3085 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
|
3086 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
3087 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
3088 |
msgid "Verified"
|
3089 |
msgstr "Zweryfikowane"
|
3090 |
|
3091 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3092 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
|
3093 |
#: app/features/mec/single.php:502
|
3094 |
msgid "Please Refresh Page"
|
3095 |
msgstr "Proszę odświeżyć stronę"
|
4031 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4032 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4033 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4034 |
+
#: app/features/mec/settings.php:924 app/features/mec/single.php:403
|
4035 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4036 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
4037 |
msgid "Speaker"
|
4038 |
msgstr ""
|
4039 |
|
4047 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4048 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4049 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4050 |
+
#: app/features/mec/settings.php:931 app/features/mec/single.php:412
|
4051 |
+
#: app/libraries/skins.php:911
|
4052 |
#, fuzzy
|
4053 |
#| msgid "Tags"
|
4054 |
msgid "Tag"
|
4130 |
msgstr "Pokaż Mapy Google na stronie wydarzenia"
|
4131 |
|
4132 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4133 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
4134 |
msgid "API Key"
|
4135 |
msgstr "Klucz API"
|
4136 |
|
4137 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
4138 |
+
#: app/features/mec/settings.php:980
|
4139 |
msgid "Required!"
|
4140 |
msgstr "Wymagane!"
|
4141 |
|
4747 |
msgstr ""
|
4748 |
|
4749 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4750 |
+
#: app/libraries/main.php:4521
|
4751 |
msgid "Weekdays"
|
4752 |
msgstr "Dni powszednie"
|
4753 |
|
5076 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
+
#: app/features/mec/settings.php:890
|
5080 |
+
msgid "Ajax Live mode"
|
5081 |
+
msgstr ""
|
5082 |
+
|
5083 |
+
#: app/features/mec/settings.php:894
|
5084 |
+
msgid "Ajax mode"
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: app/features/mec/settings.php:895
|
5088 |
+
msgid ""
|
5089 |
+
"if you enable this option, search button disappeared and to use this "
|
5090 |
+
"feature, text input field must be enabled."
|
5091 |
+
msgstr ""
|
5092 |
+
|
5093 |
+
#: app/features/mec/settings.php:901
|
5094 |
+
#, fuzzy
|
5095 |
+
#| msgid "Search Labels"
|
5096 |
+
msgid "Search bar fields"
|
5097 |
+
msgstr "Szukaj"
|
5098 |
+
|
5099 |
+
#: app/features/mec/settings.php:943
|
5100 |
+
#, fuzzy
|
5101 |
+
#| msgid "Text Input"
|
5102 |
+
msgid "Text input"
|
5103 |
+
msgstr "Pole tekstowe"
|
5104 |
+
|
5105 |
+
#: app/features/mec/settings.php:956
|
5106 |
msgid "Enable Mailchimp Integration"
|
5107 |
msgstr "Włącz integrację z MailChimp"
|
5108 |
|
5109 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
5110 |
msgid "List ID"
|
5111 |
msgstr "ID listy"
|
5112 |
|
5113 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
5114 |
msgid "Subscription Status"
|
5115 |
msgstr "Status subskrypcji"
|
5116 |
|
5117 |
+
#: app/features/mec/settings.php:990
|
5118 |
msgid "Subscribe automatically"
|
5119 |
msgstr "Zapisz się automatycznie"
|
5120 |
|
5121 |
+
#: app/features/mec/settings.php:991
|
5122 |
msgid "Subscribe by verification"
|
5123 |
msgstr "Subskrybuj przez weryfikację"
|
5124 |
|
5125 |
+
#: app/features/mec/settings.php:996
|
5126 |
msgid ""
|
5127 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5128 |
"by mailchimp for subscription verification."
|
5131 |
"będzie musiał potwierdzić zapisanie do newslettera za pomocą linku "
|
5132 |
"umieszczonego w wiadomości email."
|
5133 |
|
5134 |
+
#: app/features/mec/settings.php:1008
|
5135 |
#, fuzzy
|
5136 |
#| msgid "Filter Options"
|
5137 |
msgid "Upload Field Options"
|
5138 |
msgstr "Opcje filtrów"
|
5139 |
|
5140 |
+
#: app/features/mec/settings.php:1010
|
5141 |
msgid "Mime types"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
+
#: app/features/mec/settings.php:1014
|
5145 |
msgid "Split mime types with \",\"."
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: app/features/mec/settings.php:1014
|
5149 |
msgid "Default: jpeg,jpg,png,pdf"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: app/features/mec/settings.php:1017
|
5153 |
#, fuzzy
|
5154 |
#| msgid "Amount (Per Ticket)"
|
5155 |
msgid "Maximum file size"
|
5156 |
msgstr "Wartość (bilet)"
|
5157 |
|
5158 |
+
#: app/features/mec/settings.php:1021
|
5159 |
msgid "The unit is Megabyte \"MB\""
|
5160 |
msgstr ""
|
5161 |
|
5874 |
msgid "eg. https://webnus.net"
|
5875 |
msgstr "http://webnus.biz"
|
5876 |
|
5877 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5878 |
+
#: app/skins/single.php:813
|
5879 |
msgid "Other Organizers"
|
5880 |
msgstr ""
|
5881 |
|
5894 |
msgid "#"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5898 |
msgid "Status"
|
5899 |
msgstr ""
|
5900 |
|
5912 |
msgstr ""
|
5913 |
|
5914 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5915 |
+
#: app/libraries/main.php:4543
|
5916 |
msgid "Ticket"
|
5917 |
msgstr "Zgłoszenie"
|
5918 |
|
5926 |
msgid "No bookings found!"
|
5927 |
msgstr "Nie znaleziono rezerwacji!"
|
5928 |
|
5929 |
+
#: app/features/search.php:90
|
5930 |
+
msgid "Please enter at least 3 characters and try again"
|
5931 |
+
msgstr ""
|
5932 |
+
|
5933 |
+
#: app/features/search_bar/search_bar.php:26
|
5934 |
+
msgid "Please enter at least 3 characters"
|
5935 |
+
msgstr ""
|
5936 |
+
|
5937 |
#: app/features/search_bar/search_bar.php:28
|
5938 |
+
msgid "Search results will show here"
|
5939 |
+
msgstr ""
|
5940 |
+
|
5941 |
+
#: app/features/search_bar/search_bar.php:39
|
5942 |
#, fuzzy
|
5943 |
#| msgid "Search %s"
|
5944 |
msgid "Search"
|
5945 |
msgstr "Wyszukaj %s"
|
5946 |
|
5947 |
+
#: app/features/search_bar/search_noresult.php:1
|
5948 |
+
msgid "No search result."
|
5949 |
+
msgstr ""
|
5950 |
+
|
5951 |
+
#: app/features/search_bar/search_result.php:11
|
5952 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5953 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5954 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5955 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5956 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5957 |
+
msgid "All of the day"
|
5958 |
+
msgstr "Cały dzień"
|
5959 |
+
|
5960 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5961 |
#: app/features/speakers.php:248
|
5962 |
#, fuzzy
|
6023 |
msgid "%s Price"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: app/libraries/book.php:539
|
6027 |
msgid "Discount"
|
6028 |
msgstr "Zniżka"
|
6029 |
|
6030 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
6031 |
#: app/modules/booking/default.php:401
|
6032 |
msgid "Download Invoice"
|
6033 |
msgstr ""
|
6051 |
msgid "Upgrade"
|
6052 |
msgstr ""
|
6053 |
|
6054 |
+
#: app/libraries/factory.php:333
|
6055 |
msgid "day"
|
6056 |
msgstr "dzień"
|
6057 |
|
6058 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
6059 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6060 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6061 |
msgid "days"
|
6062 |
msgstr "dni"
|
6063 |
|
6064 |
+
#: app/libraries/factory.php:335
|
6065 |
msgid "hour"
|
6066 |
msgstr "godzina"
|
6067 |
|
6068 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
6069 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6070 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6071 |
msgid "hours"
|
6072 |
msgstr "godzin"
|
6073 |
|
6074 |
+
#: app/libraries/factory.php:337
|
6075 |
msgid "minute"
|
6076 |
msgstr "minuta"
|
6077 |
|
6078 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
6079 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6080 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6081 |
msgid "minutes"
|
6082 |
msgstr "minut"
|
6083 |
|
6084 |
+
#: app/libraries/factory.php:339
|
6085 |
msgid "second"
|
6086 |
msgstr "sekunda"
|
6087 |
|
6088 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
6089 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6090 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6091 |
msgid "seconds"
|
6092 |
msgstr "sekund"
|
6093 |
|
6094 |
+
#: app/libraries/factory.php:383
|
6095 |
msgid "MEC Single Sidebar"
|
6096 |
msgstr "Pasek boczny wydarzenia"
|
6097 |
|
6098 |
+
#: app/libraries/factory.php:384
|
6099 |
msgid "Custom sidebar for single and modal page of MEC."
|
6100 |
msgstr ""
|
6101 |
"Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
|
6159 |
msgid "Slider View"
|
6160 |
msgstr "Widok suwaka"
|
6161 |
|
6162 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
6163 |
msgid "SU"
|
6164 |
msgstr "NIE"
|
6165 |
|
6166 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
6167 |
msgid "MO"
|
6168 |
msgstr "PN"
|
6169 |
|
6170 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
6171 |
msgid "TU"
|
6172 |
msgstr "WT"
|
6173 |
|
6174 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
6175 |
msgid "WE"
|
6176 |
msgstr "ŚR"
|
6177 |
|
6178 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
6179 |
msgid "TH"
|
6180 |
msgstr "CZW"
|
6181 |
|
6182 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
6183 |
msgid "FR"
|
6184 |
msgstr "PT"
|
6185 |
|
6186 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
6187 |
msgid "SA"
|
6188 |
msgstr "SOB"
|
6189 |
|
6335 |
msgid "Request is not valid."
|
6336 |
msgstr "Nieprawidłowe żądanie!"
|
6337 |
|
6338 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
6339 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
6340 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
6341 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
6342 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
6343 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
6344 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
6345 |
msgid "Sort"
|
6346 |
msgstr "Sortowanie"
|
6347 |
|
6348 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
6349 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
6350 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
6351 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
6352 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
6353 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
6354 |
msgid "Required Field"
|
6355 |
msgstr "Wymagane pole"
|
6356 |
|
6357 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
6358 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
6359 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
6360 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
6361 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
6362 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
6363 |
msgid "Insert a label for this field"
|
6364 |
msgstr "Wpisz etykietę dla tego pola"
|
6365 |
|
6366 |
+
#: app/libraries/main.php:2411
|
6367 |
msgid "HTML and shortcode are allowed."
|
6368 |
msgstr "HTML i shortcode są dozwolone."
|
6369 |
|
6370 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
6371 |
+
#: app/libraries/main.php:2542
|
6372 |
msgid "Option"
|
6373 |
msgstr "Opcja"
|
6374 |
|
6375 |
+
#: app/libraries/main.php:2576
|
6376 |
#, php-format
|
6377 |
msgid "Instead of %s, the page title with a link will be show."
|
6378 |
msgstr ""
|
6379 |
|
6380 |
+
#: app/libraries/main.php:2578
|
6381 |
msgid "Agreement Page"
|
6382 |
msgstr ""
|
6383 |
|
6384 |
+
#: app/libraries/main.php:2589
|
6385 |
msgid "Checked by default"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
+
#: app/libraries/main.php:2590
|
6389 |
msgid "Unchecked by default"
|
6390 |
msgstr ""
|
6391 |
|
6392 |
+
#: app/libraries/main.php:2613
|
6393 |
msgid "Insert a label for this option"
|
6394 |
msgstr "Podaj etykietę dla tej opcji"
|
6395 |
|
6396 |
+
#: app/libraries/main.php:2628
|
6397 |
msgid "Free"
|
6398 |
msgstr "Darmowy"
|
6399 |
|
6400 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6401 |
#, fuzzy
|
6402 |
#| msgid "M.E. Calendar"
|
6403 |
msgid "M.E. Calender"
|
6404 |
msgstr "Kalendarz"
|
6405 |
|
6406 |
+
#: app/libraries/main.php:3349
|
6407 |
#, php-format
|
6408 |
msgid "Copy of %s"
|
6409 |
msgstr "Kopia %s"
|
6410 |
|
6411 |
+
#: app/libraries/main.php:4022
|
6412 |
msgid "Booked an event."
|
6413 |
msgstr "Zarezerwowano wydarzenie."
|
6414 |
|
6415 |
+
#: app/libraries/main.php:4063
|
6416 |
#, php-format
|
6417 |
msgid "%s booked %s event."
|
6418 |
msgstr "%s zarezerwował %s wydarzenie."
|
6419 |
|
6420 |
+
#: app/libraries/main.php:4506
|
6421 |
msgid "Taxonomies"
|
6422 |
msgstr "Taksonomie"
|
6423 |
|
6424 |
+
#: app/libraries/main.php:4508
|
6425 |
msgid "Category Plural Label"
|
6426 |
msgstr "Etykieta dla kategorii - liczba mnoga"
|
6427 |
|
6428 |
+
#: app/libraries/main.php:4509
|
6429 |
msgid "Category Singular Label"
|
6430 |
msgstr "Etykieta dla kategorii - liczba pojedyncza"
|
6431 |
|
6432 |
+
#: app/libraries/main.php:4510
|
6433 |
msgid "Label Plural Label"
|
6434 |
msgstr "Etykieta - liczba mnoga"
|
6435 |
|
6436 |
+
#: app/libraries/main.php:4511
|
6437 |
msgid "Label Singular Label"
|
6438 |
msgstr "Etykieta - liczba pojedyncza"
|
6439 |
|
6440 |
+
#: app/libraries/main.php:4511
|
6441 |
msgid "label"
|
6442 |
msgstr "etykieta"
|
6443 |
|
6444 |
+
#: app/libraries/main.php:4512
|
6445 |
msgid "Location Plural Label"
|
6446 |
msgstr "Etykieta dla lokalizacji - wersja mnoga"
|
6447 |
|
6448 |
+
#: app/libraries/main.php:4513
|
6449 |
msgid "Location Singular Label"
|
6450 |
msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
|
6451 |
|
6452 |
+
#: app/libraries/main.php:4514
|
6453 |
msgid "Organizer Plural Label"
|
6454 |
msgstr "Etykieta dla organizatora - wersja mnoga"
|
6455 |
|
6456 |
+
#: app/libraries/main.php:4515
|
6457 |
msgid "Organizer Singular Label"
|
6458 |
msgstr "Etykieta dla organizatora - wersja pojedyncza"
|
6459 |
|
6460 |
+
#: app/libraries/main.php:4516
|
6461 |
#, fuzzy
|
6462 |
#| msgid "Label Plural Label"
|
6463 |
msgid "Speaker Plural Label"
|
6464 |
msgstr "Etykieta - liczba mnoga"
|
6465 |
|
6466 |
+
#: app/libraries/main.php:4517
|
6467 |
#, fuzzy
|
6468 |
#| msgid "Label Singular Label"
|
6469 |
msgid "Speaker Singular Label"
|
6470 |
msgstr "Etykieta - liczba pojedyncza"
|
6471 |
|
6472 |
+
#: app/libraries/main.php:4523
|
6473 |
msgid "Sunday abbreviation"
|
6474 |
msgstr "Niedziela"
|
6475 |
|
6476 |
+
#: app/libraries/main.php:4524
|
6477 |
msgid "Monday abbreviation"
|
6478 |
msgstr "Poniedziałek"
|
6479 |
|
6480 |
+
#: app/libraries/main.php:4525
|
6481 |
msgid "Tuesday abbreviation"
|
6482 |
msgstr "Wtorek"
|
6483 |
|
6484 |
+
#: app/libraries/main.php:4526
|
6485 |
msgid "Wednesday abbreviation"
|
6486 |
msgstr "Środa"
|
6487 |
|
6488 |
+
#: app/libraries/main.php:4527
|
6489 |
msgid "Thursday abbreviation"
|
6490 |
msgstr "Czwartek"
|
6491 |
|
6492 |
+
#: app/libraries/main.php:4528
|
6493 |
msgid "Friday abbreviation"
|
6494 |
msgstr "Piątek"
|
6495 |
|
6496 |
+
#: app/libraries/main.php:4529
|
6497 |
msgid "Saturday abbreviation"
|
6498 |
msgstr "Sobota"
|
6499 |
|
6500 |
+
#: app/libraries/main.php:4533
|
6501 |
msgid "Others"
|
6502 |
msgstr "Inne"
|
6503 |
|
6504 |
+
#: app/libraries/main.php:4535
|
6505 |
msgid "Booking Success Message"
|
6506 |
msgstr "Wiadomość zakończenia rezerwacji"
|
6507 |
|
6508 |
+
#: app/libraries/main.php:4535
|
6509 |
msgid ""
|
6510 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6511 |
"needed, please check your email."
|
6513 |
"Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
|
6514 |
"rezerwacji może być konieczna, sprawdź swoją pocztę email."
|
6515 |
|
6516 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6517 |
msgid "Register Button"
|
6518 |
msgstr "Przycisk rejestracji"
|
6519 |
|
6520 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6521 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6522 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6523 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6524 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6525 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6526 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6527 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6528 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6529 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6534 |
msgid "REGISTER"
|
6535 |
msgstr "REJESTRACJA"
|
6536 |
|
6537 |
+
#: app/libraries/main.php:4537
|
6538 |
msgid "View Detail Button"
|
6539 |
msgstr "Pokaż szczegóły"
|
6540 |
|
6541 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6542 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6543 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6544 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6549 |
msgid "View Detail"
|
6550 |
msgstr "Pokaż szczegóły"
|
6551 |
|
6552 |
+
#: app/libraries/main.php:4538
|
6553 |
msgid "Event Detail Button"
|
6554 |
msgstr "Szczegóły wydarzenia"
|
6555 |
|
6556 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6557 |
msgid "Event Detail"
|
6558 |
msgstr "Szczegóły wydarzenia"
|
6559 |
|
6560 |
+
#: app/libraries/main.php:4540
|
6561 |
msgid "More Info Link"
|
6562 |
msgstr "Więcej informacji"
|
6563 |
|
6564 |
+
#: app/libraries/main.php:4543
|
6565 |
msgid "Ticket (Singular)"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
+
#: app/libraries/main.php:4544
|
6569 |
msgid "Tickets (Plural)"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
+
#: app/libraries/main.php:4630
|
6573 |
msgid "EventON"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
+
#: app/libraries/main.php:4631
|
6577 |
msgid "The Events Calendar"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
+
#: app/libraries/main.php:4632
|
6581 |
msgid "Events Schedule WP Plugin"
|
6582 |
msgstr ""
|
6583 |
|
6584 |
+
#: app/libraries/main.php:4633
|
6585 |
msgid "Calendarize It"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6589 |
msgid "Confirmed"
|
6590 |
msgstr "Potwierdzone"
|
6591 |
|
6592 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6593 |
msgid "Rejected"
|
6594 |
msgstr "Odrzucone"
|
6595 |
|
6596 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6597 |
msgid "Pending"
|
6598 |
msgstr "Oczekuje"
|
6599 |
|
6600 |
+
#: app/libraries/main.php:4757
|
6601 |
msgid "Waiting"
|
6602 |
msgstr "Oczekuje"
|
6603 |
|
6604 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6605 |
msgid "Skin controller does not exist."
|
6606 |
msgstr "Kontroler skórki nie iestnieje."
|
6607 |
|
6609 |
msgid "Please verify your email."
|
6610 |
msgstr "Potwierdź swój email."
|
6611 |
|
6612 |
+
#: app/libraries/notifications.php:125
|
6613 |
msgid "Your booking is received."
|
6614 |
msgstr "Otrzymaliśmy twoją rezerwację."
|
6615 |
|
6616 |
+
#: app/libraries/notifications.php:193
|
6617 |
msgid "Your booking is confirmed."
|
6618 |
msgstr "Twoja rezerwacja jest potwierdzona."
|
6619 |
|
6620 |
+
#: app/libraries/notifications.php:282
|
6621 |
#, fuzzy
|
6622 |
#| msgid "Your booking cannot be canceled."
|
6623 |
msgid "booking canceled."
|
6624 |
msgstr "Twoja rezerwacja nie może zostać anulowana."
|
6625 |
|
6626 |
+
#: app/libraries/notifications.php:337
|
6627 |
msgid "A new booking is received."
|
6628 |
msgstr "Otrzymałeś nową rezerwację."
|
6629 |
|
6630 |
+
#: app/libraries/notifications.php:488
|
6631 |
msgid "A new event is added."
|
6632 |
msgstr "Nowe wydarzenie zostało dodane."
|
6633 |
|
6634 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6635 |
msgid "to"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6639 |
msgid "+ Add to Google Calendar"
|
6640 |
msgstr "+ Dodaj do Google Calendar"
|
6641 |
|
6642 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6643 |
msgid "+ iCal export"
|
6644 |
msgstr "+ eksport iCal"
|
6645 |
|
6646 |
+
#: app/libraries/notifications.php:752
|
6647 |
msgid "Yes"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: app/libraries/notifications.php:752
|
6651 |
msgid "No"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: app/libraries/skins.php:958
|
6655 |
msgid "Ignore month and years"
|
6656 |
msgstr "Ignoruj miesiąc i lata"
|
6657 |
|
6728 |
msgid "Get Directions"
|
6729 |
msgstr ""
|
6730 |
|
6731 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6732 |
msgid "Share this event"
|
6733 |
msgstr "Poleć to wydarzenie"
|
6734 |
|
6755 |
msgid "Go to occurrence page"
|
6756 |
msgstr "Przejdź do strony wystąpienia"
|
6757 |
|
6758 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6759 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6760 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6761 |
msgid "Time"
|
6865 |
msgid "List"
|
6866 |
msgstr "Lista"
|
6867 |
|
6868 |
+
#: app/skins/masonry.php:238
|
6869 |
msgid "All"
|
6870 |
msgstr ""
|
6871 |
|
6883 |
msgid "No Events"
|
6884 |
msgstr "Brak wydarzeń"
|
6885 |
|
6886 |
+
#: app/skins/single.php:204
|
6887 |
msgid "Home"
|
6888 |
msgstr ""
|
6889 |
|
6890 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6891 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6892 |
#: app/skins/single/modern.php:256
|
6893 |
msgid "Sold out!"
|
6894 |
msgstr "Wyprzedane!"
|
6895 |
|
6896 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6897 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6898 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6899 |
#: app/skins/single/modern.php:41
|
6900 |
msgid "Phone"
|
6901 |
msgstr "Telefon"
|
6902 |
|
6903 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6904 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6905 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6906 |
#: app/skins/single/modern.php:55
|
6907 |
msgid "Website"
|
6908 |
msgstr "Strona WWW"
|
6909 |
|
6910 |
+
#: app/skins/single.php:912
|
6911 |
#, fuzzy
|
6912 |
#| msgid "No Search Options"
|
6913 |
msgid "Speakers:"
|
7510 |
#~ msgid "Popular Labels"
|
7511 |
#~ msgstr "Popularne etykiety"
|
7512 |
|
|
|
|
|
|
|
7513 |
#~ msgid "Edit Location"
|
7514 |
#~ msgstr "Edytuj lokalizacje"
|
7515 |
|
languages/modern-events-calendar-lite-pt_BR.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2019-08-
|
6 |
-
"PO-Revision-Date: 2019-08-
|
7 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
8 |
"Language-Team: Portuguese (Brazil)\n"
|
9 |
"Language: pt_BR\n"
|
@@ -337,7 +337,7 @@ msgstr "Integração com BuddyPress"
|
|
337 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
338 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
339 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
340 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
341 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
342 |
#: app/features/mec/styling.php:59
|
343 |
msgid "Mailchimp Integration"
|
@@ -403,9 +403,9 @@ msgstr "Nenhum evento encontrado na Lixeira!"
|
|
403 |
#: app/features/mec/meta_boxes/search_form.php:453
|
404 |
#: app/features/mec/meta_boxes/search_form.php:514
|
405 |
#: app/features/mec/meta_boxes/search_form.php:575
|
406 |
-
#: app/features/mec/settings.php:
|
407 |
-
#: app/libraries/main.php:
|
408 |
-
#: app/skins/single.php:
|
409 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
410 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
411 |
msgid "Category"
|
@@ -413,7 +413,7 @@ msgstr "Categoria"
|
|
413 |
|
414 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
415 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
416 |
-
#: app/libraries/main.php:
|
417 |
msgid "Categories"
|
418 |
msgstr "Categorias"
|
419 |
|
@@ -488,13 +488,13 @@ msgstr "Detalhes do Evento"
|
|
488 |
#: app/features/events.php:322 app/features/events.php:3168
|
489 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
490 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
491 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
492 |
#: app/widgets/single.php:103
|
493 |
msgid "Event Cost"
|
494 |
msgstr "Custo do Evento"
|
495 |
|
496 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
497 |
-
#: app/libraries/main.php:
|
498 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
499 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
500 |
msgid "Cost"
|
@@ -511,7 +511,7 @@ msgstr ""
|
|
511 |
#: app/features/events.php:432 app/features/events.php:2250
|
512 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
513 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
514 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
515 |
#: app/modules/booking/steps/form.php:37
|
516 |
msgid "Name"
|
517 |
msgstr "Nome"
|
@@ -522,10 +522,10 @@ msgstr "Nome"
|
|
522 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
523 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
524 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
525 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
526 |
-
#: app/libraries/notifications.php:
|
527 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
528 |
-
#: app/skins/single.php:
|
529 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
530 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
531 |
msgid "Email"
|
@@ -671,14 +671,14 @@ msgstr ""
|
|
671 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
672 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
673 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
674 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
675 |
-
#: app/features/mec/settings.php:
|
676 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
677 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
678 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
679 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
680 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
681 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
682 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
683 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
684 |
#: app/skins/single/modern.php:133
|
@@ -888,9 +888,9 @@ msgstr "Excluir determinados dias"
|
|
888 |
|
889 |
#: app/features/events.php:1130 app/features/events.php:2340
|
890 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
891 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
892 |
#: app/modules/booking/steps/tickets.php:22
|
893 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
894 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
895 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
896 |
msgid "Date"
|
@@ -908,7 +908,7 @@ msgid "Day 1"
|
|
908 |
msgstr ""
|
909 |
|
910 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
911 |
-
#: app/skins/single.php:
|
912 |
msgid "Hourly Schedule"
|
913 |
msgstr "Horários da Programação"
|
914 |
|
@@ -947,14 +947,14 @@ msgstr "Título"
|
|
947 |
#: app/features/events.php:2154 app/features/events.php:2196
|
948 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
949 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
950 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
951 |
-
#: app/libraries/main.php:
|
952 |
-
#: app/libraries/main.php:
|
953 |
-
#: app/libraries/main.php:
|
954 |
-
#: app/libraries/main.php:
|
955 |
-
#: app/libraries/main.php:
|
956 |
-
#: app/libraries/main.php:
|
957 |
-
#: app/libraries/main.php:
|
958 |
msgid "Remove"
|
959 |
msgstr "Remover"
|
960 |
|
@@ -987,7 +987,7 @@ msgstr "Descrição"
|
|
987 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
988 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
989 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
990 |
-
#: app/features/speakers.php:60 app/libraries/main.php:
|
991 |
#: app/modules/speakers/details.php:18
|
992 |
msgid "Speakers"
|
993 |
msgstr ""
|
@@ -1004,7 +1004,7 @@ msgid "Event Links"
|
|
1004 |
msgstr "Links do Evento"
|
1005 |
|
1006 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1007 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1008 |
msgid "Event Link"
|
1009 |
msgstr "Link do Evento"
|
1010 |
|
@@ -1031,8 +1031,8 @@ msgid "URL Shortener"
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1034 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1035 |
-
#: app/skins/single.php:
|
1036 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1037 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1038 |
#: app/widgets/single.php:107
|
@@ -1097,7 +1097,7 @@ msgid "12"
|
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1100 |
-
#: app/libraries/main.php:
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Bilhetes"
|
1103 |
|
@@ -1171,8 +1171,8 @@ msgstr "Preço da Etiqueta"
|
|
1171 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1172 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1174 |
-
#: app/features/mec/settings.php:
|
1175 |
-
#: app/libraries/skins.php:
|
1176 |
msgid "Label"
|
1177 |
msgstr "Etiqueta"
|
1178 |
|
@@ -1247,48 +1247,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1250 |
-
#: app/libraries/main.php:
|
1251 |
#, fuzzy
|
1252 |
#| msgid "Name"
|
1253 |
msgid "MEC Name"
|
1254 |
msgstr "Nome"
|
1255 |
|
1256 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1257 |
-
#: app/libraries/main.php:
|
1258 |
#, fuzzy
|
1259 |
#| msgid "Email"
|
1260 |
msgid "MEC Email"
|
1261 |
msgstr "E-mail"
|
1262 |
|
1263 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1264 |
-
#: app/libraries/main.php:
|
1265 |
msgid "Text"
|
1266 |
msgstr "Texto"
|
1267 |
|
1268 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1269 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1270 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1271 |
-
#: app/features/speakers.php:249 app/libraries/main.php:
|
1272 |
msgid "Tel"
|
1273 |
msgstr "Telefone"
|
1274 |
|
1275 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1276 |
-
#: app/libraries/main.php:
|
1277 |
msgid "File"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1281 |
-
#: app/libraries/main.php:
|
1282 |
msgid "Textarea"
|
1283 |
msgstr "Área de texto"
|
1284 |
|
1285 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1286 |
-
#: app/libraries/main.php:
|
1287 |
msgid "Checkboxes"
|
1288 |
msgstr "Caixas de seleção"
|
1289 |
|
1290 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1291 |
-
#: app/libraries/main.php:
|
1292 |
msgid "Radio Buttons"
|
1293 |
msgstr "Botões Rádio"
|
1294 |
|
@@ -1361,17 +1361,17 @@ msgstr "Botões Rádio"
|
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1364 |
-
#: app/features/mec/regform.php:277 app/libraries/main.php:
|
1365 |
msgid "Dropdown"
|
1366 |
msgstr "Suspenso"
|
1367 |
|
1368 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1369 |
-
#: app/libraries/main.php:
|
1370 |
msgid "Agreement"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1374 |
-
#: app/libraries/main.php:
|
1375 |
msgid "Paragraph"
|
1376 |
msgstr "Parágrafo"
|
1377 |
|
@@ -1409,10 +1409,10 @@ msgstr ""
|
|
1409 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1410 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1411 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1412 |
-
#: app/features/mec/settings.php:
|
1413 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1414 |
-
#: app/libraries/skins.php:
|
1415 |
-
#: app/skins/single.php:
|
1416 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1417 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1418 |
msgid "Location"
|
@@ -1431,11 +1431,11 @@ msgstr "Localização"
|
|
1431 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1434 |
-
#: app/features/mec/settings.php:
|
1435 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1436 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1437 |
-
#: app/features/organizers.php:271 app/libraries/main.php:
|
1438 |
-
#: app/libraries/skins.php:
|
1439 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1440 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1441 |
#: app/skins/single/modern.php:31
|
@@ -1588,8 +1588,8 @@ msgstr "Remover Imagem"
|
|
1588 |
|
1589 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1590 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1591 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1592 |
-
#: app/skins/single.php:
|
1593 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1594 |
#: app/skins/single/modern.php:214
|
1595 |
msgid "Labels"
|
@@ -1936,7 +1936,7 @@ msgstr "Adicionar ao Calendário do Google"
|
|
1936 |
|
1937 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1938 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1939 |
-
#: app/features/mec/settings.php:
|
1940 |
msgid "Checking ..."
|
1941 |
msgstr "Verificando ...."
|
1942 |
|
@@ -2340,7 +2340,7 @@ msgid "Featured"
|
|
2340 |
msgstr "Imagem Destacada"
|
2341 |
|
2342 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2343 |
-
#: app/libraries/main.php:
|
2344 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2345 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2346 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
@@ -2375,7 +2375,7 @@ msgstr ""
|
|
2375 |
|
2376 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2377 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2378 |
-
#: app/libraries/main.php:
|
2379 |
msgid "Locations"
|
2380 |
msgstr "Localizações"
|
2381 |
|
@@ -2482,7 +2482,7 @@ msgstr "Escolha uma imagem"
|
|
2482 |
msgid "Don't show map in single event page"
|
2483 |
msgstr "Não mostrar mapa na página de evento individual"
|
2484 |
|
2485 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2486 |
#, fuzzy
|
2487 |
#| msgid "Search Locations"
|
2488 |
msgid "Other Locations"
|
@@ -2534,7 +2534,7 @@ msgstr "Suporte"
|
|
2534 |
|
2535 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2536 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2537 |
-
#: app/libraries/main.php:
|
2538 |
msgid "Organizers"
|
2539 |
msgstr "Organizadores"
|
2540 |
|
@@ -2655,9 +2655,9 @@ msgstr ""
|
|
2655 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2656 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2657 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2658 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2659 |
-
#: app/features/mec/settings.php:
|
2660 |
-
#: app/features/mec/settings.php:
|
2661 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2662 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2663 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
@@ -2757,7 +2757,7 @@ msgstr "Todas as Localizações"
|
|
2757 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2758 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2759 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2760 |
-
#: app/skins/single.php:
|
2761 |
#, fuzzy
|
2762 |
#| msgid "featured event"
|
2763 |
msgid "Related Events"
|
@@ -2888,7 +2888,7 @@ msgstr ""
|
|
2888 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2889 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2890 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2891 |
-
#: app/libraries/notifications.php:
|
2892 |
msgid "Booking Reminder"
|
2893 |
msgstr ""
|
2894 |
|
@@ -3068,7 +3068,7 @@ msgstr ""
|
|
3068 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3069 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3070 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3071 |
-
#: app/features/mec/settings.php:
|
3072 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3073 |
msgid "Saved"
|
3074 |
msgstr "Salvo"
|
@@ -3076,7 +3076,7 @@ msgstr "Salvo"
|
|
3076 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3077 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3078 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3079 |
-
#: app/features/mec/settings.php:
|
3080 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3081 |
msgid "Settings Saved!"
|
3082 |
msgstr ""
|
@@ -3084,14 +3084,14 @@ msgstr ""
|
|
3084 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3085 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3086 |
#: app/features/mec/notifications.php:735
|
3087 |
-
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:
|
3088 |
-
#: app/features/mec/settings.php:
|
3089 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
3090 |
msgid "Verified"
|
3091 |
msgstr "Verificado"
|
3092 |
|
3093 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3094 |
-
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:
|
3095 |
#: app/features/mec/single.php:502
|
3096 |
msgid "Please Refresh Page"
|
3097 |
msgstr "Por favor, Atualize a Página"
|
@@ -4029,9 +4029,9 @@ msgstr "Desativado"
|
|
4029 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4030 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4031 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4032 |
-
#: app/features/mec/settings.php:
|
4033 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4034 |
-
#: app/libraries/main.php:
|
4035 |
msgid "Speaker"
|
4036 |
msgstr ""
|
4037 |
|
@@ -4045,8 +4045,8 @@ msgstr ""
|
|
4045 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4046 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4047 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4048 |
-
#: app/features/mec/settings.php:
|
4049 |
-
#: app/libraries/skins.php:
|
4050 |
#, fuzzy
|
4051 |
#| msgid "Tags"
|
4052 |
msgid "Tag"
|
@@ -4128,12 +4128,12 @@ msgid "Show Google Maps on event page"
|
|
4128 |
msgstr "Mostrar Google Mapas na página do evento"
|
4129 |
|
4130 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4131 |
-
#: app/features/mec/settings.php:
|
4132 |
msgid "API Key"
|
4133 |
msgstr "Chave API"
|
4134 |
|
4135 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
4136 |
-
#: app/features/mec/settings.php:
|
4137 |
msgid "Required!"
|
4138 |
msgstr "Obrigatória!"
|
4139 |
|
@@ -4743,7 +4743,7 @@ msgid ""
|
|
4743 |
msgstr ""
|
4744 |
|
4745 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4746 |
-
#: app/libraries/main.php:
|
4747 |
msgid "Weekdays"
|
4748 |
msgstr "Dias da semana"
|
4749 |
|
@@ -5077,31 +5077,53 @@ msgid ""
|
|
5077 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
-
#: app/features/mec/settings.php:
|
5081 |
-
msgid "
|
|
|
|
|
|
|
|
|
5082 |
msgstr ""
|
5083 |
|
5084 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5085 |
msgid "Enable Mailchimp Integration"
|
5086 |
msgstr "Habilitar Integração com Mailchimp"
|
5087 |
|
5088 |
-
#: app/features/mec/settings.php:
|
5089 |
msgid "List ID"
|
5090 |
msgstr "ID da Lista"
|
5091 |
|
5092 |
-
#: app/features/mec/settings.php:
|
5093 |
msgid "Subscription Status"
|
5094 |
msgstr "Estado da Assinatura"
|
5095 |
|
5096 |
-
#: app/features/mec/settings.php:
|
5097 |
msgid "Subscribe automatically"
|
5098 |
msgstr "Inscrever-se automaticamente"
|
5099 |
|
5100 |
-
#: app/features/mec/settings.php:
|
5101 |
msgid "Subscribe by verification"
|
5102 |
msgstr "Inscrever-se por verificação"
|
5103 |
|
5104 |
-
#: app/features/mec/settings.php:
|
5105 |
msgid ""
|
5106 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5107 |
"by mailchimp for subscription verification."
|
@@ -5109,31 +5131,31 @@ msgstr ""
|
|
5109 |
"Se você escolher \"Inscrever-se por verificação\", um e-mail será enviado ao "
|
5110 |
"usuário pelo mailchimp para verificação de assinatura."
|
5111 |
|
5112 |
-
#: app/features/mec/settings.php:
|
5113 |
#, fuzzy
|
5114 |
#| msgid "Filter Options"
|
5115 |
msgid "Upload Field Options"
|
5116 |
msgstr "Opções de Filtro"
|
5117 |
|
5118 |
-
#: app/features/mec/settings.php:
|
5119 |
msgid "Mime types"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: app/features/mec/settings.php:
|
5123 |
msgid "Split mime types with \",\"."
|
5124 |
msgstr ""
|
5125 |
|
5126 |
-
#: app/features/mec/settings.php:
|
5127 |
msgid "Default: jpeg,jpg,png,pdf"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
-
#: app/features/mec/settings.php:
|
5131 |
#, fuzzy
|
5132 |
#| msgid "Maximum events"
|
5133 |
msgid "Maximum file size"
|
5134 |
msgstr "Máximo de eventos"
|
5135 |
|
5136 |
-
#: app/features/mec/settings.php:
|
5137 |
msgid "The unit is Megabyte \"MB\""
|
5138 |
msgstr ""
|
5139 |
|
@@ -5847,8 +5869,8 @@ msgstr "ex. john@smith.com"
|
|
5847 |
msgid "eg. https://webnus.net"
|
5848 |
msgstr "http://webnus.biz"
|
5849 |
|
5850 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5851 |
-
#: app/skins/single.php:
|
5852 |
msgid "Other Organizers"
|
5853 |
msgstr ""
|
5854 |
|
@@ -5867,7 +5889,7 @@ msgstr "Por favor, %s/%s a fim de apresentar novos eventos."
|
|
5867 |
msgid "#"
|
5868 |
msgstr ""
|
5869 |
|
5870 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5871 |
msgid "Status"
|
5872 |
msgstr ""
|
5873 |
|
@@ -5885,7 +5907,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5885 |
msgstr ""
|
5886 |
|
5887 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5888 |
-
#: app/libraries/main.php:
|
5889 |
msgid "Ticket"
|
5890 |
msgstr "Bilhete"
|
5891 |
|
@@ -5899,12 +5921,37 @@ msgstr "Verificação"
|
|
5899 |
msgid "No bookings found!"
|
5900 |
msgstr "Nenhuma reserva encontrada!"
|
5901 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5902 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5903 |
#, fuzzy
|
5904 |
#| msgid "Search Form"
|
5905 |
msgid "Search"
|
5906 |
msgstr "Formulário de Pesquisa"
|
5907 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5908 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5909 |
#: app/features/speakers.php:248
|
5910 |
#, fuzzy
|
@@ -5971,11 +6018,11 @@ msgstr ""
|
|
5971 |
msgid "%s Price"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
-
#: app/libraries/book.php:
|
5975 |
msgid "Discount"
|
5976 |
msgstr "Desconto"
|
5977 |
|
5978 |
-
#: app/libraries/book.php:
|
5979 |
#: app/modules/booking/default.php:401
|
5980 |
msgid "Download Invoice"
|
5981 |
msgstr ""
|
@@ -5999,51 +6046,51 @@ msgctxt "plugin link"
|
|
5999 |
msgid "Upgrade"
|
6000 |
msgstr ""
|
6001 |
|
6002 |
-
#: app/libraries/factory.php:
|
6003 |
msgid "day"
|
6004 |
msgstr "dia"
|
6005 |
|
6006 |
-
#: app/libraries/factory.php:
|
6007 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6008 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6009 |
msgid "days"
|
6010 |
msgstr "dias"
|
6011 |
|
6012 |
-
#: app/libraries/factory.php:
|
6013 |
msgid "hour"
|
6014 |
msgstr "hora"
|
6015 |
|
6016 |
-
#: app/libraries/factory.php:
|
6017 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6018 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6019 |
msgid "hours"
|
6020 |
msgstr "horas"
|
6021 |
|
6022 |
-
#: app/libraries/factory.php:
|
6023 |
msgid "minute"
|
6024 |
msgstr "minuto"
|
6025 |
|
6026 |
-
#: app/libraries/factory.php:
|
6027 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6028 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6029 |
msgid "minutes"
|
6030 |
msgstr "minutos"
|
6031 |
|
6032 |
-
#: app/libraries/factory.php:
|
6033 |
msgid "second"
|
6034 |
msgstr "segundo"
|
6035 |
|
6036 |
-
#: app/libraries/factory.php:
|
6037 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6038 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6039 |
msgid "seconds"
|
6040 |
msgstr "segundos"
|
6041 |
|
6042 |
-
#: app/libraries/factory.php:
|
6043 |
msgid "MEC Single Sidebar"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
-
#: app/libraries/factory.php:
|
6047 |
msgid "Custom sidebar for single and modal page of MEC."
|
6048 |
msgstr ""
|
6049 |
|
@@ -6106,31 +6153,31 @@ msgstr "Visualizar Carrossel"
|
|
6106 |
msgid "Slider View"
|
6107 |
msgstr "Visualização do Slider"
|
6108 |
|
6109 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6110 |
msgid "SU"
|
6111 |
msgstr "DOM"
|
6112 |
|
6113 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6114 |
msgid "MO"
|
6115 |
msgstr "SEG"
|
6116 |
|
6117 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6118 |
msgid "TU"
|
6119 |
msgstr "TER"
|
6120 |
|
6121 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6122 |
msgid "WE"
|
6123 |
msgstr "QUA"
|
6124 |
|
6125 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6126 |
msgid "TH"
|
6127 |
msgstr "QUI"
|
6128 |
|
6129 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6130 |
msgid "FR"
|
6131 |
msgstr "SEX"
|
6132 |
|
6133 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6134 |
msgid "SA"
|
6135 |
msgstr "SAB"
|
6136 |
|
@@ -6282,177 +6329,177 @@ msgstr "A exportação iCal parou!"
|
|
6282 |
msgid "Request is not valid."
|
6283 |
msgstr "O pedido é inválido!"
|
6284 |
|
6285 |
-
#: app/libraries/main.php:
|
6286 |
-
#: app/libraries/main.php:
|
6287 |
-
#: app/libraries/main.php:
|
6288 |
-
#: app/libraries/main.php:
|
6289 |
-
#: app/libraries/main.php:
|
6290 |
-
#: app/libraries/main.php:
|
6291 |
-
#: app/libraries/main.php:
|
6292 |
msgid "Sort"
|
6293 |
msgstr "Ordenar"
|
6294 |
|
6295 |
-
#: app/libraries/main.php:
|
6296 |
-
#: app/libraries/main.php:
|
6297 |
-
#: app/libraries/main.php:
|
6298 |
-
#: app/libraries/main.php:
|
6299 |
-
#: app/libraries/main.php:
|
6300 |
-
#: app/libraries/main.php:
|
6301 |
msgid "Required Field"
|
6302 |
msgstr "Campo Obrigatório"
|
6303 |
|
6304 |
-
#: app/libraries/main.php:
|
6305 |
-
#: app/libraries/main.php:
|
6306 |
-
#: app/libraries/main.php:
|
6307 |
-
#: app/libraries/main.php:
|
6308 |
-
#: app/libraries/main.php:
|
6309 |
-
#: app/libraries/main.php:
|
6310 |
msgid "Insert a label for this field"
|
6311 |
msgstr "Inserir uma etiqueta para este campo"
|
6312 |
|
6313 |
-
#: app/libraries/main.php:
|
6314 |
msgid "HTML and shortcode are allowed."
|
6315 |
msgstr "HTML e códigos curtos são permitidos."
|
6316 |
|
6317 |
-
#: app/libraries/main.php:
|
6318 |
-
#: app/libraries/main.php:
|
6319 |
msgid "Option"
|
6320 |
msgstr "Opção"
|
6321 |
|
6322 |
-
#: app/libraries/main.php:
|
6323 |
#, php-format
|
6324 |
msgid "Instead of %s, the page title with a link will be show."
|
6325 |
msgstr ""
|
6326 |
|
6327 |
-
#: app/libraries/main.php:
|
6328 |
msgid "Agreement Page"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
-
#: app/libraries/main.php:
|
6332 |
msgid "Checked by default"
|
6333 |
msgstr ""
|
6334 |
|
6335 |
-
#: app/libraries/main.php:
|
6336 |
msgid "Unchecked by default"
|
6337 |
msgstr ""
|
6338 |
|
6339 |
-
#: app/libraries/main.php:
|
6340 |
msgid "Insert a label for this option"
|
6341 |
msgstr "Inserir uma etiqueta para esta opção"
|
6342 |
|
6343 |
-
#: app/libraries/main.php:
|
6344 |
msgid "Free"
|
6345 |
msgstr "Grátis"
|
6346 |
|
6347 |
-
#: app/libraries/main.php:
|
6348 |
#, fuzzy
|
6349 |
#| msgid "M.E. Calendar"
|
6350 |
msgid "M.E. Calender"
|
6351 |
msgstr "Calendário E.M."
|
6352 |
|
6353 |
-
#: app/libraries/main.php:
|
6354 |
#, php-format
|
6355 |
msgid "Copy of %s"
|
6356 |
msgstr "Cópia de %s"
|
6357 |
|
6358 |
-
#: app/libraries/main.php:
|
6359 |
msgid "Booked an event."
|
6360 |
msgstr "Um evento reservado."
|
6361 |
|
6362 |
-
#: app/libraries/main.php:
|
6363 |
#, php-format
|
6364 |
msgid "%s booked %s event."
|
6365 |
msgstr "Evento %s reservado %s."
|
6366 |
|
6367 |
-
#: app/libraries/main.php:
|
6368 |
msgid "Taxonomies"
|
6369 |
msgstr ""
|
6370 |
|
6371 |
-
#: app/libraries/main.php:
|
6372 |
msgid "Category Plural Label"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
-
#: app/libraries/main.php:
|
6376 |
msgid "Category Singular Label"
|
6377 |
msgstr ""
|
6378 |
|
6379 |
-
#: app/libraries/main.php:
|
6380 |
msgid "Label Plural Label"
|
6381 |
msgstr ""
|
6382 |
|
6383 |
-
#: app/libraries/main.php:
|
6384 |
msgid "Label Singular Label"
|
6385 |
msgstr ""
|
6386 |
|
6387 |
-
#: app/libraries/main.php:
|
6388 |
msgid "label"
|
6389 |
msgstr ""
|
6390 |
|
6391 |
-
#: app/libraries/main.php:
|
6392 |
msgid "Location Plural Label"
|
6393 |
msgstr ""
|
6394 |
|
6395 |
-
#: app/libraries/main.php:
|
6396 |
msgid "Location Singular Label"
|
6397 |
msgstr ""
|
6398 |
|
6399 |
-
#: app/libraries/main.php:
|
6400 |
msgid "Organizer Plural Label"
|
6401 |
msgstr ""
|
6402 |
|
6403 |
-
#: app/libraries/main.php:
|
6404 |
msgid "Organizer Singular Label"
|
6405 |
msgstr ""
|
6406 |
|
6407 |
-
#: app/libraries/main.php:
|
6408 |
#, fuzzy
|
6409 |
#| msgid "Search Labels"
|
6410 |
msgid "Speaker Plural Label"
|
6411 |
msgstr "Pesquisar Etiquetas"
|
6412 |
|
6413 |
-
#: app/libraries/main.php:
|
6414 |
#, fuzzy
|
6415 |
#| msgid "Popular Labels"
|
6416 |
msgid "Speaker Singular Label"
|
6417 |
msgstr "Etiquetas Populares"
|
6418 |
|
6419 |
-
#: app/libraries/main.php:
|
6420 |
msgid "Sunday abbreviation"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
-
#: app/libraries/main.php:
|
6424 |
msgid "Monday abbreviation"
|
6425 |
msgstr ""
|
6426 |
|
6427 |
-
#: app/libraries/main.php:
|
6428 |
msgid "Tuesday abbreviation"
|
6429 |
msgstr ""
|
6430 |
|
6431 |
-
#: app/libraries/main.php:
|
6432 |
msgid "Wednesday abbreviation"
|
6433 |
msgstr ""
|
6434 |
|
6435 |
-
#: app/libraries/main.php:
|
6436 |
msgid "Thursday abbreviation"
|
6437 |
msgstr ""
|
6438 |
|
6439 |
-
#: app/libraries/main.php:
|
6440 |
msgid "Friday abbreviation"
|
6441 |
msgstr ""
|
6442 |
|
6443 |
-
#: app/libraries/main.php:
|
6444 |
msgid "Saturday abbreviation"
|
6445 |
msgstr ""
|
6446 |
|
6447 |
-
#: app/libraries/main.php:
|
6448 |
msgid "Others"
|
6449 |
msgstr ""
|
6450 |
|
6451 |
-
#: app/libraries/main.php:
|
6452 |
msgid "Booking Success Message"
|
6453 |
msgstr ""
|
6454 |
|
6455 |
-
#: app/libraries/main.php:
|
6456 |
msgid ""
|
6457 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6458 |
"needed, please check your email."
|
@@ -6460,17 +6507,17 @@ msgstr ""
|
|
6460 |
"Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
|
6461 |
"reserva é necessária, por favor verifique seu e-mail."
|
6462 |
|
6463 |
-
#: app/libraries/main.php:
|
6464 |
msgid "Register Button"
|
6465 |
msgstr ""
|
6466 |
|
6467 |
-
#: app/libraries/main.php:
|
6468 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6469 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6470 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6471 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6472 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6473 |
-
#: app/skins/single.php:
|
6474 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6475 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6476 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6481,11 +6528,11 @@ msgstr ""
|
|
6481 |
msgid "REGISTER"
|
6482 |
msgstr "REGISTRAR"
|
6483 |
|
6484 |
-
#: app/libraries/main.php:
|
6485 |
msgid "View Detail Button"
|
6486 |
msgstr ""
|
6487 |
|
6488 |
-
#: app/libraries/main.php:
|
6489 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6490 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6491 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6496,59 +6543,59 @@ msgstr ""
|
|
6496 |
msgid "View Detail"
|
6497 |
msgstr "Ver Detalhes"
|
6498 |
|
6499 |
-
#: app/libraries/main.php:
|
6500 |
msgid "Event Detail Button"
|
6501 |
msgstr ""
|
6502 |
|
6503 |
-
#: app/libraries/main.php:
|
6504 |
msgid "Event Detail"
|
6505 |
msgstr "Detalhes do Evento"
|
6506 |
|
6507 |
-
#: app/libraries/main.php:
|
6508 |
msgid "More Info Link"
|
6509 |
msgstr ""
|
6510 |
|
6511 |
-
#: app/libraries/main.php:
|
6512 |
msgid "Ticket (Singular)"
|
6513 |
msgstr ""
|
6514 |
|
6515 |
-
#: app/libraries/main.php:
|
6516 |
msgid "Tickets (Plural)"
|
6517 |
msgstr ""
|
6518 |
|
6519 |
-
#: app/libraries/main.php:
|
6520 |
msgid "EventON"
|
6521 |
msgstr ""
|
6522 |
|
6523 |
-
#: app/libraries/main.php:
|
6524 |
msgid "The Events Calendar"
|
6525 |
msgstr ""
|
6526 |
|
6527 |
-
#: app/libraries/main.php:
|
6528 |
msgid "Events Schedule WP Plugin"
|
6529 |
msgstr ""
|
6530 |
|
6531 |
-
#: app/libraries/main.php:
|
6532 |
msgid "Calendarize It"
|
6533 |
msgstr ""
|
6534 |
|
6535 |
-
#: app/libraries/main.php:
|
6536 |
msgid "Confirmed"
|
6537 |
msgstr "Confirmado"
|
6538 |
|
6539 |
-
#: app/libraries/main.php:
|
6540 |
msgid "Rejected"
|
6541 |
msgstr "Recusado"
|
6542 |
|
6543 |
-
#: app/libraries/main.php:
|
6544 |
msgid "Pending"
|
6545 |
msgstr "Pendente"
|
6546 |
|
6547 |
-
#: app/libraries/main.php:
|
6548 |
msgid "Waiting"
|
6549 |
msgstr "Aguardando"
|
6550 |
|
6551 |
-
#: app/libraries/main.php:
|
6552 |
msgid "Skin controller does not exist."
|
6553 |
msgstr "Controlador de pele não existe."
|
6554 |
|
@@ -6556,57 +6603,49 @@ msgstr "Controlador de pele não existe."
|
|
6556 |
msgid "Please verify your email."
|
6557 |
msgstr "Por favor, verifique seu e-mail."
|
6558 |
|
6559 |
-
#: app/libraries/notifications.php:
|
6560 |
msgid "Your booking is received."
|
6561 |
msgstr ""
|
6562 |
|
6563 |
-
#: app/libraries/notifications.php:
|
6564 |
msgid "Your booking is confirmed."
|
6565 |
msgstr "Sua reserva foi confirmada."
|
6566 |
|
6567 |
-
#: app/libraries/notifications.php:
|
6568 |
#, fuzzy
|
6569 |
#| msgid "Your booking cannot be canceled."
|
6570 |
msgid "booking canceled."
|
6571 |
msgstr "Sua reserva não pôde ser cancelada."
|
6572 |
|
6573 |
-
#: app/libraries/notifications.php:
|
6574 |
msgid "A new booking is received."
|
6575 |
msgstr "Uma nova reserva foi recebida."
|
6576 |
|
6577 |
-
#: app/libraries/notifications.php:
|
6578 |
msgid "A new event is added."
|
6579 |
msgstr "Um novo evento foi adicionado."
|
6580 |
|
6581 |
-
#: app/libraries/notifications.php:
|
6582 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6583 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6584 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6585 |
-
#: app/skins/single/modern.php:184
|
6586 |
-
msgid "All of the day"
|
6587 |
-
msgstr "Durante o dia todo"
|
6588 |
-
|
6589 |
-
#: app/libraries/notifications.php:611
|
6590 |
msgid "to"
|
6591 |
msgstr ""
|
6592 |
|
6593 |
-
#: app/libraries/notifications.php:
|
6594 |
msgid "+ Add to Google Calendar"
|
6595 |
msgstr "+ Adicionar ao Calendário do Google"
|
6596 |
|
6597 |
-
#: app/libraries/notifications.php:
|
6598 |
msgid "+ iCal export"
|
6599 |
msgstr "+ Exportar para iCal"
|
6600 |
|
6601 |
-
#: app/libraries/notifications.php:
|
6602 |
msgid "Yes"
|
6603 |
msgstr ""
|
6604 |
|
6605 |
-
#: app/libraries/notifications.php:
|
6606 |
msgid "No"
|
6607 |
msgstr ""
|
6608 |
|
6609 |
-
#: app/libraries/skins.php:
|
6610 |
msgid "Ignore month and years"
|
6611 |
msgstr "Ignore meses e anos"
|
6612 |
|
@@ -6683,7 +6722,7 @@ msgstr "Endereço de..."
|
|
6683 |
msgid "Get Directions"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6687 |
msgid "Share this event"
|
6688 |
msgstr "Compartilhar Este Evento"
|
6689 |
|
@@ -6710,7 +6749,7 @@ msgstr "Próxima Ocorrência"
|
|
6710 |
msgid "Go to occurrence page"
|
6711 |
msgstr "Ir para a página da ocorrência"
|
6712 |
|
6713 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6714 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6715 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6716 |
msgid "Time"
|
@@ -6818,7 +6857,7 @@ msgstr "Sem eventos"
|
|
6818 |
msgid "List"
|
6819 |
msgstr "Lista"
|
6820 |
|
6821 |
-
#: app/skins/masonry.php:
|
6822 |
msgid "All"
|
6823 |
msgstr ""
|
6824 |
|
@@ -6836,31 +6875,31 @@ msgstr "Eventos para %s"
|
|
6836 |
msgid "No Events"
|
6837 |
msgstr "Sem Eventos"
|
6838 |
|
6839 |
-
#: app/skins/single.php:
|
6840 |
msgid "Home"
|
6841 |
msgstr ""
|
6842 |
|
6843 |
-
#: app/skins/single.php:
|
6844 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6845 |
#: app/skins/single/modern.php:256
|
6846 |
msgid "Sold out!"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
-
#: app/skins/single.php:
|
6850 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6851 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6852 |
#: app/skins/single/modern.php:41
|
6853 |
msgid "Phone"
|
6854 |
msgstr "Fone"
|
6855 |
|
6856 |
-
#: app/skins/single.php:
|
6857 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6858 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6859 |
#: app/skins/single/modern.php:55
|
6860 |
msgid "Website"
|
6861 |
msgstr "Website"
|
6862 |
|
6863 |
-
#: app/skins/single.php:
|
6864 |
#, fuzzy
|
6865 |
#| msgid "No Search Options"
|
6866 |
msgid "Speakers:"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
6 |
+
"PO-Revision-Date: 2019-08-13 16:46+0430\n"
|
7 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
8 |
"Language-Team: Portuguese (Brazil)\n"
|
9 |
"Language: pt_BR\n"
|
337 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
338 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
339 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
340 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
341 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
342 |
#: app/features/mec/styling.php:59
|
343 |
msgid "Mailchimp Integration"
|
403 |
#: app/features/mec/meta_boxes/search_form.php:453
|
404 |
#: app/features/mec/meta_boxes/search_form.php:514
|
405 |
#: app/features/mec/meta_boxes/search_form.php:575
|
406 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
407 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
408 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
409 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
410 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
411 |
msgid "Category"
|
413 |
|
414 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
415 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
416 |
+
#: app/libraries/main.php:4508
|
417 |
msgid "Categories"
|
418 |
msgstr "Categorias"
|
419 |
|
488 |
#: app/features/events.php:322 app/features/events.php:3168
|
489 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
490 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
491 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
492 |
#: app/widgets/single.php:103
|
493 |
msgid "Event Cost"
|
494 |
msgstr "Custo do Evento"
|
495 |
|
496 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
497 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
498 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
499 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
500 |
msgid "Cost"
|
511 |
#: app/features/events.php:432 app/features/events.php:2250
|
512 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
513 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
514 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
515 |
#: app/modules/booking/steps/form.php:37
|
516 |
msgid "Name"
|
517 |
msgstr "Nome"
|
522 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
523 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
524 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
525 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
526 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
527 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
528 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
529 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
530 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
531 |
msgid "Email"
|
671 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
672 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
673 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
674 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
675 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
676 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
677 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
678 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
679 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
680 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
681 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
682 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
683 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
684 |
#: app/skins/single/modern.php:133
|
888 |
|
889 |
#: app/features/events.php:1130 app/features/events.php:2340
|
890 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
891 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
892 |
#: app/modules/booking/steps/tickets.php:22
|
893 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
894 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
895 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
896 |
msgid "Date"
|
908 |
msgstr ""
|
909 |
|
910 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
911 |
+
#: app/skins/single.php:898
|
912 |
msgid "Hourly Schedule"
|
913 |
msgstr "Horários da Programação"
|
914 |
|
947 |
#: app/features/events.php:2154 app/features/events.php:2196
|
948 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
949 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
950 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
951 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
952 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
953 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
954 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
955 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
956 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
957 |
+
#: app/libraries/main.php:2612
|
958 |
msgid "Remove"
|
959 |
msgstr "Remover"
|
960 |
|
987 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
988 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
989 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
990 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4516
|
991 |
#: app/modules/speakers/details.php:18
|
992 |
msgid "Speakers"
|
993 |
msgstr ""
|
1004 |
msgstr "Links do Evento"
|
1005 |
|
1006 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1007 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4539
|
1008 |
msgid "Event Link"
|
1009 |
msgstr "Link do Evento"
|
1010 |
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1034 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4540
|
1035 |
+
#: app/skins/single.php:627 app/skins/single/default.php:118
|
1036 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1037 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1038 |
#: app/widgets/single.php:107
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1100 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1101 |
msgid "Tickets"
|
1102 |
msgstr "Bilhetes"
|
1103 |
|
1171 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1172 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1173 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1174 |
+
#: app/features/mec/settings.php:937 app/features/mec/single.php:408
|
1175 |
+
#: app/libraries/skins.php:937
|
1176 |
msgid "Label"
|
1177 |
msgstr "Etiqueta"
|
1178 |
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1250 |
+
#: app/libraries/main.php:2202
|
1251 |
#, fuzzy
|
1252 |
#| msgid "Name"
|
1253 |
msgid "MEC Name"
|
1254 |
msgstr "Nome"
|
1255 |
|
1256 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1257 |
+
#: app/libraries/main.php:2231
|
1258 |
#, fuzzy
|
1259 |
#| msgid "Email"
|
1260 |
msgid "MEC Email"
|
1261 |
msgstr "E-mail"
|
1262 |
|
1263 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1264 |
+
#: app/libraries/main.php:2172
|
1265 |
msgid "Text"
|
1266 |
msgstr "Texto"
|
1267 |
|
1268 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1269 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1270 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1271 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2348
|
1272 |
msgid "Tel"
|
1273 |
msgstr "Telefone"
|
1274 |
|
1275 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1276 |
+
#: app/libraries/main.php:2290
|
1277 |
msgid "File"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1281 |
+
#: app/libraries/main.php:2377
|
1282 |
msgid "Textarea"
|
1283 |
msgstr "Área de texto"
|
1284 |
|
1285 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1286 |
+
#: app/libraries/main.php:2430
|
1287 |
msgid "Checkboxes"
|
1288 |
msgstr "Caixas de seleção"
|
1289 |
|
1290 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1291 |
+
#: app/libraries/main.php:2474
|
1292 |
msgid "Radio Buttons"
|
1293 |
msgstr "Botões Rádio"
|
1294 |
|
1361 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1362 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1363 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1364 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2518
|
1365 |
msgid "Dropdown"
|
1366 |
msgstr "Suspenso"
|
1367 |
|
1368 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1369 |
+
#: app/libraries/main.php:2565
|
1370 |
msgid "Agreement"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1374 |
+
#: app/libraries/main.php:2406
|
1375 |
msgid "Paragraph"
|
1376 |
msgstr "Parágrafo"
|
1377 |
|
1409 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1410 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1411 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1412 |
+
#: app/features/mec/settings.php:911 app/features/mec/single.php:398
|
1413 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1414 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1415 |
+
#: app/skins/single.php:875 app/skins/single/default.php:154
|
1416 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1417 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1418 |
msgid "Location"
|
1431 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1432 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1434 |
+
#: app/features/mec/settings.php:917 app/features/mec/single.php:394
|
1435 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1436 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1437 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4515
|
1438 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
1439 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1440 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1441 |
#: app/skins/single/modern.php:31
|
1588 |
|
1589 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1590 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1591 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
|
1592 |
+
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1593 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1594 |
#: app/skins/single/modern.php:214
|
1595 |
msgid "Labels"
|
1936 |
|
1937 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1938 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1939 |
+
#: app/features/mec/settings.php:1103 app/features/mec/single.php:480
|
1940 |
msgid "Checking ..."
|
1941 |
msgstr "Verificando ...."
|
1942 |
|
2340 |
msgstr "Imagem Destacada"
|
2341 |
|
2342 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2343 |
+
#: app/libraries/main.php:4756 app/skins/agenda/render.php:41
|
2344 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2345 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2346 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2375 |
|
2376 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2377 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2378 |
+
#: app/libraries/main.php:4512
|
2379 |
msgid "Locations"
|
2380 |
msgstr "Localizações"
|
2381 |
|
2482 |
msgid "Don't show map in single event page"
|
2483 |
msgstr "Não mostrar mapa na página de evento individual"
|
2484 |
|
2485 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2486 |
#, fuzzy
|
2487 |
#| msgid "Search Locations"
|
2488 |
msgid "Other Locations"
|
2534 |
|
2535 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2536 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2537 |
+
#: app/libraries/main.php:4514
|
2538 |
msgid "Organizers"
|
2539 |
msgstr "Organizadores"
|
2540 |
|
2655 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2656 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2657 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2658 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
|
2659 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2660 |
+
#: app/features/mec/settings.php:1134 app/features/mec/single.php:14
|
2661 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2662 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2663 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2757 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2758 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2759 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2760 |
+
#: app/skins/single.php:162
|
2761 |
#, fuzzy
|
2762 |
#| msgid "featured event"
|
2763 |
msgid "Related Events"
|
2888 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2889 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2890 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2891 |
+
#: app/libraries/notifications.php:405
|
2892 |
msgid "Booking Reminder"
|
2893 |
msgstr ""
|
2894 |
|
3068 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3069 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3070 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3071 |
+
#: app/features/mec/settings.php:1098 app/features/mec/single.php:475
|
3072 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3073 |
msgid "Saved"
|
3074 |
msgstr "Salvo"
|
3076 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3077 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3078 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3079 |
+
#: app/features/mec/settings.php:1099 app/features/mec/single.php:476
|
3080 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3081 |
msgid "Settings Saved!"
|
3082 |
msgstr ""
|
3084 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3085 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3086 |
#: app/features/mec/notifications.php:735
|
3087 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
|
3088 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
3089 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
3090 |
msgid "Verified"
|
3091 |
msgstr "Verificado"
|
3092 |
|
3093 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3094 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
|
3095 |
#: app/features/mec/single.php:502
|
3096 |
msgid "Please Refresh Page"
|
3097 |
msgstr "Por favor, Atualize a Página"
|
4029 |
#: app/features/mec/meta_boxes/search_form.php:474
|
4030 |
#: app/features/mec/meta_boxes/search_form.php:535
|
4031 |
#: app/features/mec/meta_boxes/search_form.php:596
|
4032 |
+
#: app/features/mec/settings.php:924 app/features/mec/single.php:403
|
4033 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
4034 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
4035 |
msgid "Speaker"
|
4036 |
msgstr ""
|
4037 |
|
4045 |
#: app/features/mec/meta_boxes/search_form.php:481
|
4046 |
#: app/features/mec/meta_boxes/search_form.php:542
|
4047 |
#: app/features/mec/meta_boxes/search_form.php:603
|
4048 |
+
#: app/features/mec/settings.php:931 app/features/mec/single.php:412
|
4049 |
+
#: app/libraries/skins.php:911
|
4050 |
#, fuzzy
|
4051 |
#| msgid "Tags"
|
4052 |
msgid "Tag"
|
4128 |
msgstr "Mostrar Google Mapas na página do evento"
|
4129 |
|
4130 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4131 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
4132 |
msgid "API Key"
|
4133 |
msgstr "Chave API"
|
4134 |
|
4135 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
4136 |
+
#: app/features/mec/settings.php:980
|
4137 |
msgid "Required!"
|
4138 |
msgstr "Obrigatória!"
|
4139 |
|
4743 |
msgstr ""
|
4744 |
|
4745 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4746 |
+
#: app/libraries/main.php:4521
|
4747 |
msgid "Weekdays"
|
4748 |
msgstr "Dias da semana"
|
4749 |
|
5077 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: app/features/mec/settings.php:890
|
5081 |
+
msgid "Ajax Live mode"
|
5082 |
+
msgstr ""
|
5083 |
+
|
5084 |
+
#: app/features/mec/settings.php:894
|
5085 |
+
msgid "Ajax mode"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
+
#: app/features/mec/settings.php:895
|
5089 |
+
msgid ""
|
5090 |
+
"if you enable this option, search button disappeared and to use this "
|
5091 |
+
"feature, text input field must be enabled."
|
5092 |
+
msgstr ""
|
5093 |
+
|
5094 |
+
#: app/features/mec/settings.php:901
|
5095 |
+
#, fuzzy
|
5096 |
+
#| msgid "Search Form"
|
5097 |
+
msgid "Search bar fields"
|
5098 |
+
msgstr "Formulário de Pesquisa"
|
5099 |
+
|
5100 |
+
#: app/features/mec/settings.php:943
|
5101 |
+
#, fuzzy
|
5102 |
+
#| msgid "Text Input"
|
5103 |
+
msgid "Text input"
|
5104 |
+
msgstr "Entrada de Texto"
|
5105 |
+
|
5106 |
+
#: app/features/mec/settings.php:956
|
5107 |
msgid "Enable Mailchimp Integration"
|
5108 |
msgstr "Habilitar Integração com Mailchimp"
|
5109 |
|
5110 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
5111 |
msgid "List ID"
|
5112 |
msgstr "ID da Lista"
|
5113 |
|
5114 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
5115 |
msgid "Subscription Status"
|
5116 |
msgstr "Estado da Assinatura"
|
5117 |
|
5118 |
+
#: app/features/mec/settings.php:990
|
5119 |
msgid "Subscribe automatically"
|
5120 |
msgstr "Inscrever-se automaticamente"
|
5121 |
|
5122 |
+
#: app/features/mec/settings.php:991
|
5123 |
msgid "Subscribe by verification"
|
5124 |
msgstr "Inscrever-se por verificação"
|
5125 |
|
5126 |
+
#: app/features/mec/settings.php:996
|
5127 |
msgid ""
|
5128 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5129 |
"by mailchimp for subscription verification."
|
5131 |
"Se você escolher \"Inscrever-se por verificação\", um e-mail será enviado ao "
|
5132 |
"usuário pelo mailchimp para verificação de assinatura."
|
5133 |
|
5134 |
+
#: app/features/mec/settings.php:1008
|
5135 |
#, fuzzy
|
5136 |
#| msgid "Filter Options"
|
5137 |
msgid "Upload Field Options"
|
5138 |
msgstr "Opções de Filtro"
|
5139 |
|
5140 |
+
#: app/features/mec/settings.php:1010
|
5141 |
msgid "Mime types"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
+
#: app/features/mec/settings.php:1014
|
5145 |
msgid "Split mime types with \",\"."
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: app/features/mec/settings.php:1014
|
5149 |
msgid "Default: jpeg,jpg,png,pdf"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: app/features/mec/settings.php:1017
|
5153 |
#, fuzzy
|
5154 |
#| msgid "Maximum events"
|
5155 |
msgid "Maximum file size"
|
5156 |
msgstr "Máximo de eventos"
|
5157 |
|
5158 |
+
#: app/features/mec/settings.php:1021
|
5159 |
msgid "The unit is Megabyte \"MB\""
|
5160 |
msgstr ""
|
5161 |
|
5869 |
msgid "eg. https://webnus.net"
|
5870 |
msgstr "http://webnus.biz"
|
5871 |
|
5872 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5873 |
+
#: app/skins/single.php:813
|
5874 |
msgid "Other Organizers"
|
5875 |
msgstr ""
|
5876 |
|
5889 |
msgid "#"
|
5890 |
msgstr ""
|
5891 |
|
5892 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5893 |
msgid "Status"
|
5894 |
msgstr ""
|
5895 |
|
5907 |
msgstr ""
|
5908 |
|
5909 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5910 |
+
#: app/libraries/main.php:4543
|
5911 |
msgid "Ticket"
|
5912 |
msgstr "Bilhete"
|
5913 |
|
5921 |
msgid "No bookings found!"
|
5922 |
msgstr "Nenhuma reserva encontrada!"
|
5923 |
|
5924 |
+
#: app/features/search.php:90
|
5925 |
+
msgid "Please enter at least 3 characters and try again"
|
5926 |
+
msgstr ""
|
5927 |
+
|
5928 |
+
#: app/features/search_bar/search_bar.php:26
|
5929 |
+
msgid "Please enter at least 3 characters"
|
5930 |
+
msgstr ""
|
5931 |
+
|
5932 |
#: app/features/search_bar/search_bar.php:28
|
5933 |
+
msgid "Search results will show here"
|
5934 |
+
msgstr ""
|
5935 |
+
|
5936 |
+
#: app/features/search_bar/search_bar.php:39
|
5937 |
#, fuzzy
|
5938 |
#| msgid "Search Form"
|
5939 |
msgid "Search"
|
5940 |
msgstr "Formulário de Pesquisa"
|
5941 |
|
5942 |
+
#: app/features/search_bar/search_noresult.php:1
|
5943 |
+
msgid "No search result."
|
5944 |
+
msgstr ""
|
5945 |
+
|
5946 |
+
#: app/features/search_bar/search_result.php:11
|
5947 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5948 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5949 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5950 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5951 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5952 |
+
msgid "All of the day"
|
5953 |
+
msgstr "Durante o dia todo"
|
5954 |
+
|
5955 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5956 |
#: app/features/speakers.php:248
|
5957 |
#, fuzzy
|
6018 |
msgid "%s Price"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
+
#: app/libraries/book.php:539
|
6022 |
msgid "Discount"
|
6023 |
msgstr "Desconto"
|
6024 |
|
6025 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
6026 |
#: app/modules/booking/default.php:401
|
6027 |
msgid "Download Invoice"
|
6028 |
msgstr ""
|
6046 |
msgid "Upgrade"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: app/libraries/factory.php:333
|
6050 |
msgid "day"
|
6051 |
msgstr "dia"
|
6052 |
|
6053 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
6054 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
6055 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
6056 |
msgid "days"
|
6057 |
msgstr "dias"
|
6058 |
|
6059 |
+
#: app/libraries/factory.php:335
|
6060 |
msgid "hour"
|
6061 |
msgstr "hora"
|
6062 |
|
6063 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
6064 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
6065 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
6066 |
msgid "hours"
|
6067 |
msgstr "horas"
|
6068 |
|
6069 |
+
#: app/libraries/factory.php:337
|
6070 |
msgid "minute"
|
6071 |
msgstr "minuto"
|
6072 |
|
6073 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
6074 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
6075 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
6076 |
msgid "minutes"
|
6077 |
msgstr "minutos"
|
6078 |
|
6079 |
+
#: app/libraries/factory.php:339
|
6080 |
msgid "second"
|
6081 |
msgstr "segundo"
|
6082 |
|
6083 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
6084 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
6085 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
6086 |
msgid "seconds"
|
6087 |
msgstr "segundos"
|
6088 |
|
6089 |
+
#: app/libraries/factory.php:383
|
6090 |
msgid "MEC Single Sidebar"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
+
#: app/libraries/factory.php:384
|
6094 |
msgid "Custom sidebar for single and modal page of MEC."
|
6095 |
msgstr ""
|
6096 |
|
6153 |
msgid "Slider View"
|
6154 |
msgstr "Visualização do Slider"
|
6155 |
|
6156 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
6157 |
msgid "SU"
|
6158 |
msgstr "DOM"
|
6159 |
|
6160 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
6161 |
msgid "MO"
|
6162 |
msgstr "SEG"
|
6163 |
|
6164 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
6165 |
msgid "TU"
|
6166 |
msgstr "TER"
|
6167 |
|
6168 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
6169 |
msgid "WE"
|
6170 |
msgstr "QUA"
|
6171 |
|
6172 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
6173 |
msgid "TH"
|
6174 |
msgstr "QUI"
|
6175 |
|
6176 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
6177 |
msgid "FR"
|
6178 |
msgstr "SEX"
|
6179 |
|
6180 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
6181 |
msgid "SA"
|
6182 |
msgstr "SAB"
|
6183 |
|
6329 |
msgid "Request is not valid."
|
6330 |
msgstr "O pedido é inválido!"
|
6331 |
|
6332 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
6333 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
6334 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
6335 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
6336 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
6337 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
6338 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
6339 |
msgid "Sort"
|
6340 |
msgstr "Ordenar"
|
6341 |
|
6342 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
6343 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
6344 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
6345 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
6346 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
6347 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
6348 |
msgid "Required Field"
|
6349 |
msgstr "Campo Obrigatório"
|
6350 |
|
6351 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
6352 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
6353 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
6354 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
6355 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
6356 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
6357 |
msgid "Insert a label for this field"
|
6358 |
msgstr "Inserir uma etiqueta para este campo"
|
6359 |
|
6360 |
+
#: app/libraries/main.php:2411
|
6361 |
msgid "HTML and shortcode are allowed."
|
6362 |
msgstr "HTML e códigos curtos são permitidos."
|
6363 |
|
6364 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
6365 |
+
#: app/libraries/main.php:2542
|
6366 |
msgid "Option"
|
6367 |
msgstr "Opção"
|
6368 |
|
6369 |
+
#: app/libraries/main.php:2576
|
6370 |
#, php-format
|
6371 |
msgid "Instead of %s, the page title with a link will be show."
|
6372 |
msgstr ""
|
6373 |
|
6374 |
+
#: app/libraries/main.php:2578
|
6375 |
msgid "Agreement Page"
|
6376 |
msgstr ""
|
6377 |
|
6378 |
+
#: app/libraries/main.php:2589
|
6379 |
msgid "Checked by default"
|
6380 |
msgstr ""
|
6381 |
|
6382 |
+
#: app/libraries/main.php:2590
|
6383 |
msgid "Unchecked by default"
|
6384 |
msgstr ""
|
6385 |
|
6386 |
+
#: app/libraries/main.php:2613
|
6387 |
msgid "Insert a label for this option"
|
6388 |
msgstr "Inserir uma etiqueta para esta opção"
|
6389 |
|
6390 |
+
#: app/libraries/main.php:2628
|
6391 |
msgid "Free"
|
6392 |
msgstr "Grátis"
|
6393 |
|
6394 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6395 |
#, fuzzy
|
6396 |
#| msgid "M.E. Calendar"
|
6397 |
msgid "M.E. Calender"
|
6398 |
msgstr "Calendário E.M."
|
6399 |
|
6400 |
+
#: app/libraries/main.php:3349
|
6401 |
#, php-format
|
6402 |
msgid "Copy of %s"
|
6403 |
msgstr "Cópia de %s"
|
6404 |
|
6405 |
+
#: app/libraries/main.php:4022
|
6406 |
msgid "Booked an event."
|
6407 |
msgstr "Um evento reservado."
|
6408 |
|
6409 |
+
#: app/libraries/main.php:4063
|
6410 |
#, php-format
|
6411 |
msgid "%s booked %s event."
|
6412 |
msgstr "Evento %s reservado %s."
|
6413 |
|
6414 |
+
#: app/libraries/main.php:4506
|
6415 |
msgid "Taxonomies"
|
6416 |
msgstr ""
|
6417 |
|
6418 |
+
#: app/libraries/main.php:4508
|
6419 |
msgid "Category Plural Label"
|
6420 |
msgstr ""
|
6421 |
|
6422 |
+
#: app/libraries/main.php:4509
|
6423 |
msgid "Category Singular Label"
|
6424 |
msgstr ""
|
6425 |
|
6426 |
+
#: app/libraries/main.php:4510
|
6427 |
msgid "Label Plural Label"
|
6428 |
msgstr ""
|
6429 |
|
6430 |
+
#: app/libraries/main.php:4511
|
6431 |
msgid "Label Singular Label"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
+
#: app/libraries/main.php:4511
|
6435 |
msgid "label"
|
6436 |
msgstr ""
|
6437 |
|
6438 |
+
#: app/libraries/main.php:4512
|
6439 |
msgid "Location Plural Label"
|
6440 |
msgstr ""
|
6441 |
|
6442 |
+
#: app/libraries/main.php:4513
|
6443 |
msgid "Location Singular Label"
|
6444 |
msgstr ""
|
6445 |
|
6446 |
+
#: app/libraries/main.php:4514
|
6447 |
msgid "Organizer Plural Label"
|
6448 |
msgstr ""
|
6449 |
|
6450 |
+
#: app/libraries/main.php:4515
|
6451 |
msgid "Organizer Singular Label"
|
6452 |
msgstr ""
|
6453 |
|
6454 |
+
#: app/libraries/main.php:4516
|
6455 |
#, fuzzy
|
6456 |
#| msgid "Search Labels"
|
6457 |
msgid "Speaker Plural Label"
|
6458 |
msgstr "Pesquisar Etiquetas"
|
6459 |
|
6460 |
+
#: app/libraries/main.php:4517
|
6461 |
#, fuzzy
|
6462 |
#| msgid "Popular Labels"
|
6463 |
msgid "Speaker Singular Label"
|
6464 |
msgstr "Etiquetas Populares"
|
6465 |
|
6466 |
+
#: app/libraries/main.php:4523
|
6467 |
msgid "Sunday abbreviation"
|
6468 |
msgstr ""
|
6469 |
|
6470 |
+
#: app/libraries/main.php:4524
|
6471 |
msgid "Monday abbreviation"
|
6472 |
msgstr ""
|
6473 |
|
6474 |
+
#: app/libraries/main.php:4525
|
6475 |
msgid "Tuesday abbreviation"
|
6476 |
msgstr ""
|
6477 |
|
6478 |
+
#: app/libraries/main.php:4526
|
6479 |
msgid "Wednesday abbreviation"
|
6480 |
msgstr ""
|
6481 |
|
6482 |
+
#: app/libraries/main.php:4527
|
6483 |
msgid "Thursday abbreviation"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
+
#: app/libraries/main.php:4528
|
6487 |
msgid "Friday abbreviation"
|
6488 |
msgstr ""
|
6489 |
|
6490 |
+
#: app/libraries/main.php:4529
|
6491 |
msgid "Saturday abbreviation"
|
6492 |
msgstr ""
|
6493 |
|
6494 |
+
#: app/libraries/main.php:4533
|
6495 |
msgid "Others"
|
6496 |
msgstr ""
|
6497 |
|
6498 |
+
#: app/libraries/main.php:4535
|
6499 |
msgid "Booking Success Message"
|
6500 |
msgstr ""
|
6501 |
|
6502 |
+
#: app/libraries/main.php:4535
|
6503 |
msgid ""
|
6504 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6505 |
"needed, please check your email."
|
6507 |
"Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
|
6508 |
"reserva é necessária, por favor verifique seu e-mail."
|
6509 |
|
6510 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6511 |
msgid "Register Button"
|
6512 |
msgstr ""
|
6513 |
|
6514 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6515 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6516 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6517 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6518 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6519 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6520 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6521 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6522 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6523 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6528 |
msgid "REGISTER"
|
6529 |
msgstr "REGISTRAR"
|
6530 |
|
6531 |
+
#: app/libraries/main.php:4537
|
6532 |
msgid "View Detail Button"
|
6533 |
msgstr ""
|
6534 |
|
6535 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6536 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6537 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6538 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6543 |
msgid "View Detail"
|
6544 |
msgstr "Ver Detalhes"
|
6545 |
|
6546 |
+
#: app/libraries/main.php:4538
|
6547 |
msgid "Event Detail Button"
|
6548 |
msgstr ""
|
6549 |
|
6550 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6551 |
msgid "Event Detail"
|
6552 |
msgstr "Detalhes do Evento"
|
6553 |
|
6554 |
+
#: app/libraries/main.php:4540
|
6555 |
msgid "More Info Link"
|
6556 |
msgstr ""
|
6557 |
|
6558 |
+
#: app/libraries/main.php:4543
|
6559 |
msgid "Ticket (Singular)"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
+
#: app/libraries/main.php:4544
|
6563 |
msgid "Tickets (Plural)"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
+
#: app/libraries/main.php:4630
|
6567 |
msgid "EventON"
|
6568 |
msgstr ""
|
6569 |
|
6570 |
+
#: app/libraries/main.php:4631
|
6571 |
msgid "The Events Calendar"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
+
#: app/libraries/main.php:4632
|
6575 |
msgid "Events Schedule WP Plugin"
|
6576 |
msgstr ""
|
6577 |
|
6578 |
+
#: app/libraries/main.php:4633
|
6579 |
msgid "Calendarize It"
|
6580 |
msgstr ""
|
6581 |
|
6582 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6583 |
msgid "Confirmed"
|
6584 |
msgstr "Confirmado"
|
6585 |
|
6586 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6587 |
msgid "Rejected"
|
6588 |
msgstr "Recusado"
|
6589 |
|
6590 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6591 |
msgid "Pending"
|
6592 |
msgstr "Pendente"
|
6593 |
|
6594 |
+
#: app/libraries/main.php:4757
|
6595 |
msgid "Waiting"
|
6596 |
msgstr "Aguardando"
|
6597 |
|
6598 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6599 |
msgid "Skin controller does not exist."
|
6600 |
msgstr "Controlador de pele não existe."
|
6601 |
|
6603 |
msgid "Please verify your email."
|
6604 |
msgstr "Por favor, verifique seu e-mail."
|
6605 |
|
6606 |
+
#: app/libraries/notifications.php:125
|
6607 |
msgid "Your booking is received."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: app/libraries/notifications.php:193
|
6611 |
msgid "Your booking is confirmed."
|
6612 |
msgstr "Sua reserva foi confirmada."
|
6613 |
|
6614 |
+
#: app/libraries/notifications.php:282
|
6615 |
#, fuzzy
|
6616 |
#| msgid "Your booking cannot be canceled."
|
6617 |
msgid "booking canceled."
|
6618 |
msgstr "Sua reserva não pôde ser cancelada."
|
6619 |
|
6620 |
+
#: app/libraries/notifications.php:337
|
6621 |
msgid "A new booking is received."
|
6622 |
msgstr "Uma nova reserva foi recebida."
|
6623 |
|
6624 |
+
#: app/libraries/notifications.php:488
|
6625 |
msgid "A new event is added."
|
6626 |
msgstr "Um novo evento foi adicionado."
|
6627 |
|
6628 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6629 |
msgid "to"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6633 |
msgid "+ Add to Google Calendar"
|
6634 |
msgstr "+ Adicionar ao Calendário do Google"
|
6635 |
|
6636 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6637 |
msgid "+ iCal export"
|
6638 |
msgstr "+ Exportar para iCal"
|
6639 |
|
6640 |
+
#: app/libraries/notifications.php:752
|
6641 |
msgid "Yes"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: app/libraries/notifications.php:752
|
6645 |
msgid "No"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: app/libraries/skins.php:958
|
6649 |
msgid "Ignore month and years"
|
6650 |
msgstr "Ignore meses e anos"
|
6651 |
|
6722 |
msgid "Get Directions"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6726 |
msgid "Share this event"
|
6727 |
msgstr "Compartilhar Este Evento"
|
6728 |
|
6749 |
msgid "Go to occurrence page"
|
6750 |
msgstr "Ir para a página da ocorrência"
|
6751 |
|
6752 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6753 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6754 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6755 |
msgid "Time"
|
6857 |
msgid "List"
|
6858 |
msgstr "Lista"
|
6859 |
|
6860 |
+
#: app/skins/masonry.php:238
|
6861 |
msgid "All"
|
6862 |
msgstr ""
|
6863 |
|
6875 |
msgid "No Events"
|
6876 |
msgstr "Sem Eventos"
|
6877 |
|
6878 |
+
#: app/skins/single.php:204
|
6879 |
msgid "Home"
|
6880 |
msgstr ""
|
6881 |
|
6882 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6883 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6884 |
#: app/skins/single/modern.php:256
|
6885 |
msgid "Sold out!"
|
6886 |
msgstr ""
|
6887 |
|
6888 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6889 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6890 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6891 |
#: app/skins/single/modern.php:41
|
6892 |
msgid "Phone"
|
6893 |
msgstr "Fone"
|
6894 |
|
6895 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6896 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6897 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6898 |
#: app/skins/single/modern.php:55
|
6899 |
msgid "Website"
|
6900 |
msgstr "Website"
|
6901 |
|
6902 |
+
#: app/skins/single.php:912
|
6903 |
#, fuzzy
|
6904 |
#| msgid "No Search Options"
|
6905 |
msgid "Speakers:"
|
languages/modern-events-calendar-lite-ru_RU.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-ru_RU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-08-
|
5 |
-
"PO-Revision-Date: 2019-08-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
|
8 |
"Language: ru_RU\n"
|
@@ -335,7 +335,7 @@ msgstr ""
|
|
335 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
336 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
337 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
338 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
339 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
340 |
#: app/features/mec/styling.php:59
|
341 |
msgid "Mailchimp Integration"
|
@@ -401,9 +401,9 @@ msgstr "Событий в корзине не найдено!"
|
|
401 |
#: app/features/mec/meta_boxes/search_form.php:453
|
402 |
#: app/features/mec/meta_boxes/search_form.php:514
|
403 |
#: app/features/mec/meta_boxes/search_form.php:575
|
404 |
-
#: app/features/mec/settings.php:
|
405 |
-
#: app/libraries/main.php:
|
406 |
-
#: app/skins/single.php:
|
407 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
408 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
409 |
msgid "Category"
|
@@ -411,7 +411,7 @@ msgstr "Категория"
|
|
411 |
|
412 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
413 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
414 |
-
#: app/libraries/main.php:
|
415 |
msgid "Categories"
|
416 |
msgstr "Категории"
|
417 |
|
@@ -486,13 +486,13 @@ msgstr "Детали события"
|
|
486 |
#: app/features/events.php:322 app/features/events.php:3168
|
487 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
488 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
489 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
490 |
#: app/widgets/single.php:103
|
491 |
msgid "Event Cost"
|
492 |
msgstr "Цена события"
|
493 |
|
494 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
495 |
-
#: app/libraries/main.php:
|
496 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
497 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
498 |
msgid "Cost"
|
@@ -509,7 +509,7 @@ msgstr ""
|
|
509 |
#: app/features/events.php:432 app/features/events.php:2250
|
510 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
511 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
512 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
513 |
#: app/modules/booking/steps/form.php:37
|
514 |
msgid "Name"
|
515 |
msgstr "Имя"
|
@@ -520,10 +520,10 @@ msgstr "Имя"
|
|
520 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
521 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
522 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
523 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
524 |
-
#: app/libraries/notifications.php:
|
525 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
526 |
-
#: app/skins/single.php:
|
527 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
528 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
529 |
msgid "Email"
|
@@ -669,14 +669,14 @@ msgstr ""
|
|
669 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
670 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
671 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
672 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
673 |
-
#: app/features/mec/settings.php:
|
674 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
675 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
676 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
677 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
678 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
679 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
680 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
681 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
682 |
#: app/skins/single/modern.php:133
|
@@ -884,9 +884,9 @@ msgstr "Исключить определённые дни"
|
|
884 |
|
885 |
#: app/features/events.php:1130 app/features/events.php:2340
|
886 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
887 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
888 |
#: app/modules/booking/steps/tickets.php:22
|
889 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
890 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
891 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
892 |
msgid "Date"
|
@@ -904,7 +904,7 @@ msgid "Day 1"
|
|
904 |
msgstr ""
|
905 |
|
906 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
907 |
-
#: app/skins/single.php:
|
908 |
msgid "Hourly Schedule"
|
909 |
msgstr "Часовое расписание"
|
910 |
|
@@ -943,14 +943,14 @@ msgstr "Заголовок"
|
|
943 |
#: app/features/events.php:2154 app/features/events.php:2196
|
944 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
945 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
946 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
947 |
-
#: app/libraries/main.php:
|
948 |
-
#: app/libraries/main.php:
|
949 |
-
#: app/libraries/main.php:
|
950 |
-
#: app/libraries/main.php:
|
951 |
-
#: app/libraries/main.php:
|
952 |
-
#: app/libraries/main.php:
|
953 |
-
#: app/libraries/main.php:
|
954 |
msgid "Remove"
|
955 |
msgstr "Удалить"
|
956 |
|
@@ -983,7 +983,7 @@ msgstr "Описание"
|
|
983 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
984 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
985 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
986 |
-
#: app/features/speakers.php:60 app/libraries/main.php:
|
987 |
#: app/modules/speakers/details.php:18
|
988 |
msgid "Speakers"
|
989 |
msgstr ""
|
@@ -1000,7 +1000,7 @@ msgid "Event Links"
|
|
1000 |
msgstr "Ссылки события"
|
1001 |
|
1002 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1003 |
-
#: app/features/fes/form.php:685 app/libraries/main.php:
|
1004 |
msgid "Event Link"
|
1005 |
msgstr "Ссылка события"
|
1006 |
|
@@ -1027,8 +1027,8 @@ msgid "URL Shortener"
|
|
1027 |
msgstr ""
|
1028 |
|
1029 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1030 |
-
#: app/features/fes/form.php:690 app/libraries/main.php:
|
1031 |
-
#: app/skins/single.php:
|
1032 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1033 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1034 |
#: app/widgets/single.php:107
|
@@ -1093,7 +1093,7 @@ msgid "12"
|
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1096 |
-
#: app/libraries/main.php:
|
1097 |
msgid "Tickets"
|
1098 |
msgstr "Билеты"
|
1099 |
|
@@ -1167,8 +1167,8 @@ msgstr "Метка цены"
|
|
1167 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1168 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1169 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1170 |
-
#: app/features/mec/settings.php:
|
1171 |
-
#: app/libraries/skins.php:
|
1172 |
msgid "Label"
|
1173 |
msgstr "Метка"
|
1174 |
|
@@ -1243,48 +1243,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
|
|
1243 |
msgstr ""
|
1244 |
|
1245 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1246 |
-
#: app/libraries/main.php:
|
1247 |
#, fuzzy
|
1248 |
#| msgid "Name"
|
1249 |
msgid "MEC Name"
|
1250 |
msgstr "Имя"
|
1251 |
|
1252 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1253 |
-
#: app/libraries/main.php:
|
1254 |
#, fuzzy
|
1255 |
#| msgid "Email"
|
1256 |
msgid "MEC Email"
|
1257 |
msgstr "Электронная почта"
|
1258 |
|
1259 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1260 |
-
#: app/libraries/main.php:
|
1261 |
msgid "Text"
|
1262 |
msgstr "Текст"
|
1263 |
|
1264 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1265 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1266 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1267 |
-
#: app/features/speakers.php:249 app/libraries/main.php:
|
1268 |
msgid "Tel"
|
1269 |
msgstr "Тел."
|
1270 |
|
1271 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1272 |
-
#: app/libraries/main.php:
|
1273 |
msgid "File"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1277 |
-
#: app/libraries/main.php:
|
1278 |
msgid "Textarea"
|
1279 |
msgstr "Текстовое поле"
|
1280 |
|
1281 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1282 |
-
#: app/libraries/main.php:
|
1283 |
msgid "Checkboxes"
|
1284 |
msgstr "Флажок"
|
1285 |
|
1286 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1287 |
-
#: app/libraries/main.php:
|
1288 |
msgid "Radio Buttons"
|
1289 |
msgstr "\"Радио\" переключатель"
|
1290 |
|
@@ -1357,17 +1357,17 @@ msgstr "\"Радио\" переключатель"
|
|
1357 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1358 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1359 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1360 |
-
#: app/features/mec/regform.php:277 app/libraries/main.php:
|
1361 |
msgid "Dropdown"
|
1362 |
msgstr "Выпадающий список"
|
1363 |
|
1364 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1365 |
-
#: app/libraries/main.php:
|
1366 |
msgid "Agreement"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1370 |
-
#: app/libraries/main.php:
|
1371 |
msgid "Paragraph"
|
1372 |
msgstr "Параграф"
|
1373 |
|
@@ -1405,10 +1405,10 @@ msgstr ""
|
|
1405 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1406 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1407 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1408 |
-
#: app/features/mec/settings.php:
|
1409 |
-
#: app/libraries/main.php:1703 app/libraries/main.php:
|
1410 |
-
#: app/libraries/skins.php:
|
1411 |
-
#: app/skins/single.php:
|
1412 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1413 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1414 |
msgid "Location"
|
@@ -1427,11 +1427,11 @@ msgstr "Места"
|
|
1427 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1428 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1429 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1430 |
-
#: app/features/mec/settings.php:
|
1431 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1432 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1433 |
-
#: app/features/organizers.php:271 app/libraries/main.php:
|
1434 |
-
#: app/libraries/skins.php:
|
1435 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1436 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1437 |
#: app/skins/single/modern.php:31
|
@@ -1584,8 +1584,8 @@ msgstr "Удалить изображение"
|
|
1584 |
|
1585 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1586 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1587 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1588 |
-
#: app/skins/single.php:
|
1589 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1590 |
#: app/skins/single/modern.php:214
|
1591 |
msgid "Labels"
|
@@ -1909,7 +1909,7 @@ msgstr ""
|
|
1909 |
|
1910 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1911 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1912 |
-
#: app/features/mec/settings.php:
|
1913 |
msgid "Checking ..."
|
1914 |
msgstr ""
|
1915 |
|
@@ -2283,7 +2283,7 @@ msgid "Featured"
|
|
2283 |
msgstr "Избранное изображение"
|
2284 |
|
2285 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2286 |
-
#: app/libraries/main.php:
|
2287 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2288 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2289 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
@@ -2318,7 +2318,7 @@ msgstr ""
|
|
2318 |
|
2319 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2320 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2321 |
-
#: app/libraries/main.php:
|
2322 |
msgid "Locations"
|
2323 |
msgstr "Места"
|
2324 |
|
@@ -2425,7 +2425,7 @@ msgstr "Выберите изображение"
|
|
2425 |
msgid "Don't show map in single event page"
|
2426 |
msgstr "Не отображать карту на странице одиночного события"
|
2427 |
|
2428 |
-
#: app/features/locations.php:356 app/libraries/main.php:
|
2429 |
#, fuzzy
|
2430 |
#| msgid "Search Locations"
|
2431 |
msgid "Other Locations"
|
@@ -2477,7 +2477,7 @@ msgstr "Поддержка"
|
|
2477 |
|
2478 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2479 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2480 |
-
#: app/libraries/main.php:
|
2481 |
msgid "Organizers"
|
2482 |
msgstr "Оранизаторы"
|
2483 |
|
@@ -2598,9 +2598,9 @@ msgstr ""
|
|
2598 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2599 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2600 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2601 |
-
#: app/features/mec/settings.php:31 app/features/mec/settings.php:
|
2602 |
-
#: app/features/mec/settings.php:
|
2603 |
-
#: app/features/mec/settings.php:
|
2604 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2605 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2606 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
@@ -2700,7 +2700,7 @@ msgstr "Все места"
|
|
2700 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2701 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2702 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2703 |
-
#: app/skins/single.php:
|
2704 |
#, fuzzy
|
2705 |
#| msgid "featured event"
|
2706 |
msgid "Related Events"
|
@@ -2831,7 +2831,7 @@ msgstr ""
|
|
2831 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2832 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2833 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2834 |
-
#: app/libraries/notifications.php:
|
2835 |
msgid "Booking Reminder"
|
2836 |
msgstr ""
|
2837 |
|
@@ -3009,7 +3009,7 @@ msgstr ""
|
|
3009 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3010 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3011 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3012 |
-
#: app/features/mec/settings.php:
|
3013 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3014 |
msgid "Saved"
|
3015 |
msgstr "Сохранено"
|
@@ -3017,7 +3017,7 @@ msgstr "Сохранено"
|
|
3017 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3018 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3019 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3020 |
-
#: app/features/mec/settings.php:
|
3021 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3022 |
msgid "Settings Saved!"
|
3023 |
msgstr ""
|
@@ -3025,14 +3025,14 @@ msgstr ""
|
|
3025 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3026 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3027 |
#: app/features/mec/notifications.php:735
|
3028 |
-
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:
|
3029 |
-
#: app/features/mec/settings.php:
|
3030 |
-
#: app/features/mec/single.php:500 app/libraries/main.php:
|
3031 |
msgid "Verified"
|
3032 |
msgstr "Проверено"
|
3033 |
|
3034 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3035 |
-
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:
|
3036 |
#: app/features/mec/single.php:502
|
3037 |
msgid "Please Refresh Page"
|
3038 |
msgstr ""
|
@@ -3970,9 +3970,9 @@ msgstr "Выключено"
|
|
3970 |
#: app/features/mec/meta_boxes/search_form.php:474
|
3971 |
#: app/features/mec/meta_boxes/search_form.php:535
|
3972 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3973 |
-
#: app/features/mec/settings.php:
|
3974 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
3975 |
-
#: app/libraries/main.php:
|
3976 |
msgid "Speaker"
|
3977 |
msgstr ""
|
3978 |
|
@@ -3986,8 +3986,8 @@ msgstr ""
|
|
3986 |
#: app/features/mec/meta_boxes/search_form.php:481
|
3987 |
#: app/features/mec/meta_boxes/search_form.php:542
|
3988 |
#: app/features/mec/meta_boxes/search_form.php:603
|
3989 |
-
#: app/features/mec/settings.php:
|
3990 |
-
#: app/libraries/skins.php:
|
3991 |
#, fuzzy
|
3992 |
#| msgid "Tags"
|
3993 |
msgid "Tag"
|
@@ -4069,12 +4069,12 @@ msgid "Show Google Maps on event page"
|
|
4069 |
msgstr "Отображать карты Google на странице события"
|
4070 |
|
4071 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4072 |
-
#: app/features/mec/settings.php:
|
4073 |
msgid "API Key"
|
4074 |
msgstr "API ключ"
|
4075 |
|
4076 |
-
#: app/features/mec/modules.php:292 app/features/mec/settings.php:
|
4077 |
-
#: app/features/mec/settings.php:
|
4078 |
msgid "Required!"
|
4079 |
msgstr "Обязательное!"
|
4080 |
|
@@ -4674,7 +4674,7 @@ msgid ""
|
|
4674 |
msgstr ""
|
4675 |
|
4676 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4677 |
-
#: app/libraries/main.php:
|
4678 |
msgid "Weekdays"
|
4679 |
msgstr ""
|
4680 |
|
@@ -4991,61 +4991,83 @@ msgid ""
|
|
4991 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
-
#: app/features/mec/settings.php:
|
4995 |
-
msgid "
|
|
|
|
|
|
|
|
|
4996 |
msgstr ""
|
4997 |
|
4998 |
-
#: app/features/mec/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4999 |
msgid "Enable Mailchimp Integration"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
-
#: app/features/mec/settings.php:
|
5003 |
msgid "List ID"
|
5004 |
msgstr ""
|
5005 |
|
5006 |
-
#: app/features/mec/settings.php:
|
5007 |
msgid "Subscription Status"
|
5008 |
msgstr ""
|
5009 |
|
5010 |
-
#: app/features/mec/settings.php:
|
5011 |
msgid "Subscribe automatically"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
-
#: app/features/mec/settings.php:
|
5015 |
msgid "Subscribe by verification"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
-
#: app/features/mec/settings.php:
|
5019 |
msgid ""
|
5020 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5021 |
"by mailchimp for subscription verification."
|
5022 |
msgstr ""
|
5023 |
|
5024 |
-
#: app/features/mec/settings.php:
|
5025 |
#, fuzzy
|
5026 |
#| msgid "Filter Options"
|
5027 |
msgid "Upload Field Options"
|
5028 |
msgstr "Опции фильтра"
|
5029 |
|
5030 |
-
#: app/features/mec/settings.php:
|
5031 |
msgid "Mime types"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
-
#: app/features/mec/settings.php:
|
5035 |
msgid "Split mime types with \",\"."
|
5036 |
msgstr ""
|
5037 |
|
5038 |
-
#: app/features/mec/settings.php:
|
5039 |
msgid "Default: jpeg,jpg,png,pdf"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
-
#: app/features/mec/settings.php:
|
5043 |
#, fuzzy
|
5044 |
#| msgid "Maximum events"
|
5045 |
msgid "Maximum file size"
|
5046 |
msgstr "Макс. количество событий"
|
5047 |
|
5048 |
-
#: app/features/mec/settings.php:
|
5049 |
msgid "The unit is Megabyte \"MB\""
|
5050 |
msgstr ""
|
5051 |
|
@@ -5751,8 +5773,8 @@ msgstr "напр. veselyj@chelovec.com"
|
|
5751 |
msgid "eg. https://webnus.net"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#: app/features/organizers.php:311 app/libraries/main.php:
|
5755 |
-
#: app/skins/single.php:
|
5756 |
msgid "Other Organizers"
|
5757 |
msgstr ""
|
5758 |
|
@@ -5771,7 +5793,7 @@ msgstr "Пожалуйста укажите %s/%s чтобы отправить
|
|
5771 |
msgid "#"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: app/features/profile/profile.php:34 app/libraries/main.php:
|
5775 |
msgid "Status"
|
5776 |
msgstr ""
|
5777 |
|
@@ -5789,7 +5811,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5789 |
msgstr ""
|
5790 |
|
5791 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5792 |
-
#: app/libraries/main.php:
|
5793 |
msgid "Ticket"
|
5794 |
msgstr "Билет"
|
5795 |
|
@@ -5803,12 +5825,37 @@ msgstr "Проверка"
|
|
5803 |
msgid "No bookings found!"
|
5804 |
msgstr "Бронирования не найдены!"
|
5805 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5806 |
#: app/features/search_bar/search_bar.php:28
|
|
|
|
|
|
|
|
|
5807 |
#, fuzzy
|
5808 |
#| msgid "Search Form"
|
5809 |
msgid "Search"
|
5810 |
msgstr "Форма поиска"
|
5811 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5812 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5813 |
#: app/features/speakers.php:248
|
5814 |
#, fuzzy
|
@@ -5873,11 +5920,11 @@ msgstr ""
|
|
5873 |
msgid "%s Price"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
-
#: app/libraries/book.php:
|
5877 |
msgid "Discount"
|
5878 |
msgstr "Скидка"
|
5879 |
|
5880 |
-
#: app/libraries/book.php:
|
5881 |
#: app/modules/booking/default.php:401
|
5882 |
msgid "Download Invoice"
|
5883 |
msgstr ""
|
@@ -5901,51 +5948,51 @@ msgctxt "plugin link"
|
|
5901 |
msgid "Upgrade"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
-
#: app/libraries/factory.php:
|
5905 |
msgid "day"
|
5906 |
msgstr "день"
|
5907 |
|
5908 |
-
#: app/libraries/factory.php:
|
5909 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5910 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5911 |
msgid "days"
|
5912 |
msgstr "дни"
|
5913 |
|
5914 |
-
#: app/libraries/factory.php:
|
5915 |
msgid "hour"
|
5916 |
msgstr "час"
|
5917 |
|
5918 |
-
#: app/libraries/factory.php:
|
5919 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5920 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5921 |
msgid "hours"
|
5922 |
msgstr "часы"
|
5923 |
|
5924 |
-
#: app/libraries/factory.php:
|
5925 |
msgid "minute"
|
5926 |
msgstr "минута"
|
5927 |
|
5928 |
-
#: app/libraries/factory.php:
|
5929 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5930 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5931 |
msgid "minutes"
|
5932 |
msgstr "минуты"
|
5933 |
|
5934 |
-
#: app/libraries/factory.php:
|
5935 |
msgid "second"
|
5936 |
msgstr "секунда"
|
5937 |
|
5938 |
-
#: app/libraries/factory.php:
|
5939 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
5940 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
5941 |
msgid "seconds"
|
5942 |
msgstr "секунды"
|
5943 |
|
5944 |
-
#: app/libraries/factory.php:
|
5945 |
msgid "MEC Single Sidebar"
|
5946 |
msgstr ""
|
5947 |
|
5948 |
-
#: app/libraries/factory.php:
|
5949 |
msgid "Custom sidebar for single and modal page of MEC."
|
5950 |
msgstr ""
|
5951 |
|
@@ -6008,31 +6055,31 @@ msgstr "Карусель"
|
|
6008 |
msgid "Slider View"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
6012 |
msgid "SU"
|
6013 |
msgstr "Вс"
|
6014 |
|
6015 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
6016 |
msgid "MO"
|
6017 |
msgstr "Пн"
|
6018 |
|
6019 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
6020 |
msgid "TU"
|
6021 |
msgstr "Вт"
|
6022 |
|
6023 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6024 |
msgid "WE"
|
6025 |
msgstr "Ср"
|
6026 |
|
6027 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6028 |
msgid "TH"
|
6029 |
msgstr "Чт"
|
6030 |
|
6031 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6032 |
msgid "FR"
|
6033 |
msgstr "Пт"
|
6034 |
|
6035 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6036 |
msgid "SA"
|
6037 |
msgstr "Сб"
|
6038 |
|
@@ -6184,177 +6231,177 @@ msgstr "Экпорт iCal остановлен!"
|
|
6184 |
msgid "Request is not valid."
|
6185 |
msgstr "Неверный запрос!"
|
6186 |
|
6187 |
-
#: app/libraries/main.php:
|
6188 |
-
#: app/libraries/main.php:
|
6189 |
-
#: app/libraries/main.php:
|
6190 |
-
#: app/libraries/main.php:
|
6191 |
-
#: app/libraries/main.php:
|
6192 |
-
#: app/libraries/main.php:
|
6193 |
-
#: app/libraries/main.php:
|
6194 |
msgid "Sort"
|
6195 |
msgstr "Сортировать"
|
6196 |
|
6197 |
-
#: app/libraries/main.php:
|
6198 |
-
#: app/libraries/main.php:
|
6199 |
-
#: app/libraries/main.php:
|
6200 |
-
#: app/libraries/main.php:
|
6201 |
-
#: app/libraries/main.php:
|
6202 |
-
#: app/libraries/main.php:
|
6203 |
msgid "Required Field"
|
6204 |
msgstr "Требуемое поле"
|
6205 |
|
6206 |
-
#: app/libraries/main.php:
|
6207 |
-
#: app/libraries/main.php:
|
6208 |
-
#: app/libraries/main.php:
|
6209 |
-
#: app/libraries/main.php:
|
6210 |
-
#: app/libraries/main.php:
|
6211 |
-
#: app/libraries/main.php:
|
6212 |
msgid "Insert a label for this field"
|
6213 |
msgstr "Вставьте метку для этого поля"
|
6214 |
|
6215 |
-
#: app/libraries/main.php:
|
6216 |
msgid "HTML and shortcode are allowed."
|
6217 |
msgstr "HTML и Шорт-коды разрешены."
|
6218 |
|
6219 |
-
#: app/libraries/main.php:
|
6220 |
-
#: app/libraries/main.php:
|
6221 |
msgid "Option"
|
6222 |
msgstr "Опции"
|
6223 |
|
6224 |
-
#: app/libraries/main.php:
|
6225 |
#, php-format
|
6226 |
msgid "Instead of %s, the page title with a link will be show."
|
6227 |
msgstr ""
|
6228 |
|
6229 |
-
#: app/libraries/main.php:
|
6230 |
msgid "Agreement Page"
|
6231 |
msgstr ""
|
6232 |
|
6233 |
-
#: app/libraries/main.php:
|
6234 |
msgid "Checked by default"
|
6235 |
msgstr ""
|
6236 |
|
6237 |
-
#: app/libraries/main.php:
|
6238 |
msgid "Unchecked by default"
|
6239 |
msgstr ""
|
6240 |
|
6241 |
-
#: app/libraries/main.php:
|
6242 |
msgid "Insert a label for this option"
|
6243 |
msgstr "Вставьте метку для этой опции"
|
6244 |
|
6245 |
-
#: app/libraries/main.php:
|
6246 |
msgid "Free"
|
6247 |
msgstr "Свободный вход"
|
6248 |
|
6249 |
-
#: app/libraries/main.php:
|
6250 |
#, fuzzy
|
6251 |
#| msgid "M.E. Calendar"
|
6252 |
msgid "M.E. Calender"
|
6253 |
msgstr "Календарь событий"
|
6254 |
|
6255 |
-
#: app/libraries/main.php:
|
6256 |
#, php-format
|
6257 |
msgid "Copy of %s"
|
6258 |
msgstr "Скопировано из %s"
|
6259 |
|
6260 |
-
#: app/libraries/main.php:
|
6261 |
msgid "Booked an event."
|
6262 |
msgstr ""
|
6263 |
|
6264 |
-
#: app/libraries/main.php:
|
6265 |
#, php-format
|
6266 |
msgid "%s booked %s event."
|
6267 |
msgstr ""
|
6268 |
|
6269 |
-
#: app/libraries/main.php:
|
6270 |
msgid "Taxonomies"
|
6271 |
msgstr ""
|
6272 |
|
6273 |
-
#: app/libraries/main.php:
|
6274 |
msgid "Category Plural Label"
|
6275 |
msgstr ""
|
6276 |
|
6277 |
-
#: app/libraries/main.php:
|
6278 |
msgid "Category Singular Label"
|
6279 |
msgstr ""
|
6280 |
|
6281 |
-
#: app/libraries/main.php:
|
6282 |
msgid "Label Plural Label"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
-
#: app/libraries/main.php:
|
6286 |
msgid "Label Singular Label"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
-
#: app/libraries/main.php:
|
6290 |
msgid "label"
|
6291 |
msgstr ""
|
6292 |
|
6293 |
-
#: app/libraries/main.php:
|
6294 |
msgid "Location Plural Label"
|
6295 |
msgstr ""
|
6296 |
|
6297 |
-
#: app/libraries/main.php:
|
6298 |
msgid "Location Singular Label"
|
6299 |
msgstr ""
|
6300 |
|
6301 |
-
#: app/libraries/main.php:
|
6302 |
msgid "Organizer Plural Label"
|
6303 |
msgstr ""
|
6304 |
|
6305 |
-
#: app/libraries/main.php:
|
6306 |
msgid "Organizer Singular Label"
|
6307 |
msgstr ""
|
6308 |
|
6309 |
-
#: app/libraries/main.php:
|
6310 |
#, fuzzy
|
6311 |
#| msgid "Search Labels"
|
6312 |
msgid "Speaker Plural Label"
|
6313 |
msgstr "Поиск метки"
|
6314 |
|
6315 |
-
#: app/libraries/main.php:
|
6316 |
#, fuzzy
|
6317 |
#| msgid "Popular Labels"
|
6318 |
msgid "Speaker Singular Label"
|
6319 |
msgstr "Популярные метки"
|
6320 |
|
6321 |
-
#: app/libraries/main.php:
|
6322 |
msgid "Sunday abbreviation"
|
6323 |
msgstr ""
|
6324 |
|
6325 |
-
#: app/libraries/main.php:
|
6326 |
msgid "Monday abbreviation"
|
6327 |
msgstr ""
|
6328 |
|
6329 |
-
#: app/libraries/main.php:
|
6330 |
msgid "Tuesday abbreviation"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
-
#: app/libraries/main.php:
|
6334 |
msgid "Wednesday abbreviation"
|
6335 |
msgstr ""
|
6336 |
|
6337 |
-
#: app/libraries/main.php:
|
6338 |
msgid "Thursday abbreviation"
|
6339 |
msgstr ""
|
6340 |
|
6341 |
-
#: app/libraries/main.php:
|
6342 |
msgid "Friday abbreviation"
|
6343 |
msgstr ""
|
6344 |
|
6345 |
-
#: app/libraries/main.php:
|
6346 |
msgid "Saturday abbreviation"
|
6347 |
msgstr ""
|
6348 |
|
6349 |
-
#: app/libraries/main.php:
|
6350 |
msgid "Others"
|
6351 |
msgstr ""
|
6352 |
|
6353 |
-
#: app/libraries/main.php:
|
6354 |
msgid "Booking Success Message"
|
6355 |
msgstr ""
|
6356 |
|
6357 |
-
#: app/libraries/main.php:
|
6358 |
msgid ""
|
6359 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6360 |
"needed, please check your email."
|
@@ -6362,17 +6409,17 @@ msgstr ""
|
|
6362 |
"Благодарим за бронирование. Возможно потребуется дополнительная верификация "
|
6363 |
"ваших билетов. Пожалуйста проверьте вашу электронную почту."
|
6364 |
|
6365 |
-
#: app/libraries/main.php:
|
6366 |
msgid "Register Button"
|
6367 |
msgstr ""
|
6368 |
|
6369 |
-
#: app/libraries/main.php:
|
6370 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6371 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6372 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6373 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6374 |
-
#: app/skins/masonry/render.php:175 app/skins/single.php:
|
6375 |
-
#: app/skins/single.php:
|
6376 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6377 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6378 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
@@ -6383,11 +6430,11 @@ msgstr ""
|
|
6383 |
msgid "REGISTER"
|
6384 |
msgstr "РЕГИСТРАЦИЯ"
|
6385 |
|
6386 |
-
#: app/libraries/main.php:
|
6387 |
msgid "View Detail Button"
|
6388 |
msgstr ""
|
6389 |
|
6390 |
-
#: app/libraries/main.php:
|
6391 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6392 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6393 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
@@ -6398,59 +6445,59 @@ msgstr ""
|
|
6398 |
msgid "View Detail"
|
6399 |
msgstr "Подробнее"
|
6400 |
|
6401 |
-
#: app/libraries/main.php:
|
6402 |
msgid "Event Detail Button"
|
6403 |
msgstr ""
|
6404 |
|
6405 |
-
#: app/libraries/main.php:
|
6406 |
msgid "Event Detail"
|
6407 |
msgstr "Детали события"
|
6408 |
|
6409 |
-
#: app/libraries/main.php:
|
6410 |
msgid "More Info Link"
|
6411 |
msgstr ""
|
6412 |
|
6413 |
-
#: app/libraries/main.php:
|
6414 |
msgid "Ticket (Singular)"
|
6415 |
msgstr ""
|
6416 |
|
6417 |
-
#: app/libraries/main.php:
|
6418 |
msgid "Tickets (Plural)"
|
6419 |
msgstr ""
|
6420 |
|
6421 |
-
#: app/libraries/main.php:
|
6422 |
msgid "EventON"
|
6423 |
msgstr ""
|
6424 |
|
6425 |
-
#: app/libraries/main.php:
|
6426 |
msgid "The Events Calendar"
|
6427 |
msgstr ""
|
6428 |
|
6429 |
-
#: app/libraries/main.php:
|
6430 |
msgid "Events Schedule WP Plugin"
|
6431 |
msgstr ""
|
6432 |
|
6433 |
-
#: app/libraries/main.php:
|
6434 |
msgid "Calendarize It"
|
6435 |
msgstr ""
|
6436 |
|
6437 |
-
#: app/libraries/main.php:
|
6438 |
msgid "Confirmed"
|
6439 |
msgstr "Подтверждено"
|
6440 |
|
6441 |
-
#: app/libraries/main.php:
|
6442 |
msgid "Rejected"
|
6443 |
msgstr "Отклонено"
|
6444 |
|
6445 |
-
#: app/libraries/main.php:
|
6446 |
msgid "Pending"
|
6447 |
msgstr "В очереди"
|
6448 |
|
6449 |
-
#: app/libraries/main.php:
|
6450 |
msgid "Waiting"
|
6451 |
msgstr "Ожидает"
|
6452 |
|
6453 |
-
#: app/libraries/main.php:
|
6454 |
msgid "Skin controller does not exist."
|
6455 |
msgstr "Контроллер скина не существует."
|
6456 |
|
@@ -6458,57 +6505,49 @@ msgstr "Контроллер скина не существует."
|
|
6458 |
msgid "Please verify your email."
|
6459 |
msgstr "Пожалуйста подтвердите свою эл. почту."
|
6460 |
|
6461 |
-
#: app/libraries/notifications.php:
|
6462 |
msgid "Your booking is received."
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: app/libraries/notifications.php:
|
6466 |
msgid "Your booking is confirmed."
|
6467 |
msgstr "Ваше бронирование подтверждено."
|
6468 |
|
6469 |
-
#: app/libraries/notifications.php:
|
6470 |
#, fuzzy
|
6471 |
#| msgid "Your booking cannot be canceled."
|
6472 |
msgid "booking canceled."
|
6473 |
msgstr "Ваше бронирование не может быть отменено."
|
6474 |
|
6475 |
-
#: app/libraries/notifications.php:
|
6476 |
msgid "A new booking is received."
|
6477 |
msgstr "Получено новое бронирование."
|
6478 |
|
6479 |
-
#: app/libraries/notifications.php:
|
6480 |
msgid "A new event is added."
|
6481 |
msgstr "Новое событие добавлено."
|
6482 |
|
6483 |
-
#: app/libraries/notifications.php:
|
6484 |
-
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
6485 |
-
#: app/skins/single.php:696 app/skins/single/default.php:86
|
6486 |
-
#: app/skins/single/default.php:298 app/skins/single/m1.php:34
|
6487 |
-
#: app/skins/single/modern.php:184
|
6488 |
-
msgid "All of the day"
|
6489 |
-
msgstr "На весь день"
|
6490 |
-
|
6491 |
-
#: app/libraries/notifications.php:611
|
6492 |
msgid "to"
|
6493 |
msgstr ""
|
6494 |
|
6495 |
-
#: app/libraries/notifications.php:
|
6496 |
msgid "+ Add to Google Calendar"
|
6497 |
msgstr "+ Добавить в Google Calendar"
|
6498 |
|
6499 |
-
#: app/libraries/notifications.php:
|
6500 |
msgid "+ iCal export"
|
6501 |
msgstr "+ iCal экспорт"
|
6502 |
|
6503 |
-
#: app/libraries/notifications.php:
|
6504 |
msgid "Yes"
|
6505 |
msgstr ""
|
6506 |
|
6507 |
-
#: app/libraries/notifications.php:
|
6508 |
msgid "No"
|
6509 |
msgstr ""
|
6510 |
|
6511 |
-
#: app/libraries/skins.php:
|
6512 |
msgid "Ignore month and years"
|
6513 |
msgstr ""
|
6514 |
|
@@ -6585,7 +6624,7 @@ msgstr "Вы едете из ..."
|
|
6585 |
msgid "Get Directions"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
6589 |
msgid "Share this event"
|
6590 |
msgstr "Поделиться событием"
|
6591 |
|
@@ -6612,7 +6651,7 @@ msgstr ""
|
|
6612 |
msgid "Go to occurrence page"
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#: app/modules/next-event/details.php:95 app/skins/single.php:
|
6616 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6617 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6618 |
msgid "Time"
|
@@ -6720,7 +6759,7 @@ msgstr "События отсутствуют"
|
|
6720 |
msgid "List"
|
6721 |
msgstr "Список"
|
6722 |
|
6723 |
-
#: app/skins/masonry.php:
|
6724 |
msgid "All"
|
6725 |
msgstr ""
|
6726 |
|
@@ -6738,31 +6777,31 @@ msgstr "События для %s"
|
|
6738 |
msgid "No Events"
|
6739 |
msgstr "События отсутствуют"
|
6740 |
|
6741 |
-
#: app/skins/single.php:
|
6742 |
msgid "Home"
|
6743 |
msgstr ""
|
6744 |
|
6745 |
-
#: app/skins/single.php:
|
6746 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6747 |
#: app/skins/single/modern.php:256
|
6748 |
msgid "Sold out!"
|
6749 |
msgstr ""
|
6750 |
|
6751 |
-
#: app/skins/single.php:
|
6752 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6753 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6754 |
#: app/skins/single/modern.php:41
|
6755 |
msgid "Phone"
|
6756 |
msgstr "Телефон"
|
6757 |
|
6758 |
-
#: app/skins/single.php:
|
6759 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6760 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6761 |
#: app/skins/single/modern.php:55
|
6762 |
msgid "Website"
|
6763 |
msgstr "Веб сайт"
|
6764 |
|
6765 |
-
#: app/skins/single.php:
|
6766 |
#, fuzzy
|
6767 |
#| msgid "No Search Options"
|
6768 |
msgid "Speakers:"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-13 16:46+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
|
8 |
"Language: ru_RU\n"
|
335 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
336 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
337 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
338 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
339 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
340 |
#: app/features/mec/styling.php:59
|
341 |
msgid "Mailchimp Integration"
|
401 |
#: app/features/mec/meta_boxes/search_form.php:453
|
402 |
#: app/features/mec/meta_boxes/search_form.php:514
|
403 |
#: app/features/mec/meta_boxes/search_form.php:575
|
404 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
405 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
406 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
407 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
408 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
409 |
msgid "Category"
|
411 |
|
412 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
413 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
414 |
+
#: app/libraries/main.php:4508
|
415 |
msgid "Categories"
|
416 |
msgstr "Категории"
|
417 |
|
486 |
#: app/features/events.php:322 app/features/events.php:3168
|
487 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
488 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
489 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
490 |
#: app/widgets/single.php:103
|
491 |
msgid "Event Cost"
|
492 |
msgstr "Цена события"
|
493 |
|
494 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
495 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
496 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
497 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
498 |
msgid "Cost"
|
509 |
#: app/features/events.php:432 app/features/events.php:2250
|
510 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
511 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
512 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
513 |
#: app/modules/booking/steps/form.php:37
|
514 |
msgid "Name"
|
515 |
msgstr "Имя"
|
520 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
521 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
522 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
523 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
524 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
525 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
526 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
527 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
528 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
529 |
msgid "Email"
|
669 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
670 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
671 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
672 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
673 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
674 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
675 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
676 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
677 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
678 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
679 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
680 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
681 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
682 |
#: app/skins/single/modern.php:133
|
884 |
|
885 |
#: app/features/events.php:1130 app/features/events.php:2340
|
886 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
887 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
888 |
#: app/modules/booking/steps/tickets.php:22
|
889 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
890 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
891 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
892 |
msgid "Date"
|
904 |
msgstr ""
|
905 |
|
906 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
907 |
+
#: app/skins/single.php:898
|
908 |
msgid "Hourly Schedule"
|
909 |
msgstr "Часовое расписание"
|
910 |
|
943 |
#: app/features/events.php:2154 app/features/events.php:2196
|
944 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
945 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
946 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
947 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
948 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
949 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
950 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
951 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
952 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
953 |
+
#: app/libraries/main.php:2612
|
954 |
msgid "Remove"
|
955 |
msgstr "Удалить"
|
956 |
|
983 |
#: app/features/mec/regform.php:126 app/features/mec/settings.php:161
|
984 |
#: app/features/mec/settings.php:816 app/features/mec/single.php:122
|
985 |
#: app/features/mec/styles.php:89 app/features/mec/styling.php:111
|
986 |
+
#: app/features/speakers.php:60 app/libraries/main.php:4516
|
987 |
#: app/modules/speakers/details.php:18
|
988 |
msgid "Speakers"
|
989 |
msgstr ""
|
1000 |
msgstr "Ссылки события"
|
1001 |
|
1002 |
#: app/features/events.php:1405 app/features/events.php:1411
|
1003 |
+
#: app/features/fes/form.php:685 app/libraries/main.php:4539
|
1004 |
msgid "Event Link"
|
1005 |
msgstr "Ссылка события"
|
1006 |
|
1027 |
msgstr ""
|
1028 |
|
1029 |
#: app/features/events.php:1421 app/features/events.php:1434
|
1030 |
+
#: app/features/fes/form.php:690 app/libraries/main.php:4540
|
1031 |
+
#: app/skins/single.php:627 app/skins/single/default.php:118
|
1032 |
#: app/skins/single/default.php:330 app/skins/single/m1.php:191
|
1033 |
#: app/skins/single/m2.php:124 app/skins/single/modern.php:132
|
1034 |
#: app/widgets/single.php:107
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: app/features/events.php:1546 app/libraries/book.php:60
|
1096 |
+
#: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
|
1097 |
msgid "Tickets"
|
1098 |
msgstr "Билеты"
|
1099 |
|
1167 |
#: app/features/mec/meta_boxes/search_form.php:488
|
1168 |
#: app/features/mec/meta_boxes/search_form.php:549
|
1169 |
#: app/features/mec/meta_boxes/search_form.php:610
|
1170 |
+
#: app/features/mec/settings.php:937 app/features/mec/single.php:408
|
1171 |
+
#: app/libraries/skins.php:937
|
1172 |
msgid "Label"
|
1173 |
msgstr "Метка"
|
1174 |
|
1243 |
msgstr ""
|
1244 |
|
1245 |
#: app/features/events.php:2335 app/features/mec/regform.php:267
|
1246 |
+
#: app/libraries/main.php:2202
|
1247 |
#, fuzzy
|
1248 |
#| msgid "Name"
|
1249 |
msgid "MEC Name"
|
1250 |
msgstr "Имя"
|
1251 |
|
1252 |
#: app/features/events.php:2337 app/features/mec/regform.php:268
|
1253 |
+
#: app/libraries/main.php:2231
|
1254 |
#, fuzzy
|
1255 |
#| msgid "Email"
|
1256 |
msgid "MEC Email"
|
1257 |
msgstr "Электронная почта"
|
1258 |
|
1259 |
#: app/features/events.php:2338 app/features/mec/regform.php:269
|
1260 |
+
#: app/libraries/main.php:2172
|
1261 |
msgid "Text"
|
1262 |
msgstr "Текст"
|
1263 |
|
1264 |
#: app/features/events.php:2341 app/features/mec/regform.php:272
|
1265 |
#: app/features/organizers.php:103 app/features/organizers.php:148
|
1266 |
#: app/features/speakers.php:116 app/features/speakers.php:180
|
1267 |
+
#: app/features/speakers.php:249 app/libraries/main.php:2348
|
1268 |
msgid "Tel"
|
1269 |
msgstr "Тел."
|
1270 |
|
1271 |
#: app/features/events.php:2342 app/features/mec/regform.php:273
|
1272 |
+
#: app/libraries/main.php:2290
|
1273 |
msgid "File"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: app/features/events.php:2344 app/features/mec/regform.php:274
|
1277 |
+
#: app/libraries/main.php:2377
|
1278 |
msgid "Textarea"
|
1279 |
msgstr "Текстовое поле"
|
1280 |
|
1281 |
#: app/features/events.php:2346 app/features/mec/regform.php:275
|
1282 |
+
#: app/libraries/main.php:2430
|
1283 |
msgid "Checkboxes"
|
1284 |
msgstr "Флажок"
|
1285 |
|
1286 |
#: app/features/events.php:2348 app/features/mec/regform.php:276
|
1287 |
+
#: app/libraries/main.php:2474
|
1288 |
msgid "Radio Buttons"
|
1289 |
msgstr "\"Радио\" переключатель"
|
1290 |
|
1357 |
#: app/features/mec/meta_boxes/search_form.php:606
|
1358 |
#: app/features/mec/meta_boxes/search_form.php:613
|
1359 |
#: app/features/mec/meta_boxes/search_form.php:620
|
1360 |
+
#: app/features/mec/regform.php:277 app/libraries/main.php:2518
|
1361 |
msgid "Dropdown"
|
1362 |
msgstr "Выпадающий список"
|
1363 |
|
1364 |
#: app/features/events.php:2351 app/features/mec/regform.php:278
|
1365 |
+
#: app/libraries/main.php:2565
|
1366 |
msgid "Agreement"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
#: app/features/events.php:2352 app/features/mec/regform.php:279
|
1370 |
+
#: app/libraries/main.php:2406
|
1371 |
msgid "Paragraph"
|
1372 |
msgstr "Параграф"
|
1373 |
|
1405 |
#: app/features/mec/meta_boxes/search_form.php:460
|
1406 |
#: app/features/mec/meta_boxes/search_form.php:521
|
1407 |
#: app/features/mec/meta_boxes/search_form.php:582
|
1408 |
+
#: app/features/mec/settings.php:911 app/features/mec/single.php:398
|
1409 |
+
#: app/libraries/main.php:1703 app/libraries/main.php:4513
|
1410 |
+
#: app/libraries/skins.php:833 app/skins/single.php:457
|
1411 |
+
#: app/skins/single.php:875 app/skins/single/default.php:154
|
1412 |
#: app/skins/single/default.php:366 app/skins/single/m1.php:155
|
1413 |
#: app/skins/single/m2.php:87 app/skins/single/modern.php:94
|
1414 |
msgid "Location"
|
1427 |
#: app/features/mec/meta_boxes/search_form.php:467
|
1428 |
#: app/features/mec/meta_boxes/search_form.php:528
|
1429 |
#: app/features/mec/meta_boxes/search_form.php:589
|
1430 |
+
#: app/features/mec/settings.php:917 app/features/mec/single.php:394
|
1431 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
1432 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
1433 |
+
#: app/features/organizers.php:271 app/libraries/main.php:4515
|
1434 |
+
#: app/libraries/skins.php:859 app/skins/single.php:763
|
1435 |
#: app/skins/single/default.php:195 app/skins/single/default.php:407
|
1436 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1437 |
#: app/skins/single/modern.php:31
|
1584 |
|
1585 |
#: app/features/fes/form.php:770 app/features/labels.php:61
|
1586 |
#: app/features/labels.php:221 app/features/mec.php:333
|
1587 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
|
1588 |
+
#: app/skins/single.php:656 app/skins/single/default.php:133
|
1589 |
#: app/skins/single/default.php:345 app/skins/single/m1.php:64
|
1590 |
#: app/skins/single/modern.php:214
|
1591 |
msgid "Labels"
|
1909 |
|
1910 |
#: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
|
1911 |
#: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
|
1912 |
+
#: app/features/mec/settings.php:1103 app/features/mec/single.php:480
|
1913 |
msgid "Checking ..."
|
1914 |
msgstr ""
|
1915 |
|
2283 |
msgstr "Избранное изображение"
|
2284 |
|
2285 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2286 |
+
#: app/libraries/main.php:4756 app/skins/agenda/render.php:41
|
2287 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
|
2288 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
|
2289 |
#: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
|
2318 |
|
2319 |
#: app/features/locations.php:59 app/features/mec.php:334
|
2320 |
#: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
|
2321 |
+
#: app/libraries/main.php:4512
|
2322 |
msgid "Locations"
|
2323 |
msgstr "Места"
|
2324 |
|
2425 |
msgid "Don't show map in single event page"
|
2426 |
msgstr "Не отображать карту на странице одиночного события"
|
2427 |
|
2428 |
+
#: app/features/locations.php:356 app/libraries/main.php:4546
|
2429 |
#, fuzzy
|
2430 |
#| msgid "Search Locations"
|
2431 |
msgid "Other Locations"
|
2477 |
|
2478 |
#: app/features/mec.php:335 app/features/mec/dashboard.php:223
|
2479 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2480 |
+
#: app/libraries/main.php:4514
|
2481 |
msgid "Organizers"
|
2482 |
msgstr "Оранизаторы"
|
2483 |
|
2598 |
#: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
|
2599 |
#: app/features/mec/regform.php:285 app/features/mec/regform.php:340
|
2600 |
#: app/features/mec/regform.php:376 app/features/mec/regform.php:385
|
2601 |
+
#: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
|
2602 |
+
#: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
|
2603 |
+
#: app/features/mec/settings.php:1134 app/features/mec/single.php:14
|
2604 |
#: app/features/mec/single.php:420 app/features/mec/single.php:430
|
2605 |
#: app/features/mec/single.php:497 app/features/mec/single.php:511
|
2606 |
#: app/features/mec/styles.php:11 app/features/mec/styles.php:190
|
2700 |
#: app/features/mec/regform.php:93 app/features/mec/settings.php:128
|
2701 |
#: app/features/mec/single.php:87 app/features/mec/single.php:377
|
2702 |
#: app/features/mec/styles.php:56 app/features/mec/styling.php:78
|
2703 |
+
#: app/skins/single.php:162
|
2704 |
#, fuzzy
|
2705 |
#| msgid "featured event"
|
2706 |
msgid "Related Events"
|
2831 |
#: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
|
2832 |
#: app/features/mec/settings.php:211 app/features/mec/single.php:172
|
2833 |
#: app/features/mec/styles.php:139 app/features/mec/styling.php:161
|
2834 |
+
#: app/libraries/notifications.php:405
|
2835 |
msgid "Booking Reminder"
|
2836 |
msgstr ""
|
2837 |
|
3009 |
#: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
|
3010 |
#: app/features/mec/messages.php:231 app/features/mec/modules.php:618
|
3011 |
#: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
|
3012 |
+
#: app/features/mec/settings.php:1098 app/features/mec/single.php:475
|
3013 |
#: app/features/mec/styles.php:219 app/features/mec/styling.php:451
|
3014 |
msgid "Saved"
|
3015 |
msgstr "Сохранено"
|
3017 |
#: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
|
3018 |
#: app/features/mec/messages.php:232 app/features/mec/modules.php:619
|
3019 |
#: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
|
3020 |
+
#: app/features/mec/settings.php:1099 app/features/mec/single.php:476
|
3021 |
#: app/features/mec/styles.php:220 app/features/mec/styling.php:452
|
3022 |
msgid "Settings Saved!"
|
3023 |
msgstr ""
|
3025 |
#: app/features/mec/booking.php:595 app/features/mec/booking.php:617
|
3026 |
#: app/features/mec/modules.php:621 app/features/mec/modules.php:643
|
3027 |
#: app/features/mec/notifications.php:735
|
3028 |
+
#: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
|
3029 |
+
#: app/features/mec/settings.php:1123 app/features/mec/single.php:478
|
3030 |
+
#: app/features/mec/single.php:500 app/libraries/main.php:4755
|
3031 |
msgid "Verified"
|
3032 |
msgstr "Проверено"
|
3033 |
|
3034 |
#: app/features/mec/booking.php:619 app/features/mec/modules.php:645
|
3035 |
+
#: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
|
3036 |
#: app/features/mec/single.php:502
|
3037 |
msgid "Please Refresh Page"
|
3038 |
msgstr ""
|
3970 |
#: app/features/mec/meta_boxes/search_form.php:474
|
3971 |
#: app/features/mec/meta_boxes/search_form.php:535
|
3972 |
#: app/features/mec/meta_boxes/search_form.php:596
|
3973 |
+
#: app/features/mec/settings.php:924 app/features/mec/single.php:403
|
3974 |
#: app/features/speakers.php:59 app/features/speakers.php:247
|
3975 |
+
#: app/libraries/main.php:4517 app/libraries/skins.php:885
|
3976 |
msgid "Speaker"
|
3977 |
msgstr ""
|
3978 |
|
3986 |
#: app/features/mec/meta_boxes/search_form.php:481
|
3987 |
#: app/features/mec/meta_boxes/search_form.php:542
|
3988 |
#: app/features/mec/meta_boxes/search_form.php:603
|
3989 |
+
#: app/features/mec/settings.php:931 app/features/mec/single.php:412
|
3990 |
+
#: app/libraries/skins.php:911
|
3991 |
#, fuzzy
|
3992 |
#| msgid "Tags"
|
3993 |
msgid "Tag"
|
4069 |
msgstr "Отображать карты Google на странице события"
|
4070 |
|
4071 |
#: app/features/mec/modules.php:286 app/features/mec/modules.php:444
|
4072 |
+
#: app/features/mec/settings.php:961 app/features/mec/settings.php:966
|
4073 |
msgid "API Key"
|
4074 |
msgstr "API ключ"
|
4075 |
|
4076 |
+
#: app/features/mec/modules.php:292 app/features/mec/settings.php:967
|
4077 |
+
#: app/features/mec/settings.php:980
|
4078 |
msgid "Required!"
|
4079 |
msgstr "Обязательное!"
|
4080 |
|
4674 |
msgstr ""
|
4675 |
|
4676 |
#: app/features/mec/settings.php:328 app/features/mec/settings.php:338
|
4677 |
+
#: app/libraries/main.php:4521
|
4678 |
msgid "Weekdays"
|
4679 |
msgstr ""
|
4680 |
|
4991 |
"Put %s shortcode into your desired page. Then users are able to search events"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
+
#: app/features/mec/settings.php:890
|
4995 |
+
msgid "Ajax Live mode"
|
4996 |
+
msgstr ""
|
4997 |
+
|
4998 |
+
#: app/features/mec/settings.php:894
|
4999 |
+
msgid "Ajax mode"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
+
#: app/features/mec/settings.php:895
|
5003 |
+
msgid ""
|
5004 |
+
"if you enable this option, search button disappeared and to use this "
|
5005 |
+
"feature, text input field must be enabled."
|
5006 |
+
msgstr ""
|
5007 |
+
|
5008 |
+
#: app/features/mec/settings.php:901
|
5009 |
+
#, fuzzy
|
5010 |
+
#| msgid "Search Form"
|
5011 |
+
msgid "Search bar fields"
|
5012 |
+
msgstr "Форма поиска"
|
5013 |
+
|
5014 |
+
#: app/features/mec/settings.php:943
|
5015 |
+
#, fuzzy
|
5016 |
+
#| msgid "Text Input"
|
5017 |
+
msgid "Text input"
|
5018 |
+
msgstr "Текстовый ввод"
|
5019 |
+
|
5020 |
+
#: app/features/mec/settings.php:956
|
5021 |
msgid "Enable Mailchimp Integration"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
+
#: app/features/mec/settings.php:974 app/features/mec/settings.php:979
|
5025 |
msgid "List ID"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: app/features/mec/settings.php:987 app/features/mec/settings.php:995
|
5029 |
msgid "Subscription Status"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
+
#: app/features/mec/settings.php:990
|
5033 |
msgid "Subscribe automatically"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
+
#: app/features/mec/settings.php:991
|
5037 |
msgid "Subscribe by verification"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
+
#: app/features/mec/settings.php:996
|
5041 |
msgid ""
|
5042 |
"If you choose \"Subscribe by verification\" then an email will send to user "
|
5043 |
"by mailchimp for subscription verification."
|
5044 |
msgstr ""
|
5045 |
|
5046 |
+
#: app/features/mec/settings.php:1008
|
5047 |
#, fuzzy
|
5048 |
#| msgid "Filter Options"
|
5049 |
msgid "Upload Field Options"
|
5050 |
msgstr "Опции фильтра"
|
5051 |
|
5052 |
+
#: app/features/mec/settings.php:1010
|
5053 |
msgid "Mime types"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
+
#: app/features/mec/settings.php:1014
|
5057 |
msgid "Split mime types with \",\"."
|
5058 |
msgstr ""
|
5059 |
|
5060 |
+
#: app/features/mec/settings.php:1014
|
5061 |
msgid "Default: jpeg,jpg,png,pdf"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: app/features/mec/settings.php:1017
|
5065 |
#, fuzzy
|
5066 |
#| msgid "Maximum events"
|
5067 |
msgid "Maximum file size"
|
5068 |
msgstr "Макс. количество событий"
|
5069 |
|
5070 |
+
#: app/features/mec/settings.php:1021
|
5071 |
msgid "The unit is Megabyte \"MB\""
|
5072 |
msgstr ""
|
5073 |
|
5773 |
msgid "eg. https://webnus.net"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
+
#: app/features/organizers.php:311 app/libraries/main.php:4545
|
5777 |
+
#: app/skins/single.php:813
|
5778 |
msgid "Other Organizers"
|
5779 |
msgstr ""
|
5780 |
|
5793 |
msgid "#"
|
5794 |
msgstr ""
|
5795 |
|
5796 |
+
#: app/features/profile/profile.php:34 app/libraries/main.php:2587
|
5797 |
msgid "Status"
|
5798 |
msgstr ""
|
5799 |
|
5811 |
msgstr ""
|
5812 |
|
5813 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1738
|
5814 |
+
#: app/libraries/main.php:4543
|
5815 |
msgid "Ticket"
|
5816 |
msgstr "Билет"
|
5817 |
|
5825 |
msgid "No bookings found!"
|
5826 |
msgstr "Бронирования не найдены!"
|
5827 |
|
5828 |
+
#: app/features/search.php:90
|
5829 |
+
msgid "Please enter at least 3 characters and try again"
|
5830 |
+
msgstr ""
|
5831 |
+
|
5832 |
+
#: app/features/search_bar/search_bar.php:26
|
5833 |
+
msgid "Please enter at least 3 characters"
|
5834 |
+
msgstr ""
|
5835 |
+
|
5836 |
#: app/features/search_bar/search_bar.php:28
|
5837 |
+
msgid "Search results will show here"
|
5838 |
+
msgstr ""
|
5839 |
+
|
5840 |
+
#: app/features/search_bar/search_bar.php:39
|
5841 |
#, fuzzy
|
5842 |
#| msgid "Search Form"
|
5843 |
msgid "Search"
|
5844 |
msgstr "Форма поиска"
|
5845 |
|
5846 |
+
#: app/features/search_bar/search_noresult.php:1
|
5847 |
+
msgid "No search result."
|
5848 |
+
msgstr ""
|
5849 |
+
|
5850 |
+
#: app/features/search_bar/search_result.php:11
|
5851 |
+
#: app/libraries/notifications.php:598 app/libraries/render.php:437
|
5852 |
+
#: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
|
5853 |
+
#: app/skins/single.php:159 app/skins/single.php:707
|
5854 |
+
#: app/skins/single/default.php:86 app/skins/single/default.php:298
|
5855 |
+
#: app/skins/single/m1.php:34 app/skins/single/modern.php:184
|
5856 |
+
msgid "All of the day"
|
5857 |
+
msgstr "На весь день"
|
5858 |
+
|
5859 |
#: app/features/speakers.php:108 app/features/speakers.php:176
|
5860 |
#: app/features/speakers.php:248
|
5861 |
#, fuzzy
|
5920 |
msgid "%s Price"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: app/libraries/book.php:539
|
5924 |
msgid "Discount"
|
5925 |
msgstr "Скидка"
|
5926 |
|
5927 |
+
#: app/libraries/book.php:629 app/modules/booking/default.php:303
|
5928 |
#: app/modules/booking/default.php:401
|
5929 |
msgid "Download Invoice"
|
5930 |
msgstr ""
|
5948 |
msgid "Upgrade"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
+
#: app/libraries/factory.php:333
|
5952 |
msgid "day"
|
5953 |
msgstr "день"
|
5954 |
|
5955 |
+
#: app/libraries/factory.php:334 app/modules/countdown/details.php:123
|
5956 |
#: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
|
5957 |
#: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
|
5958 |
msgid "days"
|
5959 |
msgstr "дни"
|
5960 |
|
5961 |
+
#: app/libraries/factory.php:335
|
5962 |
msgid "hour"
|
5963 |
msgstr "час"
|
5964 |
|
5965 |
+
#: app/libraries/factory.php:336 app/modules/countdown/details.php:130
|
5966 |
#: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
|
5967 |
#: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
|
5968 |
msgid "hours"
|
5969 |
msgstr "часы"
|
5970 |
|
5971 |
+
#: app/libraries/factory.php:337
|
5972 |
msgid "minute"
|
5973 |
msgstr "минута"
|
5974 |
|
5975 |
+
#: app/libraries/factory.php:338 app/modules/countdown/details.php:137
|
5976 |
#: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
|
5977 |
#: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
|
5978 |
msgid "minutes"
|
5979 |
msgstr "минуты"
|
5980 |
|
5981 |
+
#: app/libraries/factory.php:339
|
5982 |
msgid "second"
|
5983 |
msgstr "секунда"
|
5984 |
|
5985 |
+
#: app/libraries/factory.php:340 app/modules/countdown/details.php:144
|
5986 |
#: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
|
5987 |
#: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
|
5988 |
msgid "seconds"
|
5989 |
msgstr "секунды"
|
5990 |
|
5991 |
+
#: app/libraries/factory.php:383
|
5992 |
msgid "MEC Single Sidebar"
|
5993 |
msgstr ""
|
5994 |
|
5995 |
+
#: app/libraries/factory.php:384
|
5996 |
msgid "Custom sidebar for single and modal page of MEC."
|
5997 |
msgstr ""
|
5998 |
|
6055 |
msgid "Slider View"
|
6056 |
msgstr ""
|
6057 |
|
6058 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4523
|
6059 |
msgid "SU"
|
6060 |
msgstr "Вс"
|
6061 |
|
6062 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4524
|
6063 |
msgid "MO"
|
6064 |
msgstr "Пн"
|
6065 |
|
6066 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4525
|
6067 |
msgid "TU"
|
6068 |
msgstr "Вт"
|
6069 |
|
6070 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4526
|
6071 |
msgid "WE"
|
6072 |
msgstr "Ср"
|
6073 |
|
6074 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4527
|
6075 |
msgid "TH"
|
6076 |
msgstr "Чт"
|
6077 |
|
6078 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4528
|
6079 |
msgid "FR"
|
6080 |
msgstr "Пт"
|
6081 |
|
6082 |
+
#: app/libraries/main.php:388 app/libraries/main.php:4529
|
6083 |
msgid "SA"
|
6084 |
msgstr "Сб"
|
6085 |
|
6231 |
msgid "Request is not valid."
|
6232 |
msgstr "Неверный запрос!"
|
6233 |
|
6234 |
+
#: app/libraries/main.php:2171 app/libraries/main.php:2201
|
6235 |
+
#: app/libraries/main.php:2230 app/libraries/main.php:2260
|
6236 |
+
#: app/libraries/main.php:2289 app/libraries/main.php:2318
|
6237 |
+
#: app/libraries/main.php:2347 app/libraries/main.php:2376
|
6238 |
+
#: app/libraries/main.php:2405 app/libraries/main.php:2429
|
6239 |
+
#: app/libraries/main.php:2473 app/libraries/main.php:2517
|
6240 |
+
#: app/libraries/main.php:2564 app/libraries/main.php:2611
|
6241 |
msgid "Sort"
|
6242 |
msgstr "Сортировать"
|
6243 |
|
6244 |
+
#: app/libraries/main.php:2177 app/libraries/main.php:2207
|
6245 |
+
#: app/libraries/main.php:2236 app/libraries/main.php:2266
|
6246 |
+
#: app/libraries/main.php:2295 app/libraries/main.php:2324
|
6247 |
+
#: app/libraries/main.php:2353 app/libraries/main.php:2382
|
6248 |
+
#: app/libraries/main.php:2435 app/libraries/main.php:2479
|
6249 |
+
#: app/libraries/main.php:2523 app/libraries/main.php:2570
|
6250 |
msgid "Required Field"
|
6251 |
msgstr "Требуемое поле"
|
6252 |
|
6253 |
+
#: app/libraries/main.php:2183 app/libraries/main.php:2213
|
6254 |
+
#: app/libraries/main.php:2242 app/libraries/main.php:2272
|
6255 |
+
#: app/libraries/main.php:2301 app/libraries/main.php:2330
|
6256 |
+
#: app/libraries/main.php:2359 app/libraries/main.php:2388
|
6257 |
+
#: app/libraries/main.php:2441 app/libraries/main.php:2485
|
6258 |
+
#: app/libraries/main.php:2529 app/libraries/main.php:2576
|
6259 |
msgid "Insert a label for this field"
|
6260 |
msgstr "Вставьте метку для этого поля"
|
6261 |
|
6262 |
+
#: app/libraries/main.php:2411
|
6263 |
msgid "HTML and shortcode are allowed."
|
6264 |
msgstr "HTML и Шорт-коды разрешены."
|
6265 |
|
6266 |
+
#: app/libraries/main.php:2454 app/libraries/main.php:2498
|
6267 |
+
#: app/libraries/main.php:2542
|
6268 |
msgid "Option"
|
6269 |
msgstr "Опции"
|
6270 |
|
6271 |
+
#: app/libraries/main.php:2576
|
6272 |
#, php-format
|
6273 |
msgid "Instead of %s, the page title with a link will be show."
|
6274 |
msgstr ""
|
6275 |
|
6276 |
+
#: app/libraries/main.php:2578
|
6277 |
msgid "Agreement Page"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
+
#: app/libraries/main.php:2589
|
6281 |
msgid "Checked by default"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
+
#: app/libraries/main.php:2590
|
6285 |
msgid "Unchecked by default"
|
6286 |
msgstr ""
|
6287 |
|
6288 |
+
#: app/libraries/main.php:2613
|
6289 |
msgid "Insert a label for this option"
|
6290 |
msgstr "Вставьте метку для этой опции"
|
6291 |
|
6292 |
+
#: app/libraries/main.php:2628
|
6293 |
msgid "Free"
|
6294 |
msgstr "Свободный вход"
|
6295 |
|
6296 |
+
#: app/libraries/main.php:3194 app/libraries/main.php:4770
|
6297 |
#, fuzzy
|
6298 |
#| msgid "M.E. Calendar"
|
6299 |
msgid "M.E. Calender"
|
6300 |
msgstr "Календарь событий"
|
6301 |
|
6302 |
+
#: app/libraries/main.php:3349
|
6303 |
#, php-format
|
6304 |
msgid "Copy of %s"
|
6305 |
msgstr "Скопировано из %s"
|
6306 |
|
6307 |
+
#: app/libraries/main.php:4022
|
6308 |
msgid "Booked an event."
|
6309 |
msgstr ""
|
6310 |
|
6311 |
+
#: app/libraries/main.php:4063
|
6312 |
#, php-format
|
6313 |
msgid "%s booked %s event."
|
6314 |
msgstr ""
|
6315 |
|
6316 |
+
#: app/libraries/main.php:4506
|
6317 |
msgid "Taxonomies"
|
6318 |
msgstr ""
|
6319 |
|
6320 |
+
#: app/libraries/main.php:4508
|
6321 |
msgid "Category Plural Label"
|
6322 |
msgstr ""
|
6323 |
|
6324 |
+
#: app/libraries/main.php:4509
|
6325 |
msgid "Category Singular Label"
|
6326 |
msgstr ""
|
6327 |
|
6328 |
+
#: app/libraries/main.php:4510
|
6329 |
msgid "Label Plural Label"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
+
#: app/libraries/main.php:4511
|
6333 |
msgid "Label Singular Label"
|
6334 |
msgstr ""
|
6335 |
|
6336 |
+
#: app/libraries/main.php:4511
|
6337 |
msgid "label"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
+
#: app/libraries/main.php:4512
|
6341 |
msgid "Location Plural Label"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
+
#: app/libraries/main.php:4513
|
6345 |
msgid "Location Singular Label"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
+
#: app/libraries/main.php:4514
|
6349 |
msgid "Organizer Plural Label"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
+
#: app/libraries/main.php:4515
|
6353 |
msgid "Organizer Singular Label"
|
6354 |
msgstr ""
|
6355 |
|
6356 |
+
#: app/libraries/main.php:4516
|
6357 |
#, fuzzy
|
6358 |
#| msgid "Search Labels"
|
6359 |
msgid "Speaker Plural Label"
|
6360 |
msgstr "Поиск метки"
|
6361 |
|
6362 |
+
#: app/libraries/main.php:4517
|
6363 |
#, fuzzy
|
6364 |
#| msgid "Popular Labels"
|
6365 |
msgid "Speaker Singular Label"
|
6366 |
msgstr "Популярные метки"
|
6367 |
|
6368 |
+
#: app/libraries/main.php:4523
|
6369 |
msgid "Sunday abbreviation"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
+
#: app/libraries/main.php:4524
|
6373 |
msgid "Monday abbreviation"
|
6374 |
msgstr ""
|
6375 |
|
6376 |
+
#: app/libraries/main.php:4525
|
6377 |
msgid "Tuesday abbreviation"
|
6378 |
msgstr ""
|
6379 |
|
6380 |
+
#: app/libraries/main.php:4526
|
6381 |
msgid "Wednesday abbreviation"
|
6382 |
msgstr ""
|
6383 |
|
6384 |
+
#: app/libraries/main.php:4527
|
6385 |
msgid "Thursday abbreviation"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
+
#: app/libraries/main.php:4528
|
6389 |
msgid "Friday abbreviation"
|
6390 |
msgstr ""
|
6391 |
|
6392 |
+
#: app/libraries/main.php:4529
|
6393 |
msgid "Saturday abbreviation"
|
6394 |
msgstr ""
|
6395 |
|
6396 |
+
#: app/libraries/main.php:4533
|
6397 |
msgid "Others"
|
6398 |
msgstr ""
|
6399 |
|
6400 |
+
#: app/libraries/main.php:4535
|
6401 |
msgid "Booking Success Message"
|
6402 |
msgstr ""
|
6403 |
|
6404 |
+
#: app/libraries/main.php:4535
|
6405 |
msgid ""
|
6406 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
6407 |
"needed, please check your email."
|
6409 |
"Благодарим за бронирование. Возможно потребуется дополнительная верификация "
|
6410 |
"ваших билетов. Пожалуйста проверьте вашу электронную почту."
|
6411 |
|
6412 |
+
#: app/libraries/main.php:4536 app/widgets/single.php:131
|
6413 |
msgid "Register Button"
|
6414 |
msgstr ""
|
6415 |
|
6416 |
+
#: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
|
6417 |
#: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
|
6418 |
#: app/skins/grid/render.php:116 app/skins/grid/render.php:162
|
6419 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:231
|
6420 |
#: app/skins/list/render.php:102 app/skins/list/render.php:190
|
6421 |
+
#: app/skins/masonry/render.php:175 app/skins/single.php:725
|
6422 |
+
#: app/skins/single.php:728 app/skins/single/default.php:233
|
6423 |
#: app/skins/single/default.php:235 app/skins/single/default.php:445
|
6424 |
#: app/skins/single/default.php:447 app/skins/single/m1.php:126
|
6425 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
6430 |
msgid "REGISTER"
|
6431 |
msgstr "РЕГИСТРАЦИЯ"
|
6432 |
|
6433 |
+
#: app/libraries/main.php:4537
|
6434 |
msgid "View Detail Button"
|
6435 |
msgstr ""
|
6436 |
|
6437 |
+
#: app/libraries/main.php:4537 app/skins/carousel/render.php:150
|
6438 |
#: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
|
6439 |
#: app/skins/grid/render.php:162 app/skins/grid/render.php:203
|
6440 |
#: app/skins/grid/render.php:231 app/skins/list/render.php:102
|
6445 |
msgid "View Detail"
|
6446 |
msgstr "Подробнее"
|
6447 |
|
6448 |
+
#: app/libraries/main.php:4538
|
6449 |
msgid "Event Detail Button"
|
6450 |
msgstr ""
|
6451 |
|
6452 |
+
#: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
|
6453 |
msgid "Event Detail"
|
6454 |
msgstr "Детали события"
|
6455 |
|
6456 |
+
#: app/libraries/main.php:4540
|
6457 |
msgid "More Info Link"
|
6458 |
msgstr ""
|
6459 |
|
6460 |
+
#: app/libraries/main.php:4543
|
6461 |
msgid "Ticket (Singular)"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
+
#: app/libraries/main.php:4544
|
6465 |
msgid "Tickets (Plural)"
|
6466 |
msgstr ""
|
6467 |
|
6468 |
+
#: app/libraries/main.php:4630
|
6469 |
msgid "EventON"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
+
#: app/libraries/main.php:4631
|
6473 |
msgid "The Events Calendar"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
+
#: app/libraries/main.php:4632
|
6477 |
msgid "Events Schedule WP Plugin"
|
6478 |
msgstr ""
|
6479 |
|
6480 |
+
#: app/libraries/main.php:4633
|
6481 |
msgid "Calendarize It"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#: app/libraries/main.php:4707 app/libraries/main.php:4727
|
6485 |
msgid "Confirmed"
|
6486 |
msgstr "Подтверждено"
|
6487 |
|
6488 |
+
#: app/libraries/main.php:4708 app/libraries/main.php:4735
|
6489 |
msgid "Rejected"
|
6490 |
msgstr "Отклонено"
|
6491 |
|
6492 |
+
#: app/libraries/main.php:4709 app/libraries/main.php:4731
|
6493 |
msgid "Pending"
|
6494 |
msgstr "В очереди"
|
6495 |
|
6496 |
+
#: app/libraries/main.php:4757
|
6497 |
msgid "Waiting"
|
6498 |
msgstr "Ожидает"
|
6499 |
|
6500 |
+
#: app/libraries/main.php:4962 app/libraries/render.php:367
|
6501 |
msgid "Skin controller does not exist."
|
6502 |
msgstr "Контроллер скина не существует."
|
6503 |
|
6505 |
msgid "Please verify your email."
|
6506 |
msgstr "Пожалуйста подтвердите свою эл. почту."
|
6507 |
|
6508 |
+
#: app/libraries/notifications.php:125
|
6509 |
msgid "Your booking is received."
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: app/libraries/notifications.php:193
|
6513 |
msgid "Your booking is confirmed."
|
6514 |
msgstr "Ваше бронирование подтверждено."
|
6515 |
|
6516 |
+
#: app/libraries/notifications.php:282
|
6517 |
#, fuzzy
|
6518 |
#| msgid "Your booking cannot be canceled."
|
6519 |
msgid "booking canceled."
|
6520 |
msgstr "Ваше бронирование не может быть отменено."
|
6521 |
|
6522 |
+
#: app/libraries/notifications.php:337
|
6523 |
msgid "A new booking is received."
|
6524 |
msgstr "Получено новое бронирование."
|
6525 |
|
6526 |
+
#: app/libraries/notifications.php:488
|
6527 |
msgid "A new event is added."
|
6528 |
msgstr "Новое событие добавлено."
|
6529 |
|
6530 |
+
#: app/libraries/notifications.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6531 |
msgid "to"
|
6532 |
msgstr ""
|
6533 |
|
6534 |
+
#: app/libraries/notifications.php:687 app/modules/export/details.php:27
|
6535 |
msgid "+ Add to Google Calendar"
|
6536 |
msgstr "+ Добавить в Google Calendar"
|
6537 |
|
6538 |
+
#: app/libraries/notifications.php:688 app/modules/export/details.php:28
|
6539 |
msgid "+ iCal export"
|
6540 |
msgstr "+ iCal экспорт"
|
6541 |
|
6542 |
+
#: app/libraries/notifications.php:752
|
6543 |
msgid "Yes"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
+
#: app/libraries/notifications.php:752
|
6547 |
msgid "No"
|
6548 |
msgstr ""
|
6549 |
|
6550 |
+
#: app/libraries/skins.php:958
|
6551 |
msgid "Ignore month and years"
|
6552 |
msgstr ""
|
6553 |
|
6624 |
msgid "Get Directions"
|
6625 |
msgstr ""
|
6626 |
|
6627 |
+
#: app/modules/links/details.php:17 app/skins/single.php:425
|
6628 |
msgid "Share this event"
|
6629 |
msgstr "Поделиться событием"
|
6630 |
|
6651 |
msgid "Go to occurrence page"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: app/modules/next-event/details.php:95 app/skins/single.php:701
|
6655 |
#: app/skins/single/default.php:80 app/skins/single/default.php:292
|
6656 |
#: app/skins/single/m1.php:28 app/skins/single/modern.php:178
|
6657 |
msgid "Time"
|
6759 |
msgid "List"
|
6760 |
msgstr "Список"
|
6761 |
|
6762 |
+
#: app/skins/masonry.php:238
|
6763 |
msgid "All"
|
6764 |
msgstr ""
|
6765 |
|
6777 |
msgid "No Events"
|
6778 |
msgstr "События отсутствуют"
|
6779 |
|
6780 |
+
#: app/skins/single.php:204
|
6781 |
msgid "Home"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: app/skins/single.php:508 app/skins/single/default.php:43
|
6785 |
#: app/skins/single/m1.php:247 app/skins/single/m2.php:174
|
6786 |
#: app/skins/single/modern.php:256
|
6787 |
msgid "Sold out!"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
+
#: app/skins/single.php:773 app/skins/single.php:828
|
6791 |
#: app/skins/single/default.php:205 app/skins/single/default.php:417
|
6792 |
#: app/skins/single/m1.php:100 app/skins/single/m2.php:32
|
6793 |
#: app/skins/single/modern.php:41
|
6794 |
msgid "Phone"
|
6795 |
msgstr "Телефон"
|
6796 |
|
6797 |
+
#: app/skins/single.php:787 app/skins/single.php:842
|
6798 |
#: app/skins/single/default.php:219 app/skins/single/default.php:431
|
6799 |
#: app/skins/single/m1.php:114 app/skins/single/m2.php:46
|
6800 |
#: app/skins/single/modern.php:55
|
6801 |
msgid "Website"
|
6802 |
msgstr "Веб сайт"
|
6803 |
|
6804 |
+
#: app/skins/single.php:912
|
6805 |
#, fuzzy
|
6806 |
#| msgid "No Search Options"
|
6807 |
msgid "Speakers:"
|
languages/modern-events-calendar-lite-sv_SE.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-sv_SE.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-08-
|
5 |
-
"PO-Revision-Date: 2019-08-
|
6 |
"Last-Translator: Mats Vallström <walle@mtre.se>\n"
|
7 |
"Language-Team: Mats Vallström <walle@mtre.se>\n"
|
8 |
"Language: sv_SE\n"
|
@@ -336,7 +336,7 @@ msgstr "Integration för BuddyPress"
|
|
336 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
337 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
338 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
339 |
-
#: app/features/mec/settings.php:101 app/features/mec/settings.php:
|
340 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
341 |
#: app/features/mec/styling.php:59
|
342 |
msgid "Mailchimp Integration"
|
@@ -402,9 +402,9 @@ msgstr "Inga raderade evenemang hittades!"
|
|
402 |
#: app/features/mec/meta_boxes/search_form.php:453
|
403 |
#: app/features/mec/meta_boxes/search_form.php:514
|
404 |
#: app/features/mec/meta_boxes/search_form.php:575
|
405 |
-
#: app/features/mec/settings.php:
|
406 |
-
#: app/libraries/main.php:
|
407 |
-
#: app/skins/single.php:
|
408 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
409 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
410 |
msgid "Category"
|
@@ -412,7 +412,7 @@ msgstr "Kategori"
|
|
412 |
|
413 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
414 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
415 |
-
#: app/libraries/main.php:
|
416 |
msgid "Categories"
|
417 |
msgstr "Kategorier"
|
418 |
|
@@ -487,13 +487,13 @@ msgstr "Evenemangsdetaljer"
|
|
487 |
#: app/features/events.php:322 app/features/events.php:3168
|
488 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
489 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
490 |
-
#: app/features/mec/settings.php:768 app/libraries/main.php:
|
491 |
#: app/widgets/single.php:103
|
492 |
msgid "Event Cost"
|
493 |
msgstr "Evenemangskostnader"
|
494 |
|
495 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
496 |
-
#: app/libraries/main.php:
|
497 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
498 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
499 |
msgid "Cost"
|
@@ -510,7 +510,7 @@ msgstr "Gäst-data"
|
|
510 |
#: app/features/events.php:432 app/features/events.php:2250
|
511 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
512 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
513 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
514 |
#: app/modules/booking/steps/form.php:37
|
515 |
msgid "Name"
|
516 |
msgstr "Namn"
|
@@ -521,10 +521,10 @@ msgstr "Namn"
|
|
521 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
522 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
523 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
524 |
-
#: app/libraries/main.php:1216 app/libraries/main.php:
|
525 |
-
#: app/libraries/notifications.php:
|
526 |
-
#: app/modules/booking/steps/form.php:84 app/skins/single.php:
|
527 |
-
#: app/skins/single.php:
|
528 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
529 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
530 |
msgid "Email"
|
@@ -670,14 +670,14 @@ msgstr ""
|
|
670 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
671 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
672 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
673 |
-
#: app/features/mec/settings.php:868 app/features/mec/settings.php:
|
674 |
-
#: app/features/mec/settings.php:
|
675 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
676 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
677 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
678 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
679 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
680 |
-
#: app/features/organizers.php:272 app/skins/single.php:
|
681 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
682 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
683 |
#: app/skins/single/modern.php:133
|
@@ -887,9 +887,9 @@ msgstr "Uteslut vissa dagar"
|
|
887 |
|
888 |
#: app/features/events.php:1130 app/features/events.php:2340
|
889 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
890 |
-
#: app/libraries/main.php:1709 app/libraries/main.php:
|
891 |
#: app/modules/booking/steps/tickets.php:22
|
892 |
-
#: app/modules/next-event/details.php:90 app/skins/single.php:
|
893 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
894 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
895 |
msgid "Date"
|
@@ -907,7 +907,7 @@ msgid "Day 1"
|
|
907 |
msgstr ""
|
908 |
|
909 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
910 |
-
#: app/skins/single.php:
|
911 |
msgid "Hourly Schedule"
|
912 |
msgstr "Timme-schema"
|
913 |
|
@@ -946,14 +946,14 @@ msgstr "Titel"
|
|
946 |
#: app/features/events.php:2154 app/features/events.php:2196
|
947 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
948 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
949 |
-
#: app/features/mec/booking.php:525 app/libraries/main.php:
|
950 |
-
#: app/libraries/main.php:
|
951 |
-
#: app/libraries/main.php:
|
952 |
-
#: app/libraries/main.php:
|
953 |
-
#: app/libraries/main.php:
|
954 |
-
#: app/libraries/main.php:
|
955 |
-
#: app/libraries/main.php:
|
956 |
-
#: app/libraries/main.php:
|
957 |
msgid "Remove"
|
958 |
msgst
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-08-13 16:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-08-13 16:47+0430\n"
|
6 |
"Last-Translator: Mats Vallström <walle@mtre.se>\n"
|
7 |
"Language-Team: Mats Vallström <walle@mtre.se>\n"
|
8 |
"Language: sv_SE\n"
|
336 |
#: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
|
337 |
#: app/features/mec/messages.php:37 app/features/mec/modules.php:44
|
338 |
#: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
|
339 |
+
#: app/features/mec/settings.php:101 app/features/mec/settings.php:952
|
340 |
#: app/features/mec/single.php:36 app/features/mec/styles.php:37
|
341 |
#: app/features/mec/styling.php:59
|
342 |
msgid "Mailchimp Integration"
|
402 |
#: app/features/mec/meta_boxes/search_form.php:453
|
403 |
#: app/features/mec/meta_boxes/search_form.php:514
|
404 |
#: app/features/mec/meta_boxes/search_form.php:575
|
405 |
+
#: app/features/mec/settings.php:905 app/features/mec/single.php:390
|
406 |
+
#: app/libraries/main.php:4509 app/libraries/skins.php:807
|
407 |
+
#: app/skins/single.php:530 app/skins/single/default.php:170
|
408 |
#: app/skins/single/default.php:382 app/skins/single/m1.php:170
|
409 |
#: app/skins/single/m2.php:102 app/skins/single/modern.php:110
|
410 |
msgid "Category"
|
412 |
|
413 |
#: app/features/events.php:163 app/features/fes/form.php:745
|
414 |
#: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
|
415 |
+
#: app/libraries/main.php:4508
|
416 |
msgid "Categories"
|
417 |
msgstr "Kategorier"
|
418 |
|
487 |
#: app/features/events.php:322 app/features/events.php:3168
|
488 |
#: app/features/events.php:3210 app/features/fes/form.php:706
|
489 |
#: app/features/ix.php:2740 app/features/ix.php:2781
|
490 |
+
#: app/features/mec/settings.php:768 app/libraries/main.php:4541
|
491 |
#: app/widgets/single.php:103
|
492 |
msgid "Event Cost"
|
493 |
msgstr "Evenemangskostnader"
|
494 |
|
495 |
#: app/features/events.php:326 app/features/fes/form.php:709
|
496 |
+
#: app/libraries/main.php:4542 app/skins/single.php:553
|
497 |
#: app/skins/single/default.php:104 app/skins/single/default.php:316
|
498 |
#: app/skins/single/m1.php:49 app/skins/single/modern.php:199
|
499 |
msgid "Cost"
|
510 |
#: app/features/events.php:432 app/features/events.php:2250
|
511 |
#: app/features/fes/form.php:668 app/features/labels.php:178
|
512 |
#: app/features/mec/regform.php:27 app/features/organizers.php:279
|
513 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:736
|
514 |
#: app/modules/booking/steps/form.php:37
|
515 |
msgid "Name"
|
516 |
msgstr "Namn"
|
521 |
#: app/features/organizers.php:111 app/features/organizers.php:152
|
522 |
#: app/features/profile/profile.php:93 app/features/speakers.php:124
|
523 |
#: app/features/speakers.php:184 app/libraries/main.php:1150
|
524 |
+
#: app/libraries/main.php:1216 app/libraries/main.php:2261
|
525 |
+
#: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
|
526 |
+
#: app/modules/booking/steps/form.php:84 app/skins/single.php:780
|
527 |
+
#: app/skins/single.php:835 app/skins/single/default.php:212
|
528 |
#: app/skins/single/default.php:424 app/skins/single/m1.php:107
|
529 |
#: app/skins/single/m2.php:39 app/skins/single/modern.php:48
|
530 |
msgid "Email"
|
670 |
#: app/features/mec/settings.php:565 app/features/mec/settings.php:584
|
671 |
#: app/features/mec/settings.php:598 app/features/mec/settings.php:626
|
672 |
#: app/features/mec/settings.php:713 app/features/mec/settings.php:851
|
673 |
+
#: app/features/mec/settings.php:868 app/features/mec/settings.php:967
|
674 |
+
#: app/features/mec/settings.php:980 app/features/mec/settings.php:996
|
675 |
#: app/features/mec/single.php:228 app/features/mec/single.php:244
|
676 |
#: app/features/mec/single.php:263 app/features/mec/single.php:280
|
677 |
#: app/features/mec/single.php:296 app/features/mec/single.php:310
|
678 |
#: app/features/mec/single.php:348 app/features/mec/styling.php:358
|
679 |
#: app/features/mec/styling.php:375 app/features/mec/styling.php:388
|
680 |
+
#: app/features/organizers.php:272 app/skins/single.php:628
|
681 |
#: app/skins/single/default.php:119 app/skins/single/default.php:331
|
682 |
#: app/skins/single/m1.php:192 app/skins/single/m2.php:125
|
683 |
#: app/skins/single/modern.php:133
|
887 |
|
888 |
#: app/features/events.php:1130 app/features/events.php:2340
|
889 |
#: app/features/mec/regform.php:271 app/features/profile/profile.php:31
|
890 |
+
#: app/libraries/main.php:1709 app/libraries/main.php:2319
|
891 |
#: app/modules/booking/steps/tickets.php:22
|
892 |
+
#: app/modules/next-event/details.php:90 app/skins/single.php:608
|
893 |
#: app/skins/single/default.php:68 app/skins/single/default.php:280
|
894 |
#: app/skins/single/m1.php:16 app/skins/single/modern.php:166
|
895 |
msgid "Date"
|
907 |
msgstr ""
|
908 |
|
909 |
#: app/features/events.php:1212 app/features/mec/settings.php:822
|
910 |
+
#: app/skins/single.php:898
|
911 |
msgid "Hourly Schedule"
|
912 |
msgstr "Timme-schema"
|
913 |
|
946 |
#: app/features/events.php:2154 app/features/events.php:2196
|
947 |
#: app/features/fes/list.php:78 app/features/mec/booking.php:413
|
948 |
#: app/features/mec/booking.php:442 app/features/mec/booking.php:493
|
949 |
+
#: app/features/mec/booking.php:525 app/libraries/main.php:2180
|
950 |
+
#: app/libraries/main.php:2210 app/libraries/main.php:2239
|
951 |
+
#: app/libraries/main.php:2269 app/libraries/main.php:2298
|
952 |
+
#: app/libraries/main.php:2327 app/libraries/main.php:2356
|
953 |
+
#: app/libraries/main.php:2385 app/libraries/main.php:2407
|
954 |
+
#: app/libraries/main.php:2438 app/libraries/main.php:2482
|
955 |
+
#: app/libraries/main.php:2526 app/libraries/main.php:2573
|
956 |
+
#: app/libraries/main.php:2612
|
957 |
msgid "Remove"
|
958 |
msgst
|