Version Description
16 June 2020 = - Improved: Backend speed by refactoring the backend CSS and JS loading - Improved: Show errors upon featured image uploads in Frontend Event Submission if needed - Improved: The plugin uninstallation by removing more data - Improved: The related events module by hiding expired events - Improved: The loading of multiple day events in tile and agenda skins (pro) - Improved: The attendees module of BuddyPress integration (pro) - Updated: Whatsapp share URL - Optimized: Mass email sending in the reports menu (pro) - Fixed: Local time module that occurs in some rare conditions - Fixed: Location auto-suggest fields when the API key is not inserted (pro) - Fixed: Booking message in case of free booking (pro) - Fixed: Booking module regarding displaying extra elements after a successful booking (pro) - Fixed: Notification placeholders (pro) - Fixed: Ordering custom days events - Fixed: Google Calendar import - Fixed: Stripe payment (pro) - Fixed: Default configuration of full calendar skin - Fixed: Divi builder in Divi child themes - Fixed: Availability of Sell all occurrences events (pro) - Fixed: Some issues in profile short-code regarding date and time format (pro) - Fixed: Some issues related to Pro features in Lite version - Fixed: Monthly Calendar RTL - Fixed: Wizard dark mode - Fixed: Wizard time picker - Fixed: A conflict with Admin column plugin
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 5.6.1 |
Comparing to | |
See all releases |
Code changes from version 5.6.0 to 5.6.1
- app/addons/divi.php +2 -1
- app/features/events.php +8 -10
- app/features/ix.php +1 -1
- app/features/locations.php +20 -1
- app/features/mec.php +4 -2
- app/features/mec/dashboard.php +1 -1
- app/features/popup/event.php +25 -149
- app/libraries/book.php +26 -11
- app/libraries/factory.php +102 -61
- app/libraries/main.php +15 -5
- app/libraries/notifications.php +2 -0
- app/libraries/render.php +1 -1
- app/libraries/skins.php +27 -7
- app/modules/attendees-list/details.php +24 -33
- app/modules/booking/default.php +3 -1
- app/modules/booking/steps/tickets.php +1 -0
- app/skins/custom/render.php +6 -5
- app/skins/daily_view.php +9 -3
- app/skins/grid.php +45 -22
- app/skins/list.php +45 -22
- app/skins/monthly_view.php +7 -1
- app/skins/single.php +15 -12
- app/skins/single/default.php +4 -5
- app/skins/single/modern.php +0 -1
- app/skins/tile.php +7 -1
- app/skins/timetable.php +7 -1
- app/skins/weekly_view.php +7 -1
- app/skins/yearly_view.php +7 -1
- assets/css/backend.css +56 -1
- assets/css/backend.min.css +1 -1
- assets/css/mecrtl.css +25 -0
- assets/css/mecrtl.min.css +1 -1
- changelog.txt +30 -3
- languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
- languages/modern-events-calendar-lite-cs_CZ.po +267 -263
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +266 -263
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +266 -260
- languages/modern-events-calendar-lite-es_ES.mo +0 -0
- languages/modern-events-calendar-lite-es_ES.po +266 -263
- languages/modern-events-calendar-lite-fr_FR.mo +0 -0
- languages/modern-events-calendar-lite-fr_FR.po +266 -263
- languages/modern-events-calendar-lite-hu_HU.mo +0 -0
- languages/modern-events-calendar-lite-hu_HU.po +266 -260
- languages/modern-events-calendar-lite-it_IT.mo +0 -0
- languages/modern-events-calendar-lite-it_IT.po +266 -263
- languages/modern-events-calendar-lite-nb_NO.mo +0 -0
- languages/modern-events-calendar-lite-nb_NO.po +266 -263
- languages/modern-events-calendar-lite-nl_NL.mo +0 -0
- languages/modern-events-calendar-lite-nl_NL.po +266 -260
- languages/modern-events-calendar-lite-pl_PL.mo +0 -0
- languages/modern-events-calendar-lite-pl_PL.po +267 -263
- languages/modern-events-calendar-lite-pt_BR.mo +0 -0
- languages/modern-events-calendar-lite-pt_BR.po +218 -229
@@ -39,7 +39,8 @@ class MEC_addon_divi extends MEC_base
|
|
39 |
{
|
40 |
// Divi is not installed
|
41 |
$theme = wp_get_theme(); // gets the current theme
|
42 |
-
|
|
|
43 |
|
44 |
add_action('divi_extensions_init', array($this, 'mecdivi_initialize_extension'));
|
45 |
add_filter('et_builder_load_actions', array($this, 'add_ajax_actions'));
|
39 |
{
|
40 |
// Divi is not installed
|
41 |
$theme = wp_get_theme(); // gets the current theme
|
42 |
+
|
43 |
+
if('Divi' != $theme->get_template()) return false;
|
44 |
|
45 |
add_action('divi_extensions_init', array($this, 'mecdivi_initialize_extension'));
|
46 |
add_filter('et_builder_load_actions', array($this, 'add_ajax_actions'));
|
@@ -3835,22 +3835,22 @@ class MEC_feature_events extends MEC_base
|
|
3835 |
// Current User is not Permitted
|
3836 |
if(!current_user_can('publish_posts')) $this->main->response(array('success'=>0, 'code'=>'NO_ACCESS'));
|
3837 |
|
3838 |
-
$mail_recipients_info = isset($_POST['mail_recipients_info']) ? sanitize_text_field($_POST['mail_recipients_info']) : '';
|
3839 |
$mail_subject = isset($_POST['mail_subject']) ? sanitize_text_field($_POST['mail_subject']) : '';
|
3840 |
$mail_content = isset($_POST['mail_content']) ? $_POST['mail_content'] : '';
|
3841 |
-
|
3842 |
-
|
3843 |
-
|
3844 |
-
$send_mail_user = array();
|
3845 |
-
$render_recipients = explode(',', $mail_recipients_info);
|
3846 |
$headers = array('Content-Type: text/html; charset=UTF-8');
|
3847 |
|
|
|
|
|
|
|
3848 |
foreach($render_recipients as $recipient)
|
3849 |
{
|
3850 |
$render_recipient = explode(':.:', $recipient);
|
3851 |
-
|
3852 |
$to = isset($render_recipient[1]) ? trim($render_recipient[1]) : '';
|
3853 |
-
if(
|
3854 |
|
3855 |
$message = $mail_content;
|
3856 |
$message = str_replace('%%name%%', (isset($render_recipient[0]) ? trim($render_recipient[0]) : ''), $message);
|
@@ -3867,8 +3867,6 @@ class MEC_feature_events extends MEC_base
|
|
3867 |
|
3868 |
// Send the mail
|
3869 |
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']);
|
3870 |
-
|
3871 |
-
$send_mail_user[$mail_arg['to']] = '';
|
3872 |
}
|
3873 |
|
3874 |
// Remove the HTML Email filter
|
3835 |
// Current User is not Permitted
|
3836 |
if(!current_user_can('publish_posts')) $this->main->response(array('success'=>0, 'code'=>'NO_ACCESS'));
|
3837 |
|
3838 |
+
$mail_recipients_info = isset($_POST['mail_recipients_info']) ? trim(sanitize_text_field($_POST['mail_recipients_info']), ', ') : '';
|
3839 |
$mail_subject = isset($_POST['mail_subject']) ? sanitize_text_field($_POST['mail_subject']) : '';
|
3840 |
$mail_content = isset($_POST['mail_content']) ? $_POST['mail_content'] : '';
|
3841 |
+
|
3842 |
+
$render_recipients = array_unique(explode(',', $mail_recipients_info));
|
|
|
|
|
|
|
3843 |
$headers = array('Content-Type: text/html; charset=UTF-8');
|
3844 |
|
3845 |
+
// Set Email Type to HTML
|
3846 |
+
add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
|
3847 |
+
|
3848 |
foreach($render_recipients as $recipient)
|
3849 |
{
|
3850 |
$render_recipient = explode(':.:', $recipient);
|
3851 |
+
|
3852 |
$to = isset($render_recipient[1]) ? trim($render_recipient[1]) : '';
|
3853 |
+
if(!trim($to)) continue;
|
3854 |
|
3855 |
$message = $mail_content;
|
3856 |
$message = str_replace('%%name%%', (isset($render_recipient[0]) ? trim($render_recipient[0]) : ''), $message);
|
3867 |
|
3868 |
// Send the mail
|
3869 |
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']);
|
|
|
|
|
3870 |
}
|
3871 |
|
3872 |
// Remove the HTML Email filter
|
@@ -2739,7 +2739,7 @@ class MEC_feature_ix extends MEC_base
|
|
2739 |
$args = array();
|
2740 |
$args['timeMin'] = date('Y-m-d\TH:i:s', strtotime($start_date)).$gmt_offset;
|
2741 |
$args['timeMax'] = date('Y-m-d\TH:i:s', strtotime($end_date)).$gmt_offset;
|
2742 |
-
$args['maxResults'] =
|
2743 |
|
2744 |
$response = $service->events->listEvents($calendar_id, $args);
|
2745 |
|
2739 |
$args = array();
|
2740 |
$args['timeMin'] = date('Y-m-d\TH:i:s', strtotime($start_date)).$gmt_offset;
|
2741 |
$args['timeMax'] = date('Y-m-d\TH:i:s', strtotime($end_date)).$gmt_offset;
|
2742 |
+
$args['maxResults'] = 50000;
|
2743 |
|
2744 |
$response = $service->events->listEvents($calendar_id, $args);
|
2745 |
|
@@ -100,6 +100,10 @@ class MEC_feature_locations extends MEC_base
|
|
100 |
$longitude = get_metadata('term', $term->term_id, 'longitude', true);
|
101 |
$url = get_metadata('term', $term->term_id, 'url', true);
|
102 |
$thumbnail = get_metadata('term', $term->term_id, 'thumbnail', true);
|
|
|
|
|
|
|
|
|
103 |
?>
|
104 |
<tr class="form-field">
|
105 |
<th scope="row">
|
@@ -107,6 +111,8 @@ class MEC_feature_locations extends MEC_base
|
|
107 |
</th>
|
108 |
<td>
|
109 |
<input class="mec-has-tip" type="text" placeholder="<?php esc_attr_e('Enter the location address', 'modern-events-calendar-lite'); ?>" name="address" id="mec_address" value="<?php echo $address; ?>" />
|
|
|
|
|
110 |
<script type="text/javascript">
|
111 |
jQuery(document).ready(function()
|
112 |
{
|
@@ -116,6 +122,7 @@ class MEC_feature_locations extends MEC_base
|
|
116 |
}
|
117 |
});
|
118 |
</script>
|
|
|
119 |
</td>
|
120 |
</tr>
|
121 |
<tr class="form-field">
|
@@ -164,10 +171,16 @@ class MEC_feature_locations extends MEC_base
|
|
164 |
public function add_form()
|
165 |
{
|
166 |
$this->main->load_map_assets();
|
|
|
|
|
|
|
|
|
167 |
?>
|
168 |
<div class="form-field">
|
169 |
<label for="mec_address"><?php _e('Address', 'modern-events-calendar-lite'); ?></label>
|
170 |
<input type="text" name="address" placeholder="<?php esc_attr_e('Enter the location address', 'modern-events-calendar-lite'); ?>" id="mec_address" value="" />
|
|
|
|
|
171 |
<script type="text/javascript">
|
172 |
jQuery(document).ready(function()
|
173 |
{
|
@@ -177,6 +190,7 @@ class MEC_feature_locations extends MEC_base
|
|
177 |
}
|
178 |
});
|
179 |
</script>
|
|
|
180 |
</div>
|
181 |
<div class="form-field">
|
182 |
<label for="mec_latitude"><?php _e('Latitude', 'modern-events-calendar-lite'); ?></label>
|
@@ -299,6 +313,10 @@ class MEC_feature_locations extends MEC_base
|
|
299 |
if(!is_array($location_ids)) $location_ids = array();
|
300 |
|
301 |
$additional_locations_status = (!isset($this->settings['additional_locations']) or (isset($this->settings['additional_locations']) and $this->settings['additional_locations'])) ? true : false;
|
|
|
|
|
|
|
|
|
302 |
?>
|
303 |
<div class="mec-meta-box-fields mec-event-tab-content" id="mec-location">
|
304 |
<h4><?php echo sprintf(__('Event %s', 'modern-events-calendar-lite'), $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite'))); ?></h4>
|
@@ -326,7 +344,8 @@ class MEC_feature_locations extends MEC_base
|
|
326 |
<div class="mec-form-row">
|
327 |
<input type="text" name="mec[location][address]" id="mec_location_address" value="" placeholder="<?php _e('Event Location', 'modern-events-calendar-lite'); ?>" />
|
328 |
<p class="description"><?php _e('eg. City hall, Manhattan, New York', 'modern-events-calendar-lite'); ?></p>
|
329 |
-
|
|
|
330 |
<script type="text/javascript">
|
331 |
jQuery(document).ready(function()
|
332 |
{
|
100 |
$longitude = get_metadata('term', $term->term_id, 'longitude', true);
|
101 |
$url = get_metadata('term', $term->term_id, 'url', true);
|
102 |
$thumbnail = get_metadata('term', $term->term_id, 'thumbnail', true);
|
103 |
+
|
104 |
+
// Map Options
|
105 |
+
$status = isset($this->settings['google_maps_status']) ? $this->settings['google_maps_status'] : 1;
|
106 |
+
$api_key = isset($this->settings['google_maps_api_key']) ? $this->settings['google_maps_api_key'] : '';
|
107 |
?>
|
108 |
<tr class="form-field">
|
109 |
<th scope="row">
|
111 |
</th>
|
112 |
<td>
|
113 |
<input class="mec-has-tip" type="text" placeholder="<?php esc_attr_e('Enter the location address', 'modern-events-calendar-lite'); ?>" name="address" id="mec_address" value="<?php echo $address; ?>" />
|
114 |
+
|
115 |
+
<?php if($status and trim($api_key)): ?>
|
116 |
<script type="text/javascript">
|
117 |
jQuery(document).ready(function()
|
118 |
{
|
122 |
}
|
123 |
});
|
124 |
</script>
|
125 |
+
<?php endif; ?>
|
126 |
</td>
|
127 |
</tr>
|
128 |
<tr class="form-field">
|
171 |
public function add_form()
|
172 |
{
|
173 |
$this->main->load_map_assets();
|
174 |
+
|
175 |
+
// Map Options
|
176 |
+
$status = isset($this->settings['google_maps_status']) ? $this->settings['google_maps_status'] : 1;
|
177 |
+
$api_key = isset($this->settings['google_maps_api_key']) ? $this->settings['google_maps_api_key'] : '';
|
178 |
?>
|
179 |
<div class="form-field">
|
180 |
<label for="mec_address"><?php _e('Address', 'modern-events-calendar-lite'); ?></label>
|
181 |
<input type="text" name="address" placeholder="<?php esc_attr_e('Enter the location address', 'modern-events-calendar-lite'); ?>" id="mec_address" value="" />
|
182 |
+
|
183 |
+
<?php if($status and trim($api_key)): ?>
|
184 |
<script type="text/javascript">
|
185 |
jQuery(document).ready(function()
|
186 |
{
|
190 |
}
|
191 |
});
|
192 |
</script>
|
193 |
+
<?php endif; ?>
|
194 |
</div>
|
195 |
<div class="form-field">
|
196 |
<label for="mec_latitude"><?php _e('Latitude', 'modern-events-calendar-lite'); ?></label>
|
313 |
if(!is_array($location_ids)) $location_ids = array();
|
314 |
|
315 |
$additional_locations_status = (!isset($this->settings['additional_locations']) or (isset($this->settings['additional_locations']) and $this->settings['additional_locations'])) ? true : false;
|
316 |
+
|
317 |
+
// Map Options
|
318 |
+
$status = isset($this->settings['google_maps_status']) ? $this->settings['google_maps_status'] : 1;
|
319 |
+
$api_key = isset($this->settings['google_maps_api_key']) ? $this->settings['google_maps_api_key'] : '';
|
320 |
?>
|
321 |
<div class="mec-meta-box-fields mec-event-tab-content" id="mec-location">
|
322 |
<h4><?php echo sprintf(__('Event %s', 'modern-events-calendar-lite'), $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite'))); ?></h4>
|
344 |
<div class="mec-form-row">
|
345 |
<input type="text" name="mec[location][address]" id="mec_location_address" value="" placeholder="<?php _e('Event Location', 'modern-events-calendar-lite'); ?>" />
|
346 |
<p class="description"><?php _e('eg. City hall, Manhattan, New York', 'modern-events-calendar-lite'); ?></p>
|
347 |
+
|
348 |
+
<?php if($status and trim($api_key)): ?>
|
349 |
<script type="text/javascript">
|
350 |
jQuery(document).ready(function()
|
351 |
{
|
@@ -1102,7 +1102,9 @@ class MEC_feature_mec extends MEC_base
|
|
1102 |
'normal',
|
1103 |
'high'
|
1104 |
);
|
1105 |
-
|
|
|
|
|
1106 |
add_meta_box(
|
1107 |
'mec_widget_total_bookings',
|
1108 |
__('Total Bookings', 'modern-events-calendar-lite'),
|
@@ -1111,7 +1113,7 @@ class MEC_feature_mec extends MEC_base
|
|
1111 |
'normal',
|
1112 |
'high'
|
1113 |
);
|
1114 |
-
|
1115 |
}
|
1116 |
|
1117 |
/**
|
1102 |
'normal',
|
1103 |
'high'
|
1104 |
);
|
1105 |
+
|
1106 |
+
if($this->getPRO())
|
1107 |
+
{
|
1108 |
add_meta_box(
|
1109 |
'mec_widget_total_bookings',
|
1110 |
__('Total Bookings', 'modern-events-calendar-lite'),
|
1113 |
'normal',
|
1114 |
'high'
|
1115 |
);
|
1116 |
+
}
|
1117 |
}
|
1118 |
|
1119 |
/**
|
@@ -366,7 +366,7 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
|
|
366 |
<?php if($booking_status) echo (new MEC_feature_mec())->widget_total_bookings(); ?>
|
367 |
<?php endif; ?>
|
368 |
|
369 |
-
<?php echo (new MEC_feature_mec())->widget_print(); ?>
|
370 |
|
371 |
<div class="w-row">
|
372 |
<div class="w-col-sm-12">
|
366 |
<?php if($booking_status) echo (new MEC_feature_mec())->widget_total_bookings(); ?>
|
367 |
<?php endif; ?>
|
368 |
|
369 |
+
<?php if($this->getPRO()) echo (new MEC_feature_mec())->widget_print(); ?>
|
370 |
|
371 |
<div class="w-row">
|
372 |
<div class="w-col-sm-12">
|
@@ -75,81 +75,16 @@ $datepicker_format = (isset($settings['datepicker_format']) and trim($settings['
|
|
75 |
value="<?php echo esc_attr( $this->main->standardize_format( $start_date, $datepicker_format ) ); ?>"
|
76 |
placeholder="<?php _e('Start Date', 'modern-events-calendar-lite'); ?>" autocomplete="off"/>
|
77 |
</div>
|
78 |
-
<div class="mec-col-6 mec-time-picker">
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
<select name="mec[date][start][hour]" id="mec_start_hour" class="mec_start_hour wn-mec-select-popup">
|
89 |
-
<?php for ($i = 0; $i <= 23; $i++) : ?>
|
90 |
-
<option
|
91 |
-
<?php
|
92 |
-
if ($start_time_hour == $i) {
|
93 |
-
echo 'selected="selected"';
|
94 |
-
}
|
95 |
-
?>
|
96 |
-
value="<?php echo $i; ?>"><?php echo $i; ?></option>
|
97 |
-
<?php endfor; ?>
|
98 |
-
</select>
|
99 |
-
<span class="time-dv">:</span>
|
100 |
-
<select name="mec[date][start][minutes]" id="mec_start_minutes" class="mec_start_minutes wn-mec-select-popup">
|
101 |
-
<?php for ($i = 0; $i <= 11; $i++) : ?>
|
102 |
-
<option
|
103 |
-
<?php
|
104 |
-
if ($start_time_minutes == ($i * 5)) {
|
105 |
-
echo 'selected="selected"';
|
106 |
-
}
|
107 |
-
?>
|
108 |
-
value="<?php echo($i * 5); ?>"><?php echo sprintf('%02d', ($i * 5)); ?></option>
|
109 |
-
<?php endfor; ?>
|
110 |
-
</select>
|
111 |
-
<?php else : if($start_time_ampm == 'AM' and $start_time_hour == '0') $start_time_hour = 12; ?>
|
112 |
-
<select name="mec[date][start][hour]" id="mec_start_hour" class="mec_start_hour wn-mec-select-popup">
|
113 |
-
<?php for ($i = 1; $i <= 12; $i++) : ?>
|
114 |
-
<option
|
115 |
-
<?php
|
116 |
-
if ($start_time_hour == $i) {
|
117 |
-
echo 'selected="selected"';
|
118 |
-
}
|
119 |
-
?>
|
120 |
-
value="<?php echo $i; ?>"><?php echo $i; ?></option>
|
121 |
-
<?php endfor; ?>
|
122 |
-
</select>
|
123 |
-
<span class="time-dv">:</span>
|
124 |
-
<select name="mec[date][start][minutes]" id="mec_start_minutes" class="mec_start_minutes wn-mec-select-popup">
|
125 |
-
<?php for ($i = 0; $i <= 11; $i++) : ?>
|
126 |
-
<option
|
127 |
-
<?php
|
128 |
-
if ($start_time_minutes == ($i * 5)) {
|
129 |
-
echo 'selected="selected"';
|
130 |
-
}
|
131 |
-
?>
|
132 |
-
value="<?php echo($i * 5); ?>"><?php echo sprintf('%02d', ($i * 5)); ?></option>
|
133 |
-
<?php endfor; ?>
|
134 |
-
</select>
|
135 |
-
<select name="mec[date][start][ampm]" id="mec_start_ampm" class="mec_start_ampm wn-mec-select-popup">
|
136 |
-
<option
|
137 |
-
<?php
|
138 |
-
if (isset($start_time_ampm) and $start_time_ampm == 'AM') {
|
139 |
-
echo 'selected="selected"';
|
140 |
-
}
|
141 |
-
?>
|
142 |
-
value="AM"><?php _e('AM', 'modern-events-calendar-lite'); ?></option>
|
143 |
-
<option
|
144 |
-
<?php
|
145 |
-
if (isset($start_time_ampm) and $start_time_ampm == 'PM') {
|
146 |
-
echo 'selected="selected"';
|
147 |
-
}
|
148 |
-
?>
|
149 |
-
value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
|
150 |
-
</select>
|
151 |
-
<?php endif; ?>
|
152 |
-
</div>
|
153 |
</div>
|
154 |
<div class="mec-form-row">
|
155 |
<div class="mec-col-4">
|
@@ -157,80 +92,15 @@ $datepicker_format = (isset($settings['datepicker_format']) and trim($settings['
|
|
157 |
value="<?php echo esc_attr( $this->main->standardize_format( $end_date, $datepicker_format ) ); ?>" placeholder="<?php _e('End Date', 'modern-events-calendar-lite'); ?>"
|
158 |
autocomplete="off"/>
|
159 |
</div>
|
160 |
-
<div class="mec-col-6 mec-time-picker">
|
161 |
-
<?php
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
?>
|
170 |
-
<select name="mec[date][end][hour]" id="mec_end_hour" class="mec_end_hour wn-mec-select-popup">
|
171 |
-
<?php for ($i = 0; $i <= 23; $i++) : ?>
|
172 |
-
<option
|
173 |
-
<?php
|
174 |
-
if ($end_time_hour == $i) {
|
175 |
-
echo 'selected="selected"';
|
176 |
-
}
|
177 |
-
?>
|
178 |
-
value="<?php echo $i; ?>"><?php echo $i; ?></option>
|
179 |
-
<?php endfor; ?>
|
180 |
-
</select>
|
181 |
-
<span class="time-dv">:</span>
|
182 |
-
<select name="mec[date][end][minutes]" id="mec_end_minutes" class="mec_end_minutes wn-mec-select-popup">
|
183 |
-
<?php for ($i = 0; $i <= 11; $i++) : ?>
|
184 |
-
<option
|
185 |
-
<?php
|
186 |
-
if ($end_time_minutes == ($i * 5)) {
|
187 |
-
echo 'selected="selected"';
|
188 |
-
}
|
189 |
-
?>
|
190 |
-
value="<?php echo($i * 5); ?>"><?php echo sprintf('%02d', ($i * 5)); ?></option>
|
191 |
-
<?php endfor; ?>
|
192 |
-
</select>
|
193 |
-
<?php else : if($end_time_ampm == 'AM' and $end_time_hour == '0') $end_time_hour = 12; ?>
|
194 |
-
<select name="mec[date][end][hour]" id="mec_end_hour" class="mec_end_hour wn-mec-select-popup">
|
195 |
-
<?php for ($i = 1; $i <= 12; $i++) : ?>
|
196 |
-
<option
|
197 |
-
<?php
|
198 |
-
if ($end_time_hour == $i) {
|
199 |
-
echo 'selected="selected"';
|
200 |
-
}
|
201 |
-
?>
|
202 |
-
value="<?php echo $i; ?>"><?php echo $i; ?></option>
|
203 |
-
<?php endfor; ?>
|
204 |
-
</select>
|
205 |
-
<span class="time-dv">:</span>
|
206 |
-
<select name="mec[date][end][minutes]" id="mec_end_minutes" class="mec_end_minutes wn-mec-select-popup">
|
207 |
-
<?php for ($i = 0; $i <= 11; $i++) : ?>
|
208 |
-
<option
|
209 |
-
<?php
|
210 |
-
if ($end_time_minutes == ($i * 5)) {
|
211 |
-
echo 'selected="selected"';
|
212 |
-
}
|
213 |
-
?>
|
214 |
-
value="<?php echo($i * 5); ?>"><?php echo sprintf('%02d', ($i * 5)); ?></option>
|
215 |
-
<?php endfor; ?>
|
216 |
-
</select>
|
217 |
-
<select name="mec[date][end][ampm]" id="mec_end_ampm" class="mec_end_ampm wn-mec-select-popup">
|
218 |
-
<option
|
219 |
-
<?php
|
220 |
-
if ($end_time_ampm == 'AM') {
|
221 |
-
echo 'selected="selected"';
|
222 |
-
}
|
223 |
-
?>
|
224 |
-
value="AM"><?php _e('AM', 'modern-events-calendar-lite'); ?></option>
|
225 |
-
<option
|
226 |
-
<?php
|
227 |
-
if ($end_time_ampm == 'PM') {
|
228 |
-
echo 'selected="selected"';
|
229 |
-
}
|
230 |
-
?>
|
231 |
-
value="PM"><?php _e('PM', 'modern-events-calendar-lite'); ?></option>
|
232 |
-
</select>
|
233 |
-
<?php endif; ?>
|
234 |
</div>
|
235 |
</div>
|
236 |
<div class="mec-form-row mec-all-day-event">
|
@@ -415,6 +285,12 @@ jQuery(document).ready(function()
|
|
415 |
var $organizer_dropdown = jQuery('#mec_popup_organizer_id');
|
416 |
var $steps_content = jQuery('.mec-steps-content');
|
417 |
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
if(jQuery('.mec-steps-content .wn-mec-select-popup').length > 0) jQuery('.mec-steps-content .wn-mec-select-popup').niceSelect();
|
419 |
|
420 |
// Add Event Button
|
75 |
value="<?php echo esc_attr( $this->main->standardize_format( $start_date, $datepicker_format ) ); ?>"
|
76 |
placeholder="<?php _e('Start Date', 'modern-events-calendar-lite'); ?>" autocomplete="off"/>
|
77 |
</div>
|
78 |
+
<div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
|
79 |
+
<?php $this->main->timepicker(array(
|
80 |
+
'method' => $this->settings['time_format'],
|
81 |
+
'time_hour' => $start_time_hour,
|
82 |
+
'time_minutes' => $start_time_minutes,
|
83 |
+
'time_ampm' => $start_time_ampm,
|
84 |
+
'name' => 'mec[date][start]',
|
85 |
+
'id_key' => 'start_',
|
86 |
+
)); ?>
|
87 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
</div>
|
89 |
<div class="mec-form-row">
|
90 |
<div class="mec-col-4">
|
92 |
value="<?php echo esc_attr( $this->main->standardize_format( $end_date, $datepicker_format ) ); ?>" placeholder="<?php _e('End Date', 'modern-events-calendar-lite'); ?>"
|
93 |
autocomplete="off"/>
|
94 |
</div>
|
95 |
+
<div class="mec-col-6 mec-time-picker <?php echo ($allday == 1) ? 'mec-util-hidden' : ''; ?>">
|
96 |
+
<?php $this->main->timepicker(array(
|
97 |
+
'method' => $this->settings['time_format'],
|
98 |
+
'time_hour' => $end_time_hour,
|
99 |
+
'time_minutes' => $end_time_minutes,
|
100 |
+
'time_ampm' => $end_time_ampm,
|
101 |
+
'name' => 'mec[date][end]',
|
102 |
+
'id_key' => 'end_',
|
103 |
+
)); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
</div>
|
105 |
</div>
|
106 |
<div class="mec-form-row mec-all-day-event">
|
285 |
var $organizer_dropdown = jQuery('#mec_popup_organizer_id');
|
286 |
var $steps_content = jQuery('.mec-steps-content');
|
287 |
|
288 |
+
// Appending Div
|
289 |
+
jQuery(document).on('lity:open', function(event, instance)
|
290 |
+
{
|
291 |
+
jQuery('.mec-time-picker select').addClass('wn-mec-select-popup').niceSelect();
|
292 |
+
});
|
293 |
+
|
294 |
if(jQuery('.mec-steps-content .wn-mec-select-popup').length > 0) jQuery('.mec-steps-content .wn-mec-select-popup').niceSelect();
|
295 |
|
296 |
// Add Event Button
|
@@ -430,6 +430,7 @@ class MEC_book extends MEC_base
|
|
430 |
|
431 |
$total_bookings_limit = (isset($booking_options['bookings_limit']) and trim($booking_options['bookings_limit'])) ? $booking_options['bookings_limit'] : 100;
|
432 |
$bookings_limit_unlimited = isset($booking_options['bookings_limit_unlimited']) ? $booking_options['bookings_limit_unlimited'] : 0;
|
|
|
433 |
|
434 |
if($bookings_limit_unlimited == '1') $total_bookings_limit = '-1';
|
435 |
|
@@ -445,22 +446,36 @@ class MEC_book extends MEC_base
|
|
445 |
$hour = date('H', $timestamp);
|
446 |
$minutes = date('i', $timestamp);
|
447 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
$booked = 0;
|
449 |
foreach($tickets as $ticket_id=>$ticket)
|
450 |
{
|
451 |
$limit = (isset($ticket['limit']) and trim($ticket['limit']) != '') ? $ticket['limit'] : -1;
|
452 |
|
453 |
-
$query = new WP_Query(array
|
454 |
-
|
455 |
-
'
|
456 |
-
'
|
457 |
-
'
|
458 |
-
'
|
459 |
-
'monthnum'=>$month,
|
460 |
-
'day'=>$day,
|
461 |
-
'hour'=>$hour,
|
462 |
-
'minute'=>$minutes,
|
463 |
-
'meta_query'=>array
|
464 |
(
|
465 |
array('key'=>'mec_event_id', 'value'=>$event_id, 'compare'=>'='),
|
466 |
array('key'=>'mec_ticket_id', 'value'=>','.$ticket_id.',', 'compare'=>'LIKE'),
|
430 |
|
431 |
$total_bookings_limit = (isset($booking_options['bookings_limit']) and trim($booking_options['bookings_limit'])) ? $booking_options['bookings_limit'] : 100;
|
432 |
$bookings_limit_unlimited = isset($booking_options['bookings_limit_unlimited']) ? $booking_options['bookings_limit_unlimited'] : 0;
|
433 |
+
$book_all_occurrences = isset($booking_options['bookings_all_occurrences']) ? (int) $booking_options['bookings_all_occurrences'] : 0;
|
434 |
|
435 |
if($bookings_limit_unlimited == '1') $total_bookings_limit = '-1';
|
436 |
|
446 |
$hour = date('H', $timestamp);
|
447 |
$minutes = date('i', $timestamp);
|
448 |
|
449 |
+
if(!$book_all_occurrences)
|
450 |
+
{
|
451 |
+
$date_query = array(
|
452 |
+
array(
|
453 |
+
'year'=>$year,
|
454 |
+
'monthnum'=>$month,
|
455 |
+
'day'=>$day,
|
456 |
+
'hour'=>$hour,
|
457 |
+
'minute'=>$minutes,
|
458 |
+
),
|
459 |
+
);
|
460 |
+
}
|
461 |
+
else
|
462 |
+
{
|
463 |
+
$date_query = array(
|
464 |
+
'before' => date('Y-m-d', $timestamp).' 23:59:59',
|
465 |
+
);
|
466 |
+
}
|
467 |
+
|
468 |
$booked = 0;
|
469 |
foreach($tickets as $ticket_id=>$ticket)
|
470 |
{
|
471 |
$limit = (isset($ticket['limit']) and trim($ticket['limit']) != '') ? $ticket['limit'] : -1;
|
472 |
|
473 |
+
$query = new WP_Query(array(
|
474 |
+
'post_type' => $this->PT,
|
475 |
+
'posts_per_page' => -1,
|
476 |
+
'post_status' => array('publish', 'pending', 'draft', 'future', 'private'),
|
477 |
+
'date_query'=> $date_query,
|
478 |
+
'meta_query' => array
|
|
|
|
|
|
|
|
|
|
|
479 |
(
|
480 |
array('key'=>'mec_event_id', 'value'=>$event_id, 'compare'=>'='),
|
481 |
array('key'=>'mec_ticket_id', 'value'=>','.$ticket_id.',', 'compare'=>'LIKE'),
|
@@ -234,85 +234,78 @@ class MEC_factory extends MEC_base
|
|
234 |
*/
|
235 |
public function load_backend_assets()
|
236 |
{
|
237 |
-
// Include WordPress jQuery
|
238 |
-
wp_enqueue_script('jquery');
|
239 |
|
240 |
-
|
241 |
-
|
|
|
|
|
|
|
242 |
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
//Include the nice-select
|
247 |
-
wp_enqueue_script('mec-niceselect-script', $this->main->asset('js/jquery.nice-select.min.js'));
|
248 |
|
249 |
-
|
250 |
-
|
251 |
-
wp_enqueue_style('mec-select2-style', $this->main->asset('packages/select2/select2.min.css'));
|
252 |
|
253 |
-
|
254 |
-
|
|
|
255 |
|
256 |
-
|
257 |
-
|
258 |
|
259 |
-
|
260 |
-
|
261 |
|
262 |
-
|
263 |
-
|
264 |
|
265 |
-
|
266 |
-
|
267 |
|
268 |
-
|
269 |
-
|
270 |
-
if(!isset($current_screen)) $current_screen = get_current_screen();
|
271 |
|
272 |
-
|
273 |
-
|
274 |
|
275 |
-
|
276 |
-
|
277 |
|
278 |
-
|
279 |
-
|
280 |
|
281 |
-
|
282 |
-
|
283 |
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
|
291 |
-
|
292 |
|
293 |
-
|
294 |
-
|
295 |
|
296 |
-
|
297 |
-
|
298 |
-
if(strpos($page, 'visualizer') === false) wp_enqueue_media();
|
299 |
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
if(is_rtl()) wp_enqueue_style('mec-backend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
|
313 |
|
314 |
-
// Include Lity CSS file
|
315 |
-
wp_enqueue_style('mec-lity-style', $this->main->asset('packages/lity/lity.min.css'));
|
316 |
}
|
317 |
|
318 |
/**
|
@@ -769,6 +762,7 @@ class MEC_factory extends MEC_base
|
|
769 |
'sn'=>array('googlecal'=>1, 'ical'=>1, 'facebook'=>1, 'gplus'=>1, 'twitter'=>1, 'linkedin'=>1, 'email'=>1),
|
770 |
'countdown_status'=>1,
|
771 |
'social_network_status'=>1,
|
|
|
772 |
),
|
773 |
'styles'=>array('CSS'=>''),
|
774 |
'gateways'=>array(1=>array('status'=>1)),
|
@@ -1002,7 +996,7 @@ class MEC_factory extends MEC_base
|
|
1002 |
}
|
1003 |
|
1004 |
// Removing all MEC taxonomy terms
|
1005 |
-
$terms = $db->select("SELECT #__term_taxonomy.`term_id`, #__term_taxonomy.`taxonomy` FROM `#__terms` INNER JOIN `#__term_taxonomy` ON #__terms.`term_id` = #__term_taxonomy.`term_id` WHERE #__term_taxonomy.`taxonomy` = 'mec_category' OR #__term_taxonomy.`taxonomy` = 'mec_label' OR #__term_taxonomy.`taxonomy` = 'mec_location' OR #__term_taxonomy.`taxonomy` = 'mec_organizer'", 'loadAssocList');
|
1006 |
foreach($terms as $term)
|
1007 |
{
|
1008 |
if(isset($term['term_id']) and isset($term['taxonomy']))
|
@@ -1015,6 +1009,13 @@ class MEC_factory extends MEC_base
|
|
1015 |
delete_option('mec_installed');
|
1016 |
delete_option('mec_options');
|
1017 |
delete_option('mec_version');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1018 |
}
|
1019 |
}
|
1020 |
|
@@ -1049,4 +1050,44 @@ class MEC_factory extends MEC_base
|
|
1049 |
|
1050 |
return $darkadmin;
|
1051 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1052 |
}
|
234 |
*/
|
235 |
public function load_backend_assets()
|
236 |
{
|
|
|
|
|
237 |
|
238 |
+
if($this->should_include_assets('backend'))
|
239 |
+
{
|
240 |
+
// Get Current Screen
|
241 |
+
global $current_screen;
|
242 |
+
if(!isset($current_screen)) $current_screen = get_current_screen();
|
243 |
|
244 |
+
// Include MEC typekit script file
|
245 |
+
wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'));
|
|
|
|
|
|
|
246 |
|
247 |
+
//Include the nice-select
|
248 |
+
wp_enqueue_script('mec-niceselect-script', $this->main->asset('js/jquery.nice-select.min.js'));
|
|
|
249 |
|
250 |
+
//Include Select2
|
251 |
+
wp_enqueue_script('mec-select2-script', $this->main->asset('packages/select2/select2.full.min.js'));
|
252 |
+
wp_enqueue_style('mec-select2-style', $this->main->asset('packages/select2/select2.min.css'));
|
253 |
|
254 |
+
// Include Lity Lightbox
|
255 |
+
wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
|
256 |
|
257 |
+
// Include Nicescroll
|
258 |
+
wp_enqueue_script('mec-nice-scroll', $this->main->asset('js/jquery.nicescroll.min.js'));
|
259 |
|
260 |
+
wp_enqueue_style('mec-featherlight-style', $this->main->asset('packages/featherlight/featherlight.css'));
|
261 |
+
wp_enqueue_script('mec-featherlight-script', $this->main->asset('packages/featherlight/featherlight.js'));
|
262 |
|
263 |
+
// Include MEC Carousel JS libraries
|
264 |
+
wp_enqueue_script('mec-owl-carousel-script', $this->main->asset('packages/owl-carousel/owl.carousel.min.js'));
|
265 |
|
266 |
+
// Backend Dependencies
|
267 |
+
$dependencies = array('jquery', 'wp-color-picker', 'jquery-ui-datepicker');
|
|
|
268 |
|
269 |
+
// Add WP Blocks to the dependencies only when needed!
|
270 |
+
if(method_exists($current_screen, 'is_block_editor') and $current_screen->is_block_editor()) $dependencies[] = 'wp-blocks';
|
271 |
|
272 |
+
// Register New Block Editor
|
273 |
+
if(function_exists('register_block_type')) register_block_type('mec/blockeditor', array('editor_script' => 'block.editor'));
|
274 |
|
275 |
+
// Include MEC backend script file
|
276 |
+
wp_enqueue_script('mec-backend-script', $this->main->asset('js/backend.js'), $dependencies, $this->main->get_version());
|
277 |
|
278 |
+
// Settings
|
279 |
+
$settings = $this->main->get_settings();
|
280 |
|
281 |
+
wp_localize_script('mec-backend-script', 'mec_admin_localize', array(
|
282 |
+
'ajax_url' => admin_url('admin-ajax.php'),
|
283 |
+
'ajax_nonce' => wp_create_nonce('mec_settings_nonce'),
|
284 |
+
'mce_items' => $this->main->mce_get_shortcode_list(),
|
285 |
+
'datepicker_format' => (isset($settings['datepicker_format']) and trim($settings['datepicker_format'])) ? trim($settings['datepicker_format']) : 'yy-mm-dd',
|
286 |
+
));
|
287 |
|
288 |
+
wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'), array(), $this->main->get_version());
|
289 |
|
290 |
+
// Thickbox
|
291 |
+
wp_enqueue_media();
|
292 |
|
293 |
+
// WP Editor
|
294 |
+
wp_enqueue_editor();
|
|
|
295 |
|
296 |
+
// MEC Icons
|
297 |
+
wp_enqueue_style('mec-font-icon', $this->main->asset('css/iconfonts.css'));
|
298 |
+
|
299 |
+
// Include "Right to Left" CSS file
|
300 |
+
if(is_rtl()) wp_enqueue_style('mec-backend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
|
301 |
+
|
302 |
+
// Include Lity CSS file
|
303 |
+
wp_enqueue_style('mec-lity-style', $this->main->asset('packages/lity/lity.min.css'));
|
304 |
+
}
|
305 |
+
|
306 |
+
// Include MEC backend CSS
|
307 |
+
wp_enqueue_style('mec-backend-style', $this->main->asset('css/backend.min.css'), array('wp-color-picker'), $this->main->get_version());
|
|
|
308 |
|
|
|
|
|
309 |
}
|
310 |
|
311 |
/**
|
762 |
'sn'=>array('googlecal'=>1, 'ical'=>1, 'facebook'=>1, 'gplus'=>1, 'twitter'=>1, 'linkedin'=>1, 'email'=>1),
|
763 |
'countdown_status'=>1,
|
764 |
'social_network_status'=>1,
|
765 |
+
'default_skin_archive'=>'full_calendar',
|
766 |
),
|
767 |
'styles'=>array('CSS'=>''),
|
768 |
'gateways'=>array(1=>array('status'=>1)),
|
996 |
}
|
997 |
|
998 |
// Removing all MEC taxonomy terms
|
999 |
+
$terms = $db->select("SELECT #__term_taxonomy.`term_id`, #__term_taxonomy.`taxonomy` FROM `#__terms` INNER JOIN `#__term_taxonomy` ON #__terms.`term_id` = #__term_taxonomy.`term_id` WHERE #__term_taxonomy.`taxonomy` = 'mec_category' OR #__term_taxonomy.`taxonomy` = 'mec_label' OR #__term_taxonomy.`taxonomy` = 'mec_location' OR #__term_taxonomy.`taxonomy` = 'mec_organizer' OR #__term_taxonomy.`taxonomy` = 'mec_speaker' OR #__term_taxonomy.`taxonomy` = 'mec_coupon'", 'loadAssocList');
|
1000 |
foreach($terms as $term)
|
1001 |
{
|
1002 |
if(isset($term['term_id']) and isset($term['taxonomy']))
|
1009 |
delete_option('mec_installed');
|
1010 |
delete_option('mec_options');
|
1011 |
delete_option('mec_version');
|
1012 |
+
delete_option('widget_mec_mec_widget');
|
1013 |
+
delete_option('widget_mec_single_widget');
|
1014 |
+
delete_option('mec_gfont');
|
1015 |
+
delete_option('mec_dyncss');
|
1016 |
+
delete_option('mec_custom_msg_display_option');
|
1017 |
+
delete_option('mec_custom_msg_close_option');
|
1018 |
+
delete_option('mec_category_children');
|
1019 |
}
|
1020 |
}
|
1021 |
|
1050 |
|
1051 |
return $darkadmin;
|
1052 |
}
|
1053 |
+
|
1054 |
+
public function should_include_assets($client = 'frontend')
|
1055 |
+
{
|
1056 |
+
if($client == 'frontend') return true;
|
1057 |
+
else
|
1058 |
+
{
|
1059 |
+
// Current Screen
|
1060 |
+
$screen = get_current_screen();
|
1061 |
+
|
1062 |
+
$base = $screen->base;
|
1063 |
+
$post_type = $screen->post_type;
|
1064 |
+
$taxonomy = $screen->taxonomy;
|
1065 |
+
|
1066 |
+
// It's one of MEC taxonomy pages
|
1067 |
+
if(trim($taxonomy) and in_array($taxonomy, array(
|
1068 |
+
'post_tag', 'mec_category', 'mec_label', 'mec_location', 'mec_organizer', 'mec_speaker', 'mec_coupon'
|
1069 |
+
))) return true;
|
1070 |
+
|
1071 |
+
// It's one of MEC post type pages
|
1072 |
+
if(trim($post_type) and in_array($post_type, array(
|
1073 |
+
'mec-events', 'mec_calendars', 'mec-books'
|
1074 |
+
))) return true;
|
1075 |
+
|
1076 |
+
// It's Block Editor
|
1077 |
+
if(method_exists($screen, 'is_block_editor') and $screen->is_block_editor()) return true;
|
1078 |
+
|
1079 |
+
// It's one of MEC pages or the pages that MEC should work fine
|
1080 |
+
if(trim($base) and in_array($base, array(
|
1081 |
+
'toplevel_page_mec-intro',
|
1082 |
+
'm-e-calendar_page_MEC-settings',
|
1083 |
+
'm-e-calendar_page_MEC-addons',
|
1084 |
+
'm-e-calendar_page_MEC-report',
|
1085 |
+
'm-e-calendar_page_MEC-ix',
|
1086 |
+
'm-e-calendar_page_MEC-support',
|
1087 |
+
'widgets',
|
1088 |
+
))) return true;
|
1089 |
+
|
1090 |
+
return apply_filters('mec_include_backend_assets', false);
|
1091 |
+
}
|
1092 |
+
}
|
1093 |
}
|
@@ -1793,7 +1793,7 @@ class MEC_main extends MEC_base
|
|
1793 |
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1794 |
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1795 |
|
1796 |
-
return '<li class="mec-event-social-icon"><a class="whatsapp" href="
|
1797 |
|
1798 |
}
|
1799 |
|
@@ -2442,7 +2442,7 @@ class MEC_main extends MEC_base
|
|
2442 |
public function print_calendar()
|
2443 |
{
|
2444 |
// Print Calendar
|
2445 |
-
if(isset($_GET['method']) and sanitize_text_field($_GET['method']) == 'mec-print')
|
2446 |
{
|
2447 |
$year = isset($_GET['mec-year']) ? sanitize_text_field($_GET['mec-year']) : NULL;
|
2448 |
$month = isset($_GET['mec-month']) ? sanitize_text_field($_GET['mec-month']) : NULL;
|
@@ -3924,24 +3924,33 @@ class MEC_main extends MEC_base
|
|
3924 |
{
|
3925 |
if(post_type_exists($post_type))
|
3926 |
{
|
3927 |
-
$
|
3928 |
-
|
|
|
|
|
|
|
|
|
|
|
3929 |
if(count($shortcodes_list))
|
3930 |
{
|
3931 |
$shortcodes = array();
|
3932 |
$shortcodes['shortcodes'] = array();
|
|
|
3933 |
foreach($shortcodes_list as $shortcode)
|
3934 |
{
|
3935 |
$shortcode_item = array();
|
3936 |
$shortcode_item['ID'] = $shortcode->ID;
|
|
|
3937 |
// PostName
|
3938 |
$shortcode_item['PN'] = $shortcode->post_name;
|
3939 |
array_push($shortcodes['shortcodes'], $shortcode_item);
|
3940 |
}
|
|
|
3941 |
$shortcodes['mce_title'] = __('M.E. Calender', 'modern-events-calendar-lite');
|
3942 |
return json_encode($shortcodes);
|
3943 |
}
|
3944 |
}
|
|
|
3945 |
return false;
|
3946 |
}
|
3947 |
|
@@ -5405,8 +5414,9 @@ class MEC_main extends MEC_base
|
|
5405 |
|
5406 |
/**
|
5407 |
* Load Google Maps assets
|
|
|
5408 |
*/
|
5409 |
-
public function load_map_assets($define_settings=null)
|
5410 |
{
|
5411 |
if($this->getPRO())
|
5412 |
{
|
1793 |
$occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
|
1794 |
if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
|
1795 |
|
1796 |
+
return '<li class="mec-event-social-icon"><a class="whatsapp" href="whatsapp://send/?text='.rawurlencode($url).'" title="'.__('Share on WhatsApp', 'modern-events-calendar-lite').'"><i class="mec-fa-whatsapp"></i></a></li>';
|
1797 |
|
1798 |
}
|
1799 |
|
2442 |
public function print_calendar()
|
2443 |
{
|
2444 |
// Print Calendar
|
2445 |
+
if(isset($_GET['method']) and sanitize_text_field($_GET['method']) == 'mec-print' and $this->getPro())
|
2446 |
{
|
2447 |
$year = isset($_GET['mec-year']) ? sanitize_text_field($_GET['mec-year']) : NULL;
|
2448 |
$month = isset($_GET['mec-month']) ? sanitize_text_field($_GET['mec-month']) : NULL;
|
3924 |
{
|
3925 |
if(post_type_exists($post_type))
|
3926 |
{
|
3927 |
+
$shortcodes_list = get_posts(array(
|
3928 |
+
'post_type' => $post_type,
|
3929 |
+
'post_status' => 'publish',
|
3930 |
+
'posts_per_page' => -1,
|
3931 |
+
'order' => 'DESC'
|
3932 |
+
));
|
3933 |
+
|
3934 |
if(count($shortcodes_list))
|
3935 |
{
|
3936 |
$shortcodes = array();
|
3937 |
$shortcodes['shortcodes'] = array();
|
3938 |
+
|
3939 |
foreach($shortcodes_list as $shortcode)
|
3940 |
{
|
3941 |
$shortcode_item = array();
|
3942 |
$shortcode_item['ID'] = $shortcode->ID;
|
3943 |
+
|
3944 |
// PostName
|
3945 |
$shortcode_item['PN'] = $shortcode->post_name;
|
3946 |
array_push($shortcodes['shortcodes'], $shortcode_item);
|
3947 |
}
|
3948 |
+
|
3949 |
$shortcodes['mce_title'] = __('M.E. Calender', 'modern-events-calendar-lite');
|
3950 |
return json_encode($shortcodes);
|
3951 |
}
|
3952 |
}
|
3953 |
+
|
3954 |
return false;
|
3955 |
}
|
3956 |
|
5414 |
|
5415 |
/**
|
5416 |
* Load Google Maps assets
|
5417 |
+
* @var $define_settings
|
5418 |
*/
|
5419 |
+
public function load_map_assets($define_settings = null)
|
5420 |
{
|
5421 |
if($this->getPRO())
|
5422 |
{
|
@@ -110,6 +110,8 @@ class MEC_notifications extends MEC_base
|
|
110 |
$message = str_replace('%%verification_link%%', $link, $message);
|
111 |
$message = str_replace('%%link%%', $link, $message);
|
112 |
|
|
|
|
|
113 |
// Filter the email
|
114 |
$mail_arg = array(
|
115 |
'to' => $to,
|
110 |
$message = str_replace('%%verification_link%%', $link, $message);
|
111 |
$message = str_replace('%%link%%', $link, $message);
|
112 |
|
113 |
+
$message = $this->add_template($message);
|
114 |
+
|
115 |
// Filter the email
|
116 |
$mail_arg = array(
|
117 |
'to' => $to,
|
@@ -321,7 +321,7 @@ class MEC_render extends MEC_base
|
|
321 |
|
322 |
if(!isset($this->settings['default_skin_archive']) or (isset($this->settings['default_skin_archive']) and trim($this->settings['default_skin_archive']) == ''))
|
323 |
{
|
324 |
-
return $this->
|
325 |
}
|
326 |
|
327 |
if($this->settings['default_skin_archive'] == 'monthly_view') $content = $this->vmonth(array_merge($atts, array('sk-options'=>array('monthly_view'=>array('style'=>$monthly_skin)))));
|
321 |
|
322 |
if(!isset($this->settings['default_skin_archive']) or (isset($this->settings['default_skin_archive']) and trim($this->settings['default_skin_archive']) == ''))
|
323 |
{
|
324 |
+
return $this->vdefaultfull($atts);
|
325 |
}
|
326 |
|
327 |
if($this->settings['default_skin_archive'] == 'monthly_view') $content = $this->vmonth(array_merge($atts, array('sk-options'=>array('monthly_view'=>array('style'=>$monthly_skin)))));
|
@@ -514,7 +514,7 @@ class MEC_skins extends MEC_base
|
|
514 |
}
|
515 |
elseif($this->show_ongoing_events)
|
516 |
{
|
517 |
-
if(in_array($this->skin,
|
518 |
{
|
519 |
$now = current_time('timestamp', 0);
|
520 |
if($this->skin_options['start_date_type'] != 'today')
|
@@ -570,7 +570,7 @@ class MEC_skins extends MEC_base
|
|
570 |
if($this->hide_time_method == 'end' and $now >= $mec_date->tend) continue;
|
571 |
}
|
572 |
|
573 |
-
if(!(in_array($this->skin,
|
574 |
{
|
575 |
// Hide Shown Events on AJAX
|
576 |
if(defined('DOING_AJAX') and DOING_AJAX and $s != $e and $s < strtotime($start) and !$this->show_only_expired_events) continue;
|
@@ -717,6 +717,9 @@ class MEC_skins extends MEC_base
|
|
717 |
{
|
718 |
if(!isset($events[$date])) $events[$date] = array();
|
719 |
|
|
|
|
|
|
|
720 |
// The Loop
|
721 |
while($query->have_posts())
|
722 |
{
|
@@ -738,7 +741,7 @@ class MEC_skins extends MEC_base
|
|
738 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
739 |
);
|
740 |
|
741 |
-
$
|
742 |
$found++;
|
743 |
}
|
744 |
|
@@ -753,6 +756,9 @@ class MEC_skins extends MEC_base
|
|
753 |
break 2;
|
754 |
}
|
755 |
}
|
|
|
|
|
|
|
756 |
}
|
757 |
|
758 |
// Restore original Post Data
|
@@ -1196,16 +1202,30 @@ class MEC_skins extends MEC_base
|
|
1196 |
$locations = explode(',', $address);
|
1197 |
$query = "SELECT `term_id` FROM `#__termmeta` WHERE `meta_key` = 'address'";
|
1198 |
|
1199 |
-
foreach($locations as $location)
|
1200 |
-
if(trim($location)) $query .= " AND `meta_value` LIKE '%" . trim($location) . "%'";
|
1201 |
|
1202 |
$locations_id = $this->db->select($query, 'loadAssocList');
|
1203 |
|
1204 |
-
|
1205 |
{
|
1206 |
return intval($value['term_id']);
|
1207 |
}, $locations_id);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1208 |
|
1209 |
-
|
|
|
1210 |
}
|
1211 |
}
|
514 |
}
|
515 |
elseif($this->show_ongoing_events)
|
516 |
{
|
517 |
+
if(in_array($this->skin, array('list', 'grid')) && !(strpos($this->style, 'fluent') === false))
|
518 |
{
|
519 |
$now = current_time('timestamp', 0);
|
520 |
if($this->skin_options['start_date_type'] != 'today')
|
570 |
if($this->hide_time_method == 'end' and $now >= $mec_date->tend) continue;
|
571 |
}
|
572 |
|
573 |
+
if(!(in_array($this->skin, array('list', 'grid')) && !(strpos($this->style, 'fluent') === false)) && ($this->multiple_days_method == 'first_day' or ($this->multiple_days_method == 'first_day_listgrid' and in_array($this->skin, array('list', 'grid', 'slider', 'carousel', 'agenda', 'tile')))))
|
574 |
{
|
575 |
// Hide Shown Events on AJAX
|
576 |
if(defined('DOING_AJAX') and DOING_AJAX and $s != $e and $s < strtotime($start) and !$this->show_only_expired_events) continue;
|
717 |
{
|
718 |
if(!isset($events[$date])) $events[$date] = array();
|
719 |
|
720 |
+
// Day Events
|
721 |
+
$d = array();
|
722 |
+
|
723 |
// The Loop
|
724 |
while($query->have_posts())
|
725 |
{
|
741 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
742 |
);
|
743 |
|
744 |
+
$d[] = $this->render->after_render($data, $i);
|
745 |
$found++;
|
746 |
}
|
747 |
|
756 |
break 2;
|
757 |
}
|
758 |
}
|
759 |
+
|
760 |
+
usort($d, array($this, 'sort_day_events'));
|
761 |
+
$events[$date] = $d;
|
762 |
}
|
763 |
|
764 |
// Restore original Post Data
|
1202 |
$locations = explode(',', $address);
|
1203 |
$query = "SELECT `term_id` FROM `#__termmeta` WHERE `meta_key` = 'address'";
|
1204 |
|
1205 |
+
foreach($locations as $location) if(trim($location)) $query .= " AND `meta_value` LIKE '%" . trim($location) . "%'";
|
|
|
1206 |
|
1207 |
$locations_id = $this->db->select($query, 'loadAssocList');
|
1208 |
|
1209 |
+
return array_map(function($value)
|
1210 |
{
|
1211 |
return intval($value['term_id']);
|
1212 |
}, $locations_id);
|
1213 |
+
}
|
1214 |
+
|
1215 |
+
public function sort_day_events($a, $b)
|
1216 |
+
{
|
1217 |
+
$a_timestamp = $a->data->time['start_timestamp'];
|
1218 |
+
$b_timestamp = $b->data->time['start_timestamp'];
|
1219 |
+
|
1220 |
+
$a_start_date = $a->date['start']['date'];
|
1221 |
+
$a_end_date = $a->date['end']['date'];
|
1222 |
+
$b_start_date = $b->date['start']['date'];
|
1223 |
+
$b_end_date = $b->date['end']['date'];
|
1224 |
+
|
1225 |
+
if($a_start_date !== $a_end_date) $a_timestamp = strtotime($a_start_date.' '.$a->data->time['start_raw']);
|
1226 |
+
if($b_start_date !== $b_end_date) $b_timestamp = strtotime($b_start_date.' '.$b->data->time['start_raw']);
|
1227 |
|
1228 |
+
if($a_timestamp == $b_timestamp) return 0;
|
1229 |
+
return ($a_timestamp > $b_timestamp) ? +1 : -1;
|
1230 |
}
|
1231 |
}
|
@@ -2,6 +2,8 @@
|
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
|
|
|
|
|
5 |
// MEC Settings
|
6 |
$settings = $this->get_settings();
|
7 |
|
@@ -29,7 +31,8 @@ if(!$this->can_show_booking_module($event) and strtotime($start_date) > time())
|
|
29 |
$attendees = array();
|
30 |
foreach($bookings as $booking)
|
31 |
{
|
32 |
-
$attendees[$booking->post_author]
|
|
|
33 |
}
|
34 |
?>
|
35 |
<div class="mec-attendees-list-details mec-frontbox" id="mec_attendees_list_details">
|
@@ -38,7 +41,7 @@ foreach($bookings as $booking)
|
|
38 |
<p><?php _e('No attendee found! Be the first one to book!', 'modern-events-calendar-lite'); ?></p>
|
39 |
<?php else: ?>
|
40 |
<ul>
|
41 |
-
<?php do_action('mec_attendeed_hook', $attendees); foreach($attendees as $attendee_id=>$
|
42 |
<li>
|
43 |
<div class="mec-attendee-avatar">
|
44 |
<a href="<?php echo bp_core_get_user_domain($attendee_id); ?>" title="<?php echo bp_core_get_user_displayname($attendee_id); ?>">
|
@@ -51,54 +54,42 @@ foreach($bookings as $booking)
|
|
51 |
|
52 |
$name = trim($user->first_name.' '.$user->last_name);
|
53 |
if(!$name) $name = $user->display_name;
|
|
|
|
|
|
|
54 |
?>
|
55 |
<div class="mec-attendee-profile-link">
|
56 |
-
<?php echo '<a href="'.$link.'">'.$name.'</a>' . '<span class="mec-attendee-profile-ticket-number mec-bg-color">'. $
|
57 |
</div>
|
58 |
|
59 |
<!-- MEC BuddyPress Integration Attendees Modules -->
|
60 |
<div class="mec-attendees-toggle mec-util-hidden">
|
61 |
<?php
|
62 |
-
$
|
63 |
-
$
|
64 |
-
|
65 |
-
// For Sorting And Filtering MEC Attendees Array.
|
66 |
-
for($i = 0; $i < $mec_attendees_count; $i++)
|
67 |
{
|
68 |
-
|
69 |
-
|
70 |
-
$mec_attendees[$mec_attendees[$i]['email']]['count'] += $mec_attendees[$i]['count'];
|
71 |
-
}
|
72 |
-
else
|
73 |
{
|
74 |
-
$
|
75 |
-
}
|
76 |
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
|
|
|
|
81 |
}
|
82 |
|
83 |
// For Display Sorting Output.
|
84 |
-
foreach($
|
85 |
{
|
86 |
?>
|
87 |
<div class="mec-attendees-item clearfix">
|
88 |
<?php
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
if( $mec_attendee_item_key == 'count' ) $new_attendee_array['count'] = $mec_attendee_item_value;
|
93 |
-
if( $mec_attendee_item_key == 'name' ) $new_attendee_array['name'] = $mec_attendee_item_value;
|
94 |
-
if( $mec_attendee_item_key == 'email' ) $new_attendee_array['email'] = $mec_attendee_item_value;
|
95 |
-
}
|
96 |
-
foreach ($new_attendee_array as $new_attendee_key => $new_attendee_value ) {
|
97 |
-
if ( $new_attendee_key == 'email' ) echo '<div class="mec-attendee-avatar-sec">'. get_avatar($new_attendee_value , '50') .'</div>';
|
98 |
-
if ( $new_attendee_key == 'name' ) echo '<div class="mec-attendee-profile-name-sec">'. $new_attendee_value .'</div>';
|
99 |
-
if ( $new_attendee_key == 'count' ) echo '<span class="mec-attendee-profile-ticket-sec">'. $new_attendee_value . ( $new_attendee_value > 1 ? ' tickets' : ' ticket' ) . '</span>';
|
100 |
-
}
|
101 |
-
|
102 |
?>
|
103 |
</div>
|
104 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
+
/** @var MEC_main $this */
|
6 |
+
|
7 |
// MEC Settings
|
8 |
$settings = $this->get_settings();
|
9 |
|
31 |
$attendees = array();
|
32 |
foreach($bookings as $booking)
|
33 |
{
|
34 |
+
if(!isset($attendees[$booking->post_author])) $attendees[$booking->post_author] = array();
|
35 |
+
$attendees[$booking->post_author][] = $booking->ID;
|
36 |
}
|
37 |
?>
|
38 |
<div class="mec-attendees-list-details mec-frontbox" id="mec_attendees_list_details">
|
41 |
<p><?php _e('No attendee found! Be the first one to book!', 'modern-events-calendar-lite'); ?></p>
|
42 |
<?php else: ?>
|
43 |
<ul>
|
44 |
+
<?php do_action('mec_attendeed_hook', $attendees); foreach($attendees as $attendee_id=>$attendee_bookings): ?>
|
45 |
<li>
|
46 |
<div class="mec-attendee-avatar">
|
47 |
<a href="<?php echo bp_core_get_user_domain($attendee_id); ?>" title="<?php echo bp_core_get_user_displayname($attendee_id); ?>">
|
54 |
|
55 |
$name = trim($user->first_name.' '.$user->last_name);
|
56 |
if(!$name) $name = $user->display_name;
|
57 |
+
|
58 |
+
$total_attendees = 0;
|
59 |
+
foreach($attendee_bookings as $booking_id) $total_attendees += $book->get_total_attendees($booking_id);
|
60 |
?>
|
61 |
<div class="mec-attendee-profile-link">
|
62 |
+
<?php echo '<a href="'.$link.'">'.$name.'</a>' . '<span class="mec-attendee-profile-ticket-number mec-bg-color">'. $total_attendees .'</span>' . '<span class="mec-color-hover"> ' . esc_html__( 'tickets' , 'modern-events-calendar-lite' ) . '<i class="mec-sl-arrow-down"></i></span>' ; ?>
|
63 |
</div>
|
64 |
|
65 |
<!-- MEC BuddyPress Integration Attendees Modules -->
|
66 |
<div class="mec-attendees-toggle mec-util-hidden">
|
67 |
<?php
|
68 |
+
$un_attendees = array();
|
69 |
+
foreach($attendee_bookings as $booking_id)
|
|
|
|
|
|
|
70 |
{
|
71 |
+
$mec_attendees = get_post_meta($booking_id, 'mec_attendees', true);
|
72 |
+
foreach($mec_attendees as $mec_attendee_key => $mec_attendee)
|
|
|
|
|
|
|
73 |
{
|
74 |
+
if(!is_numeric($mec_attendee_key)) continue;
|
|
|
75 |
|
76 |
+
$email = isset($mec_attendee['email']) ? $mec_attendee['email'] : NULL;
|
77 |
+
if(!$email) continue;
|
78 |
+
|
79 |
+
if(!isset($un_attendees[$email])) $un_attendees[$email] = $mec_attendee;
|
80 |
+
else $un_attendees[$email]['count'] += $mec_attendee['count'];
|
81 |
+
}
|
82 |
}
|
83 |
|
84 |
// For Display Sorting Output.
|
85 |
+
foreach($un_attendees as $mec_attendee)
|
86 |
{
|
87 |
?>
|
88 |
<div class="mec-attendees-item clearfix">
|
89 |
<?php
|
90 |
+
echo '<div class="mec-attendee-avatar-sec">'. get_avatar($mec_attendee['email'], '50') .'</div>';
|
91 |
+
echo '<div class="mec-attendee-profile-name-sec">'. $mec_attendee['name'] .'</div>';
|
92 |
+
echo '<span class="mec-attendee-profile-ticket-sec">'. sprintf(_n('%s ticket', '%s tickets', $mec_attendee['count'], 'modern-events-calendar-lite'), $mec_attendee['count']) . '</span>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
?>
|
94 |
</div>
|
95 |
<?php
|
@@ -326,11 +326,13 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
326 |
{
|
327 |
setTimeout(function(){window.location.href = data.data.redirect_to;}, 2000);
|
328 |
}
|
|
|
329 |
jQuery("html,body").animate({
|
330 |
scrollTop: jQuery(".mec-events-meta-group-booking").offset().top - 100
|
331 |
}, "slow");
|
332 |
|
333 |
-
if
|
|
|
334 |
jQuery(".mec-single-fluent-wrap").find("select").niceSelect();
|
335 |
}
|
336 |
}
|
326 |
{
|
327 |
setTimeout(function(){window.location.href = data.data.redirect_to;}, 2000);
|
328 |
}
|
329 |
+
|
330 |
jQuery("html,body").animate({
|
331 |
scrollTop: jQuery(".mec-events-meta-group-booking").offset().top - 100
|
332 |
}, "slow");
|
333 |
|
334 |
+
if(jQuery(".mec-single-fluent-wrap").length>0 && typeof jQuery.fn.niceSelect !== "undefined")
|
335 |
+
{
|
336 |
jQuery(".mec-single-fluent-wrap").find("select").niceSelect();
|
337 |
}
|
338 |
}
|
@@ -27,6 +27,7 @@ if(isset($event->data) and isset($event->data->meta) and isset($event->data->met
|
|
27 |
// User Booking Limits
|
28 |
list($user_ticket_limit, $user_ticket_unlimited) = $book->get_user_booking_limit($event_id);
|
29 |
?>
|
|
|
30 |
<form id="mec_book_form<?php echo $uniqueid; ?>" onsubmit="mec_book_form_submit(event, <?php echo $uniqueid; ?>);">
|
31 |
<h4><?php _e('Book Event', 'modern-events-calendar-lite'); ?></h4>
|
32 |
|
27 |
// User Booking Limits
|
28 |
list($user_ticket_limit, $user_ticket_unlimited) = $book->get_user_booking_limit($event_id);
|
29 |
?>
|
30 |
+
|
31 |
<form id="mec_book_form<?php echo $uniqueid; ?>" onsubmit="mec_book_form_submit(event, <?php echo $uniqueid; ?>);">
|
32 |
<h4><?php _e('Book Event', 'modern-events-calendar-lite'); ?></h4>
|
33 |
|
@@ -63,7 +63,7 @@ if($this->style == 'colorful')
|
|
63 |
$i = 0;
|
64 |
$found = 0;
|
65 |
$events = array();
|
66 |
-
|
67 |
foreach($dates as $date=>$IDs)
|
68 |
{
|
69 |
// No Event
|
@@ -90,10 +90,7 @@ if($this->style == 'colorful')
|
|
90 |
$this->args['offset'] = 0;
|
91 |
}
|
92 |
|
93 |
-
|
94 |
-
if($this->count == '1' and $this->month_divider and $month_id != $current_month_divider): $current_month_divider = $month_id; ?>
|
95 |
-
<div class="mec-month-divider" data-toggle-divider="mec-toggle-<?php echo date('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>"><span><?php echo $this->main->date_i18n('F Y', strtotime($date)); ?></span><i class="mec-sl-arrow-down"></i></div>
|
96 |
-
<?php endif;
|
97 |
|
98 |
// The Query
|
99 |
$query = new WP_Query($this->args);
|
@@ -123,6 +120,10 @@ if($this->style == 'colorful')
|
|
123 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
124 |
);
|
125 |
|
|
|
|
|
|
|
|
|
126 |
|
127 |
|
128 |
$events[$date][] = $this->render->after_render($data, $i);
|
63 |
$i = 0;
|
64 |
$found = 0;
|
65 |
$events = array();
|
66 |
+
$current_month_divider = $this->request->getVar('current_month_divider', 0);
|
67 |
foreach($dates as $date=>$IDs)
|
68 |
{
|
69 |
// No Event
|
90 |
$this->args['offset'] = 0;
|
91 |
}
|
92 |
|
93 |
+
|
|
|
|
|
|
|
94 |
|
95 |
// The Query
|
96 |
$query = new WP_Query($this->args);
|
120 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
121 |
);
|
122 |
|
123 |
+
$month_id = date('Ym', strtotime($date));
|
124 |
+
if($this->count == '1' and $this->month_divider and $month_id != $current_month_divider): $current_month_divider = $month_id; ?>
|
125 |
+
<div class="mec-month-divider" data-toggle-divider="mec-toggle-<?php echo date('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>"><span><?php echo $this->main->date_i18n('F Y', strtotime($date)); ?></span><i class="mec-sl-arrow-down"></i></div>
|
126 |
+
<?php endif;
|
127 |
|
128 |
|
129 |
$events[$date][] = $this->render->after_render($data, $i);
|
@@ -202,14 +202,17 @@ class MEC_skin_daily_view extends MEC_skins
|
|
202 |
$query = new WP_Query($this->args);
|
203 |
if(is_array($IDs) and count($IDs) and $query->have_posts())
|
204 |
{
|
|
|
|
|
|
|
|
|
|
|
205 |
// The Loop
|
206 |
while($query->have_posts())
|
207 |
{
|
208 |
$query->the_post();
|
209 |
$ID = get_the_ID();
|
210 |
|
211 |
-
if(!isset($events[$date])) $events[$date] = array();
|
212 |
-
|
213 |
$ID_count = isset($IDs_count[$ID]) ? $IDs_count[$ID] : 1;
|
214 |
for($i = 1; $i <= $ID_count; $i++)
|
215 |
{
|
@@ -225,9 +228,12 @@ class MEC_skin_daily_view extends MEC_skins
|
|
225 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
226 |
);
|
227 |
|
228 |
-
$
|
229 |
}
|
230 |
}
|
|
|
|
|
|
|
231 |
}
|
232 |
else
|
233 |
{
|
202 |
$query = new WP_Query($this->args);
|
203 |
if(is_array($IDs) and count($IDs) and $query->have_posts())
|
204 |
{
|
205 |
+
if(!isset($events[$date])) $events[$date] = array();
|
206 |
+
|
207 |
+
// Day Events
|
208 |
+
$d = array();
|
209 |
+
|
210 |
// The Loop
|
211 |
while($query->have_posts())
|
212 |
{
|
213 |
$query->the_post();
|
214 |
$ID = get_the_ID();
|
215 |
|
|
|
|
|
216 |
$ID_count = isset($IDs_count[$ID]) ? $IDs_count[$ID] : 1;
|
217 |
for($i = 1; $i <= $ID_count; $i++)
|
218 |
{
|
228 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
229 |
);
|
230 |
|
231 |
+
$d[] = $this->render->after_render($data, $i);
|
232 |
}
|
233 |
}
|
234 |
+
|
235 |
+
usort($d, array($this, 'sort_day_events'));
|
236 |
+
$events[$date] = $d;
|
237 |
}
|
238 |
else
|
239 |
{
|
@@ -262,44 +262,53 @@ class MEC_skin_grid extends MEC_skins
|
|
262 |
*/
|
263 |
public function search()
|
264 |
{
|
265 |
-
if
|
|
|
266 |
return parent::search();
|
267 |
-
}
|
268 |
-
|
269 |
-
|
|
|
|
|
|
|
|
|
270 |
$start = $this->start_date;
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
$now = current_time('timestamp', 0);
|
278 |
$startDateTime = strtotime(date($this->year.$this->month.'t')) + (int) (get_option('gmt_offset') * HOUR_IN_SECONDS);
|
279 |
$now = $startDateTime < $now ? $startDateTime : $now;
|
|
|
280 |
$start = date('Y-m-d H:i:s', $now);
|
281 |
$end = date('Y-m-d', strtotime($this->year.$this->month.'01'));
|
282 |
}
|
283 |
-
}
|
|
|
|
|
284 |
$start = $this->start_date;
|
285 |
$end = date('Y-m-t', strtotime($this->start_date));
|
286 |
}
|
|
|
287 |
// Date Events
|
288 |
-
if
|
289 |
-
|
290 |
-
}
|
291 |
$dates = $this->period($start, $end, true);
|
292 |
ksort($dates);
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
// Limit
|
297 |
$this->args['posts_per_page'] = $this->limit;
|
298 |
|
299 |
$i = 0;
|
300 |
$found = 0;
|
301 |
$events = array();
|
302 |
-
foreach($dates as $date=>$IDs)
|
|
|
303 |
// No Event
|
304 |
if(!is_array($IDs) or (is_array($IDs) and !count($IDs))) continue;
|
305 |
|
@@ -323,12 +332,19 @@ class MEC_skin_grid extends MEC_skins
|
|
323 |
$this->offset = 0;
|
324 |
$this->args['offset'] = 0;
|
325 |
}
|
|
|
326 |
// The Query
|
327 |
$query = new WP_Query($this->args);
|
328 |
-
if($query->have_posts())
|
|
|
329 |
if(!isset($events[$date])) $events[$date] = array();
|
|
|
|
|
|
|
|
|
330 |
// The Loop
|
331 |
-
while($query->have_posts())
|
|
|
332 |
$query->the_post();
|
333 |
$ID = get_the_ID();
|
334 |
|
@@ -347,7 +363,7 @@ class MEC_skin_grid extends MEC_skins
|
|
347 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
348 |
);
|
349 |
|
350 |
-
$
|
351 |
$found++;
|
352 |
}
|
353 |
|
@@ -362,16 +378,23 @@ class MEC_skin_grid extends MEC_skins
|
|
362 |
break 2;
|
363 |
}
|
364 |
}
|
|
|
|
|
|
|
365 |
}
|
|
|
366 |
// Restore original Post Data
|
367 |
wp_reset_postdata();
|
368 |
$i++;
|
369 |
}
|
|
|
370 |
// Set Offset for Last Page
|
371 |
-
if($found < $this->limit)
|
|
|
372 |
// Next Offset
|
373 |
$this->next_offset = $found;
|
374 |
}
|
|
|
375 |
// Set found events
|
376 |
$this->found = $found;
|
377 |
|
262 |
*/
|
263 |
public function search()
|
264 |
{
|
265 |
+
if(strpos($this->style, 'fluent') === false)
|
266 |
+
{
|
267 |
return parent::search();
|
268 |
+
}
|
269 |
+
else
|
270 |
+
{
|
271 |
+
if($this->show_only_expired_events)
|
272 |
+
{
|
273 |
+
if($this->loadMoreRunning)
|
274 |
+
{
|
275 |
$start = $this->start_date;
|
276 |
+
|
277 |
+
if($this->month == date('m', current_time('timestamp', 0))) $end = date('Y-m-d', current_time('timestamp', 0));
|
278 |
+
else $end = date('Y-m-t', strtotime($this->start_date));
|
279 |
+
}
|
280 |
+
else
|
281 |
+
{
|
282 |
$now = current_time('timestamp', 0);
|
283 |
$startDateTime = strtotime(date($this->year.$this->month.'t')) + (int) (get_option('gmt_offset') * HOUR_IN_SECONDS);
|
284 |
$now = $startDateTime < $now ? $startDateTime : $now;
|
285 |
+
|
286 |
$start = date('Y-m-d H:i:s', $now);
|
287 |
$end = date('Y-m-d', strtotime($this->year.$this->month.'01'));
|
288 |
}
|
289 |
+
}
|
290 |
+
else
|
291 |
+
{
|
292 |
$start = $this->start_date;
|
293 |
$end = date('Y-m-t', strtotime($this->start_date));
|
294 |
}
|
295 |
+
|
296 |
// Date Events
|
297 |
+
if($this->show_only_expired_events && $this->loadMoreRunning) $this->show_only_expired_events = '0';
|
298 |
+
|
|
|
299 |
$dates = $this->period($start, $end, true);
|
300 |
ksort($dates);
|
301 |
+
|
302 |
+
if($this->show_only_expired_events && $this->loadMoreRunning) $this->show_only_expired_events = '1';
|
303 |
+
|
304 |
// Limit
|
305 |
$this->args['posts_per_page'] = $this->limit;
|
306 |
|
307 |
$i = 0;
|
308 |
$found = 0;
|
309 |
$events = array();
|
310 |
+
foreach($dates as $date=>$IDs)
|
311 |
+
{
|
312 |
// No Event
|
313 |
if(!is_array($IDs) or (is_array($IDs) and !count($IDs))) continue;
|
314 |
|
332 |
$this->offset = 0;
|
333 |
$this->args['offset'] = 0;
|
334 |
}
|
335 |
+
|
336 |
// The Query
|
337 |
$query = new WP_Query($this->args);
|
338 |
+
if($query->have_posts())
|
339 |
+
{
|
340 |
if(!isset($events[$date])) $events[$date] = array();
|
341 |
+
|
342 |
+
// Day Events
|
343 |
+
$d = array();
|
344 |
+
|
345 |
// The Loop
|
346 |
+
while($query->have_posts())
|
347 |
+
{
|
348 |
$query->the_post();
|
349 |
$ID = get_the_ID();
|
350 |
|
363 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
364 |
);
|
365 |
|
366 |
+
$d[] = $this->render->after_render($data, $i);
|
367 |
$found++;
|
368 |
}
|
369 |
|
378 |
break 2;
|
379 |
}
|
380 |
}
|
381 |
+
|
382 |
+
usort($d, array($this, 'sort_day_events'));
|
383 |
+
$events[$date] = $d;
|
384 |
}
|
385 |
+
|
386 |
// Restore original Post Data
|
387 |
wp_reset_postdata();
|
388 |
$i++;
|
389 |
}
|
390 |
+
|
391 |
// Set Offset for Last Page
|
392 |
+
if($found < $this->limit)
|
393 |
+
{
|
394 |
// Next Offset
|
395 |
$this->next_offset = $found;
|
396 |
}
|
397 |
+
|
398 |
// Set found events
|
399 |
$this->found = $found;
|
400 |
|
@@ -265,46 +265,56 @@ class MEC_skin_list extends MEC_skins
|
|
265 |
*/
|
266 |
public function search()
|
267 |
{
|
268 |
-
if
|
|
|
269 |
return parent::search();
|
270 |
-
}
|
271 |
-
|
272 |
-
|
|
|
|
|
|
|
|
|
273 |
$start = $this->start_date;
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
$now = current_time('timestamp', 0);
|
281 |
$startDateTime = strtotime(date($this->year.$this->month.'t')) + (int) (get_option('gmt_offset') * HOUR_IN_SECONDS);
|
282 |
$now = $startDateTime < $now ? $startDateTime : $now;
|
|
|
283 |
$start = date('Y-m-d H:i:s', $now);
|
284 |
$end = date('Y-m-d', strtotime($this->year.$this->month.'01'));
|
285 |
}
|
286 |
-
}
|
|
|
|
|
287 |
$start = $this->start_date;
|
288 |
$end = date('Y-m-t', strtotime($this->start_date));
|
|
|
289 |
// Set a certain maximum date from shortcode page.
|
290 |
if(trim($this->maximum_date) == '' and (isset($this->maximum_date_range) and trim($this->maximum_date_range))) $this->maximum_date = $this->maximum_date_range;
|
291 |
}
|
|
|
292 |
// Date Events
|
293 |
-
if
|
294 |
-
|
295 |
-
}
|
296 |
$dates = $this->period($start, $end, true);
|
297 |
ksort($dates);
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
// Limit
|
302 |
$this->args['posts_per_page'] = $this->limit;
|
303 |
|
304 |
$i = 0;
|
305 |
$found = 0;
|
306 |
$events = array();
|
307 |
-
foreach($dates as $date=>$IDs)
|
|
|
308 |
// No Event
|
309 |
if(!is_array($IDs) or (is_array($IDs) and !count($IDs))) continue;
|
310 |
|
@@ -331,10 +341,16 @@ class MEC_skin_list extends MEC_skins
|
|
331 |
|
332 |
// The Query
|
333 |
$query = new WP_Query($this->args);
|
334 |
-
if($query->have_posts())
|
|
|
335 |
if(!isset($events[$date])) $events[$date] = array();
|
|
|
|
|
|
|
|
|
336 |
// The Loop
|
337 |
-
while($query->have_posts())
|
|
|
338 |
$query->the_post();
|
339 |
$ID = get_the_ID();
|
340 |
|
@@ -353,7 +369,7 @@ class MEC_skin_list extends MEC_skins
|
|
353 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
354 |
);
|
355 |
|
356 |
-
$
|
357 |
$found++;
|
358 |
}
|
359 |
|
@@ -368,16 +384,23 @@ class MEC_skin_list extends MEC_skins
|
|
368 |
break 2;
|
369 |
}
|
370 |
}
|
|
|
|
|
|
|
371 |
}
|
|
|
372 |
// Restore original Post Data
|
373 |
wp_reset_postdata();
|
374 |
$i++;
|
375 |
}
|
|
|
376 |
// Set Offset for Last Page
|
377 |
-
if($found < $this->limit)
|
|
|
378 |
// Next Offset
|
379 |
$this->next_offset = $found;
|
380 |
}
|
|
|
381 |
// Set found events
|
382 |
$this->found = $found;
|
383 |
|
265 |
*/
|
266 |
public function search()
|
267 |
{
|
268 |
+
if(strpos($this->style, 'fluent') === false)
|
269 |
+
{
|
270 |
return parent::search();
|
271 |
+
}
|
272 |
+
else
|
273 |
+
{
|
274 |
+
if($this->show_only_expired_events)
|
275 |
+
{
|
276 |
+
if($this->loadMoreRunning)
|
277 |
+
{
|
278 |
$start = $this->start_date;
|
279 |
+
|
280 |
+
if($this->month == date('m', current_time('timestamp', 0))) $end = date('Y-m-d', current_time('timestamp', 0));
|
281 |
+
else $end = date('Y-m-t', strtotime($this->start_date));
|
282 |
+
}
|
283 |
+
else
|
284 |
+
{
|
285 |
$now = current_time('timestamp', 0);
|
286 |
$startDateTime = strtotime(date($this->year.$this->month.'t')) + (int) (get_option('gmt_offset') * HOUR_IN_SECONDS);
|
287 |
$now = $startDateTime < $now ? $startDateTime : $now;
|
288 |
+
|
289 |
$start = date('Y-m-d H:i:s', $now);
|
290 |
$end = date('Y-m-d', strtotime($this->year.$this->month.'01'));
|
291 |
}
|
292 |
+
}
|
293 |
+
else
|
294 |
+
{
|
295 |
$start = $this->start_date;
|
296 |
$end = date('Y-m-t', strtotime($this->start_date));
|
297 |
+
|
298 |
// Set a certain maximum date from shortcode page.
|
299 |
if(trim($this->maximum_date) == '' and (isset($this->maximum_date_range) and trim($this->maximum_date_range))) $this->maximum_date = $this->maximum_date_range;
|
300 |
}
|
301 |
+
|
302 |
// Date Events
|
303 |
+
if($this->show_only_expired_events && $this->loadMoreRunning) $this->show_only_expired_events = '0';
|
304 |
+
|
|
|
305 |
$dates = $this->period($start, $end, true);
|
306 |
ksort($dates);
|
307 |
+
|
308 |
+
if($this->show_only_expired_events && $this->loadMoreRunning) $this->show_only_expired_events = '1';
|
309 |
+
|
310 |
// Limit
|
311 |
$this->args['posts_per_page'] = $this->limit;
|
312 |
|
313 |
$i = 0;
|
314 |
$found = 0;
|
315 |
$events = array();
|
316 |
+
foreach($dates as $date=>$IDs)
|
317 |
+
{
|
318 |
// No Event
|
319 |
if(!is_array($IDs) or (is_array($IDs) and !count($IDs))) continue;
|
320 |
|
341 |
|
342 |
// The Query
|
343 |
$query = new WP_Query($this->args);
|
344 |
+
if($query->have_posts())
|
345 |
+
{
|
346 |
if(!isset($events[$date])) $events[$date] = array();
|
347 |
+
|
348 |
+
// Day Events
|
349 |
+
$d = array();
|
350 |
+
|
351 |
// The Loop
|
352 |
+
while($query->have_posts())
|
353 |
+
{
|
354 |
$query->the_post();
|
355 |
$ID = get_the_ID();
|
356 |
|
369 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
370 |
);
|
371 |
|
372 |
+
$d[] = $this->render->after_render($data, $i);
|
373 |
$found++;
|
374 |
}
|
375 |
|
384 |
break 2;
|
385 |
}
|
386 |
}
|
387 |
+
|
388 |
+
usort($d, array($this, 'sort_day_events'));
|
389 |
+
$events[$date] = $d;
|
390 |
}
|
391 |
+
|
392 |
// Restore original Post Data
|
393 |
wp_reset_postdata();
|
394 |
$i++;
|
395 |
}
|
396 |
+
|
397 |
// Set Offset for Last Page
|
398 |
+
if($found < $this->limit)
|
399 |
+
{
|
400 |
// Next Offset
|
401 |
$this->next_offset = $found;
|
402 |
}
|
403 |
+
|
404 |
// Set found events
|
405 |
$this->found = $found;
|
406 |
|
@@ -192,6 +192,9 @@ class MEC_skin_monthly_view extends MEC_skins
|
|
192 |
{
|
193 |
if(!isset($events[$date])) $events[$date] = array();
|
194 |
|
|
|
|
|
|
|
195 |
// The Loop
|
196 |
while($query->have_posts())
|
197 |
{
|
@@ -213,9 +216,12 @@ class MEC_skin_monthly_view extends MEC_skins
|
|
213 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
214 |
);
|
215 |
|
216 |
-
$
|
217 |
}
|
218 |
}
|
|
|
|
|
|
|
219 |
}
|
220 |
|
221 |
// Restore original Post Data
|
192 |
{
|
193 |
if(!isset($events[$date])) $events[$date] = array();
|
194 |
|
195 |
+
// Day Events
|
196 |
+
$d = array();
|
197 |
+
|
198 |
// The Loop
|
199 |
while($query->have_posts())
|
200 |
{
|
216 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
217 |
);
|
218 |
|
219 |
+
$d[] = $this->render->after_render($data, $i);
|
220 |
}
|
221 |
}
|
222 |
+
|
223 |
+
usort($d, array($this, 'sort_day_events'));
|
224 |
+
$events[$date] = $d;
|
225 |
}
|
226 |
|
227 |
// Restore original Post Data
|
@@ -161,9 +161,20 @@ class MEC_skin_single extends MEC_skins
|
|
161 |
<h3 class="mec-rec-events-title"><?php echo __('Related Events', 'modern-events-calendar-lite'); ?></h3>
|
162 |
<div class="mec-related-events">
|
163 |
<?php while($query->have_posts()): $query->the_post(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
<article class="mec-related-event-post col-md-3 col-sm-3">
|
165 |
<figure>
|
166 |
-
<a href="<?php echo get_the_permalink(); ?>">
|
167 |
<?php
|
168 |
if(get_the_post_thumbnail(get_the_ID(), 'thumblist')) echo get_the_post_thumbnail(get_the_ID(), 'thumblist');
|
169 |
else echo '<img src="' . plugin_dir_url(__FILE__) . '../../assets/img/no-image.png" />';
|
@@ -172,15 +183,7 @@ class MEC_skin_single extends MEC_skins
|
|
172 |
</figure>
|
173 |
<div class="mec-related-event-content">
|
174 |
<span>
|
175 |
-
<?php
|
176 |
-
$dates = $this->render->dates(get_the_ID(), NULL, 1, date('Y-m-d', strtotime('Yesterday')));
|
177 |
-
$d = isset($dates[0]) ? $dates[0] : array();
|
178 |
-
|
179 |
-
$mec_date = (isset($d['start']) and isset($d['start']['date'])) ? $d['start']['date'] : get_post_meta(get_the_ID(), 'mec_start_date', true);
|
180 |
-
$date = $this->main->date_i18n(get_option('date_format'), strtotime($mec_date));
|
181 |
-
|
182 |
-
echo $date;
|
183 |
-
?>
|
184 |
</span>
|
185 |
<h5>
|
186 |
<a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink(get_the_permalink(), $mec_date); ?>"><?php echo get_the_title(); ?></a>
|
@@ -1058,8 +1061,8 @@ class MEC_skin_single extends MEC_skins
|
|
1058 |
|
1059 |
if ($this->main->can_show_booking_module($event)) : ?>
|
1060 |
<div class="mec-reg-btn mec-frontbox">
|
1061 |
-
<?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = '
|
1062 |
-
<a class="mec-booking-button mec-bg-color <?php echo $data_lity_class; ?> <?php if
|
1063 |
<?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://') : ?>
|
1064 |
<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']), 'mec-single-builder');
|
1065 |
else echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder')));
|
161 |
<h3 class="mec-rec-events-title"><?php echo __('Related Events', 'modern-events-calendar-lite'); ?></h3>
|
162 |
<div class="mec-related-events">
|
163 |
<?php while($query->have_posts()): $query->the_post(); ?>
|
164 |
+
<?php
|
165 |
+
$dates = $this->render->dates(get_the_ID(), NULL, 1, date('Y-m-d', strtotime('Yesterday')));
|
166 |
+
$d = isset($dates[0]) ? $dates[0] : array();
|
167 |
+
|
168 |
+
// Don't show Expired Events
|
169 |
+
$timestamp = (isset($d['start']) and isset($d['start']['timestamp'])) ? $d['start']['timestamp'] : 0;
|
170 |
+
if($timestamp > 0 and $timestamp < current_time('timestamp')) continue;
|
171 |
+
|
172 |
+
$mec_date = (isset($d['start']) and isset($d['start']['date'])) ? $d['start']['date'] : get_post_meta(get_the_ID(), 'mec_start_date', true);
|
173 |
+
$date = $this->main->date_i18n(get_option('date_format'), strtotime($mec_date));
|
174 |
+
?>
|
175 |
<article class="mec-related-event-post col-md-3 col-sm-3">
|
176 |
<figure>
|
177 |
+
<a href="<?php echo $this->main->get_event_date_permalink(get_the_permalink(), $mec_date); ?>">
|
178 |
<?php
|
179 |
if(get_the_post_thumbnail(get_the_ID(), 'thumblist')) echo get_the_post_thumbnail(get_the_ID(), 'thumblist');
|
180 |
else echo '<img src="' . plugin_dir_url(__FILE__) . '../../assets/img/no-image.png" />';
|
183 |
</figure>
|
184 |
<div class="mec-related-event-content">
|
185 |
<span>
|
186 |
+
<?php echo $date; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
</span>
|
188 |
<h5>
|
189 |
<a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink(get_the_permalink(), $mec_date); ?>"><?php echo get_the_title(); ?></a>
|
1061 |
|
1062 |
if ($this->main->can_show_booking_module($event)) : ?>
|
1063 |
<div class="mec-reg-btn mec-frontbox">
|
1064 |
+
<?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ /* $data_lity = 'onclick="openBookingModal();"'; */ $data_lity_class = 'mec-booking-data-lity'; } ?>
|
1065 |
+
<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 $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
|
1066 |
<?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://') : ?>
|
1067 |
<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']), 'mec-single-builder');
|
1068 |
else echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder')));
|
@@ -274,8 +274,8 @@ $display_reason = get_post_meta(get_the_ID(), 'mec_display_cancellation_reason_i
|
|
274 |
|
275 |
<!-- Register Booking Button -->
|
276 |
<?php if($this->main->can_show_booking_module($event)): ?>
|
277 |
-
<?php $data_lity = $data_lity_class = ''; if(isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal'){ $data_lity = 'onclick="openBookingModal();"'; $data_lity_class = 'mec-booking-data-lity'; } ?>
|
278 |
-
<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; ?>"
|
279 |
<?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://'): ?>
|
280 |
<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'))); ?></a>
|
281 |
<?php endif; ?>
|
@@ -505,8 +505,8 @@ $display_reason = get_post_meta(get_the_ID(), 'mec_display_cancellation_reason_i
|
|
505 |
|
506 |
<!-- Register Booking Button -->
|
507 |
<?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
|
508 |
-
<?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ /* $data_lity = 'onclick="openBookingModal();"'; */
|
509 |
-
<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; ?>"
|
510 |
<?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://'): ?>
|
511 |
<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')));
|
512 |
?></a>
|
@@ -559,7 +559,6 @@ jQuery( ".mec-speaker-avatar a" ).click(function(e)
|
|
559 |
var id = jQuery(this).attr('href');
|
560 |
lity(id);
|
561 |
});
|
562 |
-
|
563 |
// Fix modal booking in some themes
|
564 |
jQuery( ".mec-booking-button.mec-booking-data-lity" ).click(function(e)
|
565 |
{
|
274 |
|
275 |
<!-- Register Booking Button -->
|
276 |
<?php if($this->main->can_show_booking_module($event)): ?>
|
277 |
+
<?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ /* $data_lity = 'onclick="openBookingModal();"'; */ $data_lity_class = 'mec-booking-data-lity'; } ?>
|
278 |
+
<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 $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
|
279 |
<?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://'): ?>
|
280 |
<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'))); ?></a>
|
281 |
<?php endif; ?>
|
505 |
|
506 |
<!-- Register Booking Button -->
|
507 |
<?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
|
508 |
+
<?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ /* $data_lity = 'onclick="openBookingModal();"'; */ $data_lity_class = 'mec-booking-data-lity'; } ?>
|
509 |
+
<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 $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
|
510 |
<?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://'): ?>
|
511 |
<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')));
|
512 |
?></a>
|
559 |
var id = jQuery(this).attr('href');
|
560 |
lity(id);
|
561 |
});
|
|
|
562 |
// Fix modal booking in some themes
|
563 |
jQuery( ".mec-booking-button.mec-booking-data-lity" ).click(function(e)
|
564 |
{
|
@@ -325,7 +325,6 @@ jQuery( ".mec-speaker-avatar a" ).click(function(e)
|
|
325 |
var id = jQuery(this).attr('href');
|
326 |
lity(id);
|
327 |
});
|
328 |
-
|
329 |
// Fix modal booking in some themes
|
330 |
jQuery( ".mec-booking-button.mec-booking-data-lity" ).click(function(e)
|
331 |
{
|
325 |
var id = jQuery(this).attr('href');
|
326 |
lity(id);
|
327 |
});
|
|
|
328 |
// Fix modal booking in some themes
|
329 |
jQuery( ".mec-booking-button.mec-booking-data-lity" ).click(function(e)
|
330 |
{
|
@@ -221,6 +221,9 @@ class MEC_skin_tile extends MEC_skins
|
|
221 |
{
|
222 |
if(!isset($events[$date])) $events[$date] = array();
|
223 |
|
|
|
|
|
|
|
224 |
// The Loop
|
225 |
while($query->have_posts())
|
226 |
{
|
@@ -242,7 +245,7 @@ class MEC_skin_tile extends MEC_skins
|
|
242 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
243 |
);
|
244 |
|
245 |
-
$
|
246 |
$found++;
|
247 |
}
|
248 |
|
@@ -257,6 +260,9 @@ class MEC_skin_tile extends MEC_skins
|
|
257 |
break 2;
|
258 |
}
|
259 |
}
|
|
|
|
|
|
|
260 |
}
|
261 |
|
262 |
// Restore original Post Data
|
221 |
{
|
222 |
if(!isset($events[$date])) $events[$date] = array();
|
223 |
|
224 |
+
// Day Events
|
225 |
+
$d = array();
|
226 |
+
|
227 |
// The Loop
|
228 |
while($query->have_posts())
|
229 |
{
|
245 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
246 |
);
|
247 |
|
248 |
+
$d[] = $this->render->after_render($data, $i);
|
249 |
$found++;
|
250 |
}
|
251 |
|
260 |
break 2;
|
261 |
}
|
262 |
}
|
263 |
+
|
264 |
+
usort($d, array($this, 'sort_day_events'));
|
265 |
+
$events[$date] = $d;
|
266 |
}
|
267 |
|
268 |
// Restore original Post Data
|
@@ -217,6 +217,9 @@ class MEC_skin_timetable extends MEC_skins
|
|
217 |
{
|
218 |
if(!isset($events[$date])) $events[$date] = array();
|
219 |
|
|
|
|
|
|
|
220 |
// The Loop
|
221 |
while($query->have_posts())
|
222 |
{
|
@@ -248,9 +251,12 @@ class MEC_skin_timetable extends MEC_skins
|
|
248 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
249 |
);
|
250 |
|
251 |
-
$
|
252 |
}
|
253 |
}
|
|
|
|
|
|
|
254 |
}
|
255 |
else
|
256 |
{
|
217 |
{
|
218 |
if(!isset($events[$date])) $events[$date] = array();
|
219 |
|
220 |
+
// Day Events
|
221 |
+
$d = array();
|
222 |
+
|
223 |
// The Loop
|
224 |
while($query->have_posts())
|
225 |
{
|
251 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
252 |
);
|
253 |
|
254 |
+
$d[] = $this->render->after_render($data, $i);
|
255 |
}
|
256 |
}
|
257 |
+
|
258 |
+
usort($d, array($this, 'sort_day_events'));
|
259 |
+
$events[$date] = $d;
|
260 |
}
|
261 |
else
|
262 |
{
|
@@ -210,6 +210,9 @@ class MEC_skin_weekly_view extends MEC_skins
|
|
210 |
{
|
211 |
if(!isset($events[$date])) $events[$date] = array();
|
212 |
|
|
|
|
|
|
|
213 |
// The Loop
|
214 |
while($query->have_posts())
|
215 |
{
|
@@ -241,9 +244,12 @@ class MEC_skin_weekly_view extends MEC_skins
|
|
241 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
242 |
);
|
243 |
|
244 |
-
$
|
245 |
}
|
246 |
}
|
|
|
|
|
|
|
247 |
}
|
248 |
else
|
249 |
{
|
210 |
{
|
211 |
if(!isset($events[$date])) $events[$date] = array();
|
212 |
|
213 |
+
// Day Events
|
214 |
+
$d = array();
|
215 |
+
|
216 |
// The Loop
|
217 |
while($query->have_posts())
|
218 |
{
|
244 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
245 |
);
|
246 |
|
247 |
+
$d[] = $this->render->after_render($data, $i);
|
248 |
}
|
249 |
}
|
250 |
+
|
251 |
+
usort($d, array($this, 'sort_day_events'));
|
252 |
+
$events[$date] = $d;
|
253 |
}
|
254 |
else
|
255 |
{
|
@@ -188,6 +188,9 @@ class MEC_skin_yearly_view extends MEC_skins
|
|
188 |
{
|
189 |
if(!isset($events[$date])) $events[$date] = array();
|
190 |
|
|
|
|
|
|
|
191 |
// The Loop
|
192 |
while($query->have_posts())
|
193 |
{
|
@@ -209,9 +212,12 @@ class MEC_skin_yearly_view extends MEC_skins
|
|
209 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
210 |
);
|
211 |
|
212 |
-
$
|
213 |
}
|
214 |
}
|
|
|
|
|
|
|
215 |
}
|
216 |
|
217 |
// Restore original Post Data
|
188 |
{
|
189 |
if(!isset($events[$date])) $events[$date] = array();
|
190 |
|
191 |
+
// Day Events
|
192 |
+
$d = array();
|
193 |
+
|
194 |
// The Loop
|
195 |
while($query->have_posts())
|
196 |
{
|
212 |
'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
|
213 |
);
|
214 |
|
215 |
+
$d[] = $this->render->after_render($data, $i);
|
216 |
}
|
217 |
}
|
218 |
+
|
219 |
+
usort($d, array($this, 'sort_day_events'));
|
220 |
+
$events[$date] = $d;
|
221 |
}
|
222 |
|
223 |
// Restore original Post Data
|
@@ -8661,6 +8661,42 @@ div#mec_meta_box_date_form .mec-form-row {
|
|
8661 |
}
|
8662 |
|
8663 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8664 |
/* Go Pro page */
|
8665 |
.mec-go-pro-content-title {
|
8666 |
font-size: 20px;
|
@@ -9578,7 +9614,7 @@ div#mec_meta_box_date_form .mec-form-row {
|
|
9578 |
}
|
9579 |
|
9580 |
/* Wizard > Dark Mode */
|
9581 |
-
.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup,
|
9582 |
.mec-admin-dark-mode .lity.mec-add-event-popup,
|
9583 |
.mec-admin-dark-mode .mec-add-shortcode-popup div#mec_popup_shortcode,
|
9584 |
.mec-admin-dark-mode .lity.mec-add-shortcode-popup {
|
@@ -9643,6 +9679,25 @@ div#mec_meta_box_date_form .mec-form-row {
|
|
9643 |
color: #D2D2D2;
|
9644 |
}
|
9645 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9646 |
/* Wizard Copy Button */
|
9647 |
.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button {
|
9648 |
margin-left: unset;
|
8661 |
}
|
8662 |
|
8663 |
|
8664 |
+
/* Wizard Time Picker */
|
8665 |
+
.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup {
|
8666 |
+
min-width: 64px;
|
8667 |
+
}
|
8668 |
+
|
8669 |
+
.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list {
|
8670 |
+
overflow-y: scroll !important;
|
8671 |
+
height: 288px;
|
8672 |
+
margin-top: 4px !important;
|
8673 |
+
box-shadow: 0 1px 9px rgba(0,0,0,.1);
|
8674 |
+
border-radius: 0;
|
8675 |
+
}
|
8676 |
+
|
8677 |
+
.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar-track {
|
8678 |
+
background-color: #f6f6f6;
|
8679 |
+
}
|
8680 |
+
|
8681 |
+
.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar {
|
8682 |
+
width: 3px;
|
8683 |
+
background-color: #f6f6f6;
|
8684 |
+
}
|
8685 |
+
|
8686 |
+
.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar-thumb {
|
8687 |
+
background-color: rgba(26,175,251,.16);
|
8688 |
+
}
|
8689 |
+
|
8690 |
+
.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup:last-child .list {
|
8691 |
+
overflow: unset !important;
|
8692 |
+
height: unset;
|
8693 |
+
}
|
8694 |
+
|
8695 |
+
/* Fixed Admin Column issue on all event page and Wizard */
|
8696 |
+
.ac-mec-events.ac-search-enabled .tablenav .ac-search>*:not(#ac-s).lity-hide {
|
8697 |
+
display: none;
|
8698 |
+
}
|
8699 |
+
|
8700 |
/* Go Pro page */
|
8701 |
.mec-go-pro-content-title {
|
8702 |
font-size: 20px;
|
9614 |
}
|
9615 |
|
9616 |
/* Wizard > Dark Mode */
|
9617 |
+
.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup,
|
9618 |
.mec-admin-dark-mode .lity.mec-add-event-popup,
|
9619 |
.mec-admin-dark-mode .mec-add-shortcode-popup div#mec_popup_shortcode,
|
9620 |
.mec-admin-dark-mode .lity.mec-add-shortcode-popup {
|
9679 |
color: #D2D2D2;
|
9680 |
}
|
9681 |
|
9682 |
+
.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.focus,
|
9683 |
+
.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected.focus,
|
9684 |
+
.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option:hover {
|
9685 |
+
background: #000;
|
9686 |
+
}
|
9687 |
+
|
9688 |
+
.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list {
|
9689 |
+
background: #282828;
|
9690 |
+
}
|
9691 |
+
|
9692 |
+
.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list::-webkit-scrollbar-track {
|
9693 |
+
background-color: #333;
|
9694 |
+
}
|
9695 |
+
|
9696 |
+
.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list::-webkit-scrollbar {
|
9697 |
+
width: 3px;
|
9698 |
+
background-color: #333;
|
9699 |
+
}
|
9700 |
+
|
9701 |
/* Wizard Copy Button */
|
9702 |
.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button {
|
9703 |
margin-left: unset;
|
@@ -2,4 +2,4 @@
|
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:554px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:400px}#mec_exceptions_not_in_days_date{width:100%}#mec_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{width:262px}#mec_exceptions_not_in_days_date,#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker,#mec_meta_box_date_form input[type=text]{max-width:262px}#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker.mec-col-4{max-width:32.33333333%}#payment_gateways_option .mec-col-4 input[type=number],#payment_gateways_option .mec-col-4 input[type=text],#payment_gateways_option .mec-col-4 select,#payment_gateways_option .mec-col-4 textarea{width:75%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.mec-custom-msg-notification-wrap,.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.mec-custom-msg-notification-wrap .w-col-sm-12,.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select,.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row input[type=url],.mec-form-row select,.mec-form-row textarea,.mec-form-row.mec-skin-list-date-format-container input[type=text]{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:normal}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{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}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag{font-weight:500;border-radius:2px;text-shadow:none;box-shadow:0 1px 3px rgba(0,0,0,.06);background:#fff;background:linear-gradient(95deg,#fff 0,#fff 50%,#fff 100%)!important;border:1px solid #e7e7e7;transition:.24s}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag.button-primary,#webnus-dashboard .total-bookings button,button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}#webnus-dashboard .total-bookings button{line-height:39px;padding:0 36px}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag.button-primary,#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover{color:#fff!important}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover,#webnus-dashboard .total-bookings button:hover,button.fserv-button-submit:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{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)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.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}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-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-report-backtoselect-wrap,.mec-report-sendmail-form-wrap{display:none}.mec-report-select-event-wrap .select2{width:100%!important}.mec-report-select-event-wrap .select2-container--default .select2-selection--single{border-radius:2px;border:1px solid #e2e3e4;height:38px;padding-top:5px;width:100%;box-shadow:0 2px 3px rgba(0,0,0,.03)}.mec-report-select-event-wrap .select2-container--default .select2-selection--single .select2-selection__arrow{height:36px}.mec-report-select-event-wrap .select2-container--open .select2-dropdown--below{box-shadow:0 2px 8px rgba(0,0,0,.12);border-color:#d7d8d9}.select2-container--default .select2-search--dropdown .select2-search__field{box-shadow:0 2px 8px rgba(0,0,0,.06) inset;border-color:#d7d8d9;border-radius:2px}.mec-report-select-event-wrap input[type=text],.mec-report-select-event-wrap select{border:1px solid #e2e3e4;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;margin-bottom:15px;border-radius:2px;box-shadow:0 2px 3px rgba(0,0,0,.03);max-width:150px}.mec-report-select-event-wrap .select2-container--default{max-width:400px}.mec-report-select-event-wrap select.mec-reports-selectbox-dates{height:38px;min-width:260px;margin:0 0 0 10px;padding-left:15px}.mec-report-sendmail-form-wrap,.mec-report-sendmail-wrap{padding:30px 15px;background:#fff;border:1px solid #e2e3e4;margin:15px 0 5px;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-report-sendmail-wrap .w-col-sm-12:before{background:url(../img/email-document.png) no-repeat left top;content:"";display:block;width:90px;height:70px;z-index:100;float:left}.mec-report-sendmail-wrap p{margin:0 0 15px;font-size:15px;color:#7d8284}.mec-report-backtoselect-wrap button,.mec-report-sendmail-wrap .w-col-sm-12 button,.mec-send-email-form-wrap .mec-send-email-button{background:#19cde9;border:none;color:#fff;font-size:13px!important;padding:6px 16px;border-radius:2px;cursor:pointer;box-shadow:0 1px 2px rgba(25,205,233,.25);transition:all .2s ease}.mec-report-backtoselect-wrap button:hover,.mec-report-sendmail-wrap .w-col-sm-12 button:hover,.mec-send-email-form-wrap .mec-send-email-button:hover{background:#04bfdc;box-shadow:0 1px 2px rgba(25,205,233,.05)}.mec-report-backtoselect-wrap button{margin-top:15px}.mec-report-selected-event-attendees-wrap{border:1px solid #96e3ef;padding:0;margin:20px 0;border-radius:3px;box-shadow:0 2px 14px rgba(25,205,233,.1);display:none}.mec-report-sendmail-wrap{display:none}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{background:#c7eef4;border-bottom:1px solid #96e3ef;padding:15px;margin:0;border-radius:3px 3px 0 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content{margin:0;padding:8px 15px;border-bottom:1px solid #e4eef0;font-size:13px;line-height:25px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:hover{background:#f3fdfe}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:last-child{border-bottom:none;border-radius:0 0 3px 3px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content img{border-radius:25px;margin-left:8px}.mec-report-selected-event-attendees-wrap input[type=checkbox]{border-radius:3px;margin-top:0}.mec-report-selected-event-attendees-wrap .mec-attendees-head .w-col-xs-2.name{padding-left:10px}.mec-report-selected-event-attendees-wrap .checkin_status span{font-weight:600}.mec-report-selected-event-attendees-wrap .w-col-sm-12>p{text-align:center}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0;padding:0;background:0 0;max-width:674px;margin:0 auto}.mec-report-sendmail-form-wrap{padding:0 30px 45px}.mec-send-email-form-wrap h2{background:url(../img/email-document.png) no-repeat center top;padding-top:70px;font-size:22px;font-weight:600;text-align:center;padding-bottom:10px;padding-left:10px;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tools button{font-size:13px;font-weight:400;color:#444;line-height:1;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tabs button{min-height:30px}.mec-send-email-form-wrap input.widefat{min-height:40px;border:1px solid #e2e3e4;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-send-email-form-wrap input.widefat:focus{border:1px solid #96e3ef}.mec-send-email-form-wrap h4.mec-send-email-count{font-weight:400;text-align:center;margin-bottom:30px;margin-top:0;padding-top:0}.mec-send-email-form-wrap .mec-send-email-button{min-height:40px;line-height:40px;padding:0;font-size:17px!important;font-weight:600}.mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span{height:20px;padding-top:2px}.lity.mec-add-shortcode-popup{background-color:#b7e4e3}.lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}.mec-add-shortcode-popup .lity-container{width:930px;height:620px}.mec-add-shortcode-popup .lity-content:after{display:none}.mec-add-shortcode-popup div#mec_popup_shortcode{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.mec-steps-container{width:92px;text-align:center;background:#fff}.mec-steps-panel{width:calc(100% - 92px);background:#eef4f5}.mec-steps-container ul{text-align:center;display:block;margin-top:62px}.mec-steps-container ul li{width:22px;height:70px;margin:0 auto;position:relative}.mec-steps-container ul li span{border-radius:50px;background-color:rgba(26,175,251,.16);width:22px;height:22px;display:inline-block;padding-top:2px;font-size:11px;font-weight:700;color:#1aaffb}.mec-steps-container ul li:after,.mec-steps-container ul li:before{content:'';display:block;height:24px;width:2px;background:rgba(26,175,251,.16);margin-left:calc(50% - 1px)}.mec-steps-container ul li:first-of-type:before,.mec-steps-container ul li:last-of-type:after{display:none}.mec-steps-container ul li:first-of-type{height:46px}li.mec-step.mec-step-passed span,li.mec-step.mec-step-passed:after,li.mec-step.mec-step-passed:before{background-color:#2dcb73;color:#fff}.mec-steps-container img{margin-top:27px}.mec-steps-header{display:flex;background:#fff;border-radius:5px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);padding:12px 22px;margin-bottom:50px}.mec-steps-header-settings{width:65px}.mec-steps-header-userinfo{width:calc(100% - 65px)}.mec-steps-panel{padding:35px;position:relative;display:flex;flex-direction:column;justify-content:space-between}.mec-steps-header-userinfo span{display:inline-block;vertical-align:middle}.mec-steps-header-userinfo span img{height:40px;border-radius:50px;margin-right:8px;vertical-align:middle}.mec-steps-header-userinfo span.mec-steps-header-name{font-size:14px;color:#778182}span.mec-steps-header-add-text{color:#839294;font-size:12px;margin-left:5px}.mec-steps-header-settings a{height:100%;display:block;padding-top:11px;text-decoration:none;font-size:12px;color:#707070}.mec-steps-header-settings a i{color:#1aaffb;font-size:16px;vertical-align:text-top;margin-right:5px}.mec-next-previous-buttons{clear:both}.mec-next-previous-buttons button.mec-button-next{float:right;background:#008aff;border:none;color:#fff;cursor:pointer;width:123px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-next img{position:absolute;top:16px;right:18px}.mec-next-previous-buttons button{position:relative}.mec-next-previous-buttons button.mec-button-prev{background:#fff;border:none;color:#000;cursor:pointer;width:123px;text-align:right;padding:8px 15px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(11,121,125,.01);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-prev img{position:absolute;top:16px;left:18px}.mec-next-previous-buttons button.mec-button-prev:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3);color:#fff}.mec-next-previous-buttons button.mec-button-new{background:#008aff;float:right;border:none;color:#fff;cursor:pointer;width:154px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-new:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-new img{vertical-align:sub;margin-left:-3px;margin-right:8px}div#mec_popup_shortcode_form{height:calc(100% - 37px)}.mec-steps-content-container{display:flex;flex-direction:column;height:100%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/first-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:50%;position:absolute;width:360px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]{width:360px;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::-webkit-input-placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]:-ms-input-placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/add-sh-icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul{height:386px;overflow-x:hidden;overflow-y:scroll;padding-left:60px;margin-top:-22px;margin-bottom:0;position:relative;padding-bottom:19px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{width:193px!important;float:left!important;min-height:135px!important;height:160px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text input{display:block;margin:0 auto;margin-top:6px;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05);position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img{padding-top:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li .mec-step-popup-skin-text input{display:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before{width:14px;height:14px;content:'';border-radius:50px;background:#fff;display:block;position:absolute;left:calc(50% - 7px);top:24px;z-index:99;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text{position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:before{background:#008aff;border:none;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);width:16px;height:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:after{width:4px;height:4px;display:block;content:'';position:absolute;background:#fff;left:calc(50% - 1px);top:30px;z-index:999;border-radius:50px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh{display:block}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles{height:386px;overflow-x:hidden;padding-left:60px;padding-bottom:19px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label{width:193px!important;float:left!important;margin:1.66%!important;text-align:center}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label span{width:193px!important;float:left!important;min-height:135px!important;height:150px;box-sizing:border-box;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer;margin-bottom:5px;margin-top:-6px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active span{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label div{font-size:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active div{color:#008aff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles input{opacity:0;display:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-steps-content.mec-steps-content-3{margin-top:-18px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh img{width:189px;height:146px;border-radius:5px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 .nice-select{border:none;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4{top:40%;position:absolute;width:330px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 h3{font-size:13px;font-weight:400;color:#707070}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div{border:2px dashed #dce2e3;border-radius:3px;padding:20px 20px 6px;background:#fcfcfc}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div label{display:block;margin-bottom:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:300px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.focus,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected.focus,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected{font-weight:700}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.mec-add-shortcode-popup .no-csspointerevents .wn-mec-select-popup .list{display:none}.mec-add-shortcode-popup .no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input{background:#fff;position:relative;width:24px;height:24px;border:1px solid #cacece}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input:before{disaply:none}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label.active input{background:#008aff;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);border:none}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label.active input:before{background:#fff;width:6px;height:6px;top:6px;left:6px;position:absolute}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5{width:360px;margin-top:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher label{color:#707070;font-size:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher p{color:#8a8a8a;font-style:italic;font-size:12px;margin-top:7px;margin-bottom:0}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher{padding-bottom:30px;margin-bottom:34px;border-bottom:2px dashed #dce2e3;position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher:last-of-type{padding-bottom:0;margin-bottom:0;border:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher div:last-of-type label{position:absolute;top:-4px;right:0;width:52px;height:26px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input:checked+label:after{margin-left:26px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after,.mec-add-shortcode-popup .mec-switcher input+label:before{display:block;position:absolute;top:2px;left:1px;bottom:2px;content:""}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after{width:23px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6{background:url(../../assets/img/popup/sixth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-content.mec-steps-content-6{margin-top:56px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode h3{font-size:16px;font-weight:400;color:#707070;margin-top:7px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{border-radius:3px;background:rgba(154,214,222,.35);width:243px;margin:0 auto;padding:14px 17px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code{background:0 0;color:#000;font-size:14px;font-weight:600;margin-left:-11px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{border:none;background:#fff;border-radius:3px;padding:3px 8px 6px;margin-left:46px;cursor:pointer}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button:hover{background:#000;color:#fff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-results p{width:325px;text-align:center;font-size:12px;margin-top:5px;color:#8a8a8a}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center;height:182px;position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading .mec-loader{position:absolute;left:136px;top:65px}.mec-add-event-popup button.lity-close,.mec-add-shortcode-popup button.lity-close{right:0;top:-52px;border-radius:50%;width:37px;height:37px;background:#fff;color:#a2afbc;text-shadow:none;padding-top:1px;transition:all .2s ease;position:absolute;box-shadow:0 3px 8px 0 rgba(91,188,190,.55)}.mec-add-event-popup button.lity-close:hover,.mec-add-shortcode-popup button.lity-close:hover{background:#000;color:#fff;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-skin-styles.mec-styles-full_calendar h3{padding-left:12px}.lity.mec-add-event-popup{background-color:#b7e4e3}.mec-add-event-popup .lity-container{width:930px;height:620px;max-width:unset}.mec-add-event-popup div#mec_popup_event{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.lity.mec-add-event-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}div#mec_popup_event_form{height:calc(100% - 37px)}.mec-add-event-popup .mec-steps-container ul{margin-top:42px}.mec-add-event-popup .mec-steps-container ul li:first-of-type{height:41px}.mec-add-shortcode-popup .mec-steps-container ul li:after,.mec-add-shortcode-popup .mec-steps-container ul li:before{height:24px}.mec-add-event-popup .mec-steps-container ul li:after,.mec-add-event-popup .mec-steps-container ul li:before{height:19px}.mec-add-event-popup .mec-steps-container ul li{height:60px}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup{box-shadow:0 3px 22px 0 rgba(11,121,125,.01);border:none;clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;box-sizing:border-box;cursor:pointer;display:block;float:left;font-family:inherit;font-size:12px;font-weight:400;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;height:46px;margin-right:6px;padding-top:3px;color:#707070}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open{border-radius:3px 3px 0 0}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list{background-color:#fff;border-radius:0 0 3px 3px;box-shadow:0 0 0 0 rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9;margin-top:1px!important}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup:after{border-bottom:2px solid #00acf8;border-right:2px solid #00acf8;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:15px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:22px!important;min-height:22px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.focus,.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected.focus,.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected{font-weight:700}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.mec-add-event-popup .no-csspointerevents .wn-mec-select-popup .list{display:none}.mec-add-event-popup .no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/add-event-first-step.png) no-repeat 100% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name{width:100%;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name::-webkit-input-placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name:-ms-input-placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/calendar_icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:210px;position:absolute;width:370px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-add-event-popup .mec-meta-box-colors-container{background:#fff;padding:17px;border-radius:3px;box-shadow:0 3px 22px rgba(11,121,125,.01);margin-top:15px}.mec-add-event-popup .wp-picker-container .wp-color-result.button{border-color:#f1f2f4;border-radius:3px;box-shadow:0 2px 2px rgba(0,0,0,.04)}.mec-add-event-popup .mec-recent-color-sec{display:block!important;font-size:12px;color:#707070}.mec-add-event-popup .mec-form-row.mec-available-color-row{border:2px dashed #dce2e3;padding:13px 20px;background:#fcfcfc;border-radius:3px}.mec-add-event-popup .wp-color-result-text{background:#f7f7f7;border-radius:unset;border-left:none;color:#555;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.mec-add-event-popup .mec-form-row.mec-available-color-row .mec-color{width:12px;height:12px;position:absolute;top:-5px;left:0;z-index:99}.mec-add-event-popup span.mec-color-meta-box-popup{display:inline-block!important;width:20px;height:20px;border-radius:50px;position:absolute;top:1px;left:6px;z-index:9}.mec-add-event-popup span.mec-recent-color-sec-wrap{width:20px;height:20px;display:inline-block;margin-right:12px;margin-top:7px;margin-left:-6px;position:relative}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2{background:url(../../assets/img/popup/sixth-step.png) no-repeat 95% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4{width:auto}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/calendar_icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4 input{padding-left:36px;width:148px;padding:22px 17px 22px 34px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form select{height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#707070;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-form-row .time-dv{float:left;margin-left:-2px;margin-right:4px;margin-top:12px;color:#b1b2b4}div#mec_meta_box_date_form .mec-form-row{margin-bottom:9px}.mec-add-event-popup .mec-steps-content.mec-steps-content-2{margin-top:60px}.mec-add-event-popup .mec-steps-content.mec-steps-content-2 .mec-form-row.mec-all-day-event label{font-size:14px;color:#707070}.mec-add-event-popup .mec-steps-content.mec-steps-content-2 .mec-form-row.mec-all-day-event{margin-top:13px!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-3,.mec-add-event-popup .mec-steps-content.mec-steps-content-4{margin-top:-9px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-3{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/add-organizer.png) no-repeat 95% 70%}.nice-select.mec_popup_location_id.wn-mec-select-popup,.nice-select.mec_popup_organizer_id.wn-mec-select-popup{position:relative;width:166px;padding-left:36px}.nice-select.mec_popup_location_id.wn-mec-select-popup:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/pointer.png) no-repeat center center;position:absolute;top:17px;left:17px}.nice-select.mec_popup_organizer_id.wn-mec-select-popup:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/pointer.png) no-repeat center center;position:absolute;top:17px;left:17px}#mec_popup_event button#mec_popup_add_location:before,#mec_popup_event button#mec_popup_add_organizer:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content-container .nice-select.mec_popup_location_id.wn-mec-select-popup.open .list li,.mec-add-event-popup .mec-steps-content-container .nice-select.mec_popup_organizer_id.wn-mec-select-popup.open .list li{line-height:32px!important;min-height:32px!important}#mec_popup_event .mec-steps-content .mec-tooltip{bottom:8px}#mec_popup_event .mec-steps-content .mec-tooltip .dashicons-before:before{color:#008aff}#mec_popup_event button#mec_organizer_thumbnail_button,#mec_popup_event button#mec_popup_add_location,#mec_popup_event button#mec_popup_add_organizer{background:#008aff;border-radius:3px;border:none;color:#fff;width:146px;height:46px;margin-left:10px;box-shadow:0 3px 3px 0 rgba(0,138,255,.22);font-size:14px;cursor:pointer;transition:all .2s ease;outline:0;position:relative;padding-left:20px}#mec_popup_event button#mec_organizer_thumbnail_button:hover,#mec_popup_event button#mec_popup_add_location:hover,#mec_popup_event button#mec_popup_add_organizer:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}#mec_popup_event label[for=mec_location_dont_show_map]{font-size:14px;margin-left:4px;margin-top:12px!important;display:inline-block;margin-bottom:7px}#mec_popup_event input#mec_location_dont_show_map{margin-top:9px!important}#mec_popup_event div#mec_location_new_container,#mec_popup_event div#mec_organizer_new_container{border-top:2px dashed #dce2e3;width:360px;padding-top:25px;margin-top:20px}#mec_popup_event div#mec_location_new_container input,#mec_popup_event div#mec_organizer_new_container input{width:100%;height:46px;border:none;border-radius:3px;padding-left:17px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}#mec_popup_event div#mec_location_new_container .description,#mec_popup_event div#mec_organizer_new_container .description{border:none;padding:0;margin:0;margin-left:16px;line-height:19px;font-size:12px;color:#707070;font-style:normal;margin-top:-4px;display:block}#mec_popup_event .mec-form-row.mec-lat-lng-row input{width:44%!important}#mec_popup_event .mec-form-row.mec-lat-lng-row input:first-of-type{margin-right:10px}#mec_popup_event div#mec_organizer_new_container{margin-top:30px}#mec_popup_event div#mec_organizer_new_container .mec-form-row:first-of-type .mec-col-6:first-of-type{margin-right:14px!important}#mec_popup_event div#mec_organizer_new_container .mec-form-row:first-of-type .mec-col-6{width:48%;margin:0}#mec_popup_event button#mec_organizer_thumbnail_button:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/picture.png) no-repeat center center;position:absolute;top:16px;left:15px}#mec_popup_event button#mec_organizer_thumbnail_button{width:96%;padding-left:30px}.mec-add-event-popup .mec-steps-content.mec-steps-content-4 div#mec_organizer_thumbnail_img{position:absolute;right:10px;top:-20px}.mec-add-event-popup .mec-steps-content.mec-steps-content-4 div#mec_organizer_thumbnail_img img{max-width:110px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input{height:30px;border:none;border-radius:3px;padding-left:10px;margin-left:20px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);float:right;margin-top:-4px}.mec-add-event-popup .mec-steps-content.mec-steps-content-5{width:326px;margin-top:48px}.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li{display:inline-block;background:#fff;border:none;cursor:pointer;padding:12px 18px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;margin-right:10px;height:42px;color:#008aff;font-size:14px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li.mec-categories-tab-selected,.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li:hover{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3)}.mec-add-event-popup .mec-categories-tab-contents{background:#fff;padding:20px;border:2px dashed #dce2e3;margin-bottom:13px;margin-top:-5px}.mec-add-event-popup .mec-categories-tab-contents ul,.mec-add-event-popup .mec-categories-tab-contents ul li:last-of-type{margin:0}.mec-add-event-popup .mec-categories-tab-contents ul li{font-size:14px;color:#707070}.mec-add-event-popup .mec-categories-tab-contents.mec-form-row input[type=checkbox]{margin-top:0}.mec-add-event-popup span#mec_popup_new_category_button{cursor:pointer;position:relative;padding-left:18px;font-size:14px}.mec-add-event-popup span#mec_popup_new_category_button:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus-blue.png) no-repeat center center;position:absolute;top:3px;left:0}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content.mec-steps-content-6.mec-steps-content-active{margin-top:-10px;height:70%}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-tinymce.mce-container.mce-panel{height:100%;border:1px solid #ececec!important;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)!important;border-radius:3px!important;overflow:hidden}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container-body.mce-stack-layout{height:100%;background:#f5f5f5}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container *{border:none!important;box-shadow:none!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item{height:90%}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-statusbar.mce-container.mce-panel.mce-stack-layout-item.mce-last{display:none!important}.mec-add-event-popup .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item iframe{height:100%!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-7.mec-steps-content-active{height:70%;background:#fff;border:2px dashed #dce2e3;border-radius:3px;text-align:center;vertical-align:middle;margin-top:-10px;position:relative}.mec-add-event-popup .mec-event-popup-featured-image-wrapper{display:flex;justify-content:center;align-items:center;height:100%}.mec-add-event-popup button#mec_popup_upload_image_button{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3);display:inline-block;border:none;cursor:pointer;padding:12px 18px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;height:42px;font-size:14px;margin-right:0}.mec-add-event-popup div#mec_event_popup_featured_image_preview img{max-height:300px;max-width:740px;margin-top:20px;margin-bottom:0}.mec-add-event-popup button#mec_popup_upload_image_button:hover{background:#000;box-shadow:0 3px 3px 0 rgba(0,0,0,.3)}.mec-add-event-popup .mec-event-popup-featured-image-wrapper span i{border-radius:50px;color:#bb353f;right:10px;top:10px;font-size:30px;position:absolute;cursor:pointer}.mec-add-event-popup .mec-steps-content.mec-steps-content-8{height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results .mec-steps-8-results-wrap{display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-loading .mec-loader{left:calc(50% - 2.5em);top:calc(50% - 2.5em)}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results{height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view{display:inline-block;background:#fff;border:none;cursor:pointer;padding:12px 22px 12px 36px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;margin-right:10px;height:46px;font-size:14px;box-shadow:0 3px 3px 0 rgba(0,0,0,.04);text-decoration:none;color:#000;position:relative;line-height:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view:hover{background-color:#000;color:#fff}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/eye.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3);display:inline-block;border:none;cursor:pointer;padding:11px 22px 11px 36px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;height:46px;font-size:14px;margin-right:0;position:relative;line-height:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new:hover{background:#000;box-shadow:0 3px 3px 0 rgba(0,0,0,.3)}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-popup-final-buttons{margin-top:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results-wrap h3{font-size:26px;font-weight:400}.mec-go-pro-content-title{font-size:20px;font-weight:600;margin-bottom:12px}.mec-go-pro-features-wrap p{font-size:14px}.mec-go-pro-features-wrap .mec-addons-notification-box-content{width:calc(100% - 590px);display:inline-block;padding-left:20px}.mec-go-pro-features-wrap ul{float:left;width:50%;margin:0 0 12px}.mec-go-pro-features-wrap ul li{margin-bottom:1px;font-size:13px;color:#717479;padding-left:18px;position:relative}.mec-go-pro-features-wrap ul li:before{position:absolute;left:-1px;top:6px;color:#36da74;font-size:13px;font-weight:700;vertical-align:middle;font-family:simple-line-icons;border-radius:50%;padding:0;width:13px;height:13px;line-height:13px;z-index:3;background:rgba(64,241,147,.12);content:"\e080"}.post-type-mec-books.taxonomy-mec_coupon .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-mec_category .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-mec_label .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-post_tag .metabox-prefs .screen-options label,.taxonomy-mec_location .metabox-prefs .screen-options label,.taxonomy-mec_organizer .metabox-prefs .screen-options label,.taxonomy-mec_speaker .metabox-prefs .screen-options label{margin-top:-15px}.post-type-mec-books.taxonomy-mec_coupon #mec_thumbnail_img img,.post-type-mec-events.taxonomy-mec_category #mec_thumbnail_img img,.post-type-mec-events.taxonomy-mec_label #mec_thumbnail_img img,.post-type-mec-events.taxonomy-post_tag #mec_thumbnail_img img,.taxonomy-mec_location #mec_thumbnail_img img,.taxonomy-mec_organizer #mec_thumbnail_img img,.taxonomy-mec_speaker #mec_thumbnail_img img{margin:0 0 20px 0;border:solid 1px #ddd;border-radius:2px}.post-type-mec-books.taxonomy-mec_coupon .form-wrap label,.post-type-mec-events.taxonomy-mec_category .form-wrap label,.post-type-mec-events.taxonomy-mec_label .form-wrap label,.post-type-mec-events.taxonomy-post_tag .form-wrap label,.taxonomy-mec_location .form-wrap label,.taxonomy-mec_organizer .form-wrap label,.taxonomy-mec_speaker .form-wrap label{padding:0;margin:10px 0}.post-type-mec-books.taxonomy-mec_coupon input[type=number],.post-type-mec-books.taxonomy-mec_coupon input[type=search],.post-type-mec-books.taxonomy-mec_coupon input[type=text],.post-type-mec-books.taxonomy-mec_coupon input[type=url],.post-type-mec-books.taxonomy-mec_coupon select,.post-type-mec-books.taxonomy-mec_coupon textarea,.post-type-mec-events.taxonomy-mec_category input[type=number],.post-type-mec-events.taxonomy-mec_category input[type=search],.post-type-mec-events.taxonomy-mec_category input[type=text],.post-type-mec-events.taxonomy-mec_category input[type=url],.post-type-mec-events.taxonomy-mec_category select,.post-type-mec-events.taxonomy-mec_category textarea,.post-type-mec-events.taxonomy-mec_label input[type=number],.post-type-mec-events.taxonomy-mec_label input[type=search],.post-type-mec-events.taxonomy-mec_label input[type=text],.post-type-mec-events.taxonomy-mec_label input[type=url],.post-type-mec-events.taxonomy-mec_label select,.post-type-mec-events.taxonomy-mec_label textarea,.post-type-mec-events.taxonomy-post_tag input[type=number],.post-type-mec-events.taxonomy-post_tag input[type=search],.post-type-mec-events.taxonomy-post_tag input[type=text],.post-type-mec-events.taxonomy-post_tag input[type=url],.post-type-mec-events.taxonomy-post_tag select,.post-type-mec-events.taxonomy-post_tag textarea,.taxonomy-mec_location input[type=number],.taxonomy-mec_location input[type=search],.taxonomy-mec_location input[type=text],.taxonomy-mec_location input[type=url],.taxonomy-mec_location select,.taxonomy-mec_location textarea,.taxonomy-mec_organizer input[type=number],.taxonomy-mec_organizer input[type=search],.taxonomy-mec_organizer input[type=text],.taxonomy-mec_organizer input[type=url],.taxonomy-mec_organizer select,.taxonomy-mec_organizer textarea,.taxonomy-mec_speaker input[type=number],.taxonomy-mec_speaker input[type=search],.taxonomy-mec_speaker input[type=text],.taxonomy-mec_speaker input[type=url],.taxonomy-mec_speaker select,.taxonomy-mec_speaker textarea{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02);margin-bottom:15px}.post-type-mec-books.taxonomy-mec_coupon textarea,.post-type-mec-events.taxonomy-mec_category textarea,.post-type-mec-events.taxonomy-mec_label textarea,.post-type-mec-events.taxonomy-post_tag textarea,.taxonomy-mec_location textarea,.taxonomy-mec_organizer textarea,.taxonomy-mec_speaker textarea{min-height:86px}.post-type-mec-books.taxonomy-mec_coupon .button,.post-type-mec-books.taxonomy-mec_coupon .button-secondary,.post-type-mec-events.taxonomy-mec_category .button,.post-type-mec-events.taxonomy-mec_category .button-secondary,.post-type-mec-events.taxonomy-mec_label .button,.post-type-mec-events.taxonomy-mec_label .button-secondary,.post-type-mec-events.taxonomy-post_tag .button,.post-type-mec-events.taxonomy-post_tag .button-secondary,.taxonomy-mec_location .button,.taxonomy-mec_location .button-secondary,.taxonomy-mec_organizer .button,.taxonomy-mec_organizer .button-secondary,.taxonomy-mec_speaker .button{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;linear-height:1.4;padding:6px 22px}.post-type-mec-books.taxonomy-mec_coupon .mec_upload_image_button,.post-type-mec-events.taxonomy-mec_category .mec_upload_image_button,.post-type-mec-events.taxonomy-mec_label .mec_upload_image_button,.post-type-mec-events.taxonomy-post_tag .mec_upload_image_button,.taxonomy-mec_location .mec_upload_image_button,.taxonomy-mec_organizer .mec_upload_image_button,.taxonomy-mec_speaker .mec_upload_image_button{margin-bottom:20px}.post-type-mec-books.taxonomy-mec_coupon .button-secondary:focus,.post-type-mec-books.taxonomy-mec_coupon .button-secondary:hover,.post-type-mec-books.taxonomy-mec_coupon .button.focus,.post-type-mec-books.taxonomy-mec_coupon .button:focus,.post-type-mec-books.taxonomy-mec_coupon .button:hover,.post-type-mec-events.taxonomy-mec_category .button-secondary:focus,.post-type-mec-events.taxonomy-mec_category .button-secondary:hover,.post-type-mec-events.taxonomy-mec_category .button.focus,.post-type-mec-events.taxonomy-mec_category .button:focus,.post-type-mec-events.taxonomy-mec_category .button:hover,.post-type-mec-events.taxonomy-mec_label .button-secondary:focus,.post-type-mec-events.taxonomy-mec_label .button-secondary:hover,.post-type-mec-events.taxonomy-mec_label .button.focus,.post-type-mec-events.taxonomy-mec_label .button:focus,.post-type-mec-events.taxonomy-mec_label .button:hover,.post-type-mec-events.taxonomy-post_tag .button-secondary:focus,.post-type-mec-events.taxonomy-post_tag .button-secondary:hover,.post-type-mec-events.taxonomy-post_tag .button.focus,.post-type-mec-events.taxonomy-post_tag .button:focus,.post-type-mec-events.taxonomy-post_tag .button:hover,.taxonomy-mec_location .button-secondary:focus,.taxonomy-mec_location .button-secondary:hover,.taxonomy-mec_location .button.focus,.taxonomy-mec_location .button:focus,.taxonomy-mec_location .button:hover,.taxonomy-mec_organizer .button-secondary:focus,.taxonomy-mec_organizer .button-secondary:hover,.taxonomy-mec_organizer .button.focus,.taxonomy-mec_organizer .button:focus,.taxonomy-mec_organizer .button:hover,.taxonomy-mec_speaker .button-secondary:focus,.taxonomy-mec_speaker .button-secondary:hover,.taxonomy-mec_speaker .button.focus,.taxonomy-mec_speaker .button:focus,.taxonomy-mec_speaker .button: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;color:#fff}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description,.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form{padding-left:105px!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form .fserv-field{width:40.33333%!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description{position:relative!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container:before{background:url(../img/newsletter-document.png) no-repeat left top;content:"";width:100px;height:100px;position:absolute;top:96px;left:12px}@media (max-width:480px){.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description,.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form{padding-left:90px!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form .fserv-field{width:40%!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container:before{top:100px;left:10px}}.post-type-mec-events.taxonomy-mec_label .button.wp-color-result{background:0 0;text-align:right;padding:0 0 0 32px;border-radius:4px;box-shadow:unset;border:1px solid #ddd}.post-type-mec-events.taxonomy-mec_label .button.wp-color-result .wp-color-result-text{height:30px}.post-type-mec-events.taxonomy-mec_label .wp-picker-container input[type=text].wp-color-picker{width:70px;margin-top:-10px;height:32px}.post-type-mec-events.taxonomy-mec_label .wp-picker-default{height:32px;padding-top:2px;padding-bottom:2px}.post-type-mec-events.taxonomy-mec_label .wp-picker-container .iris-picker{margin-top:-10px}.mec-admin-dark-mode #mec_calendar_filter,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #mec_metabox_booking,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #mec_metabox_details,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left,.mec-admin-dark-mode .w-box,.mec-admin-dark-mode .w-box-content pre,.mec-admin-dark-mode .w-clearfix.w-box.mec-addons-notification-box-wrap span,.mec-admin-dark-mode .w-clearfix.w-box.mec-cmsg-notification-box-wrap span,.mec-admin-dark-mode .wns-be-main,.mec-admin-dark-mode .wns-be-main .mec-container,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix .mec-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-pro-notice .info-msg,.mec-admin-dark-mode.post-type-mec-books .postbox,.mec-admin-dark-mode.post-type-mec-events #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields li,.mec-admin-dark-mode.post-type-mec-events #post-status-info,.mec-admin-dark-mode.post-type-mec-events #screen-meta,.mec-admin-dark-mode.post-type-mec-events #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-events .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .components-popover__content,.mec-admin-dark-mode.post-type-mec-events .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .postbox,.mec-admin-dark-mode.post-type-mec-events .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-events .wp-tab-active,.mec-admin-dark-mode.post-type-mec-events .wp-tab-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec-events ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec-events ul.category-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars #major-publishing-actions,.mec-admin-dark-mode.post-type-mec_calendars #post-status-info,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec_calendars .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .postbox,.mec-admin-dark-mode.post-type-mec_calendars .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-active,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec_calendars ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars ul.category-tabs li.tabs{background:#1f1f1f;color:#fff}.mec-admin-dark-mode .mec-form-row .mec-box,.mec-admin-dark-mode .mec-form-row input[type=checkbox],.mec-admin-dark-mode .mec-form-row ul.mec-message-categories li ul,.mec-admin-dark-mode .mec-meta-box-fields .mec-box,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-faq-accordion-trigger a{background:#282828;border-color:#353535;box-shadow:0 1px 6px -2px #000}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix .mec-form-row.mec-syn-schedule,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields,.mec-admin-dark-mode.post-type-mec-events .select2-search--dropdown,.mec-admin-dark-mode.post-type-mec_calendars .select2-search--dropdown{background:#282828;border-color:#353535}.mec-admin-dark-mode .select2-container--default .select2-selection--multiple .select2-selection__choice{color:#000}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_gateways_form li .mec-gateway-options-form,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #payment_gateways_option li .mec-gateway-options-form,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list{background:#000;box-shadow:0 2px 12px -5px #000}.mec-admin-dark-mode .extra .w-box-head,.mec-admin-dark-mode .mec-form-row ul.mec-message-categories,.mec-admin-dark-mode .mec-message-categories li.mec-acc-label,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mce-btn-group:not(:first-child),.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-search--dropdown .select2-search__field,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-custom-msg-notification-set-box.extra,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple .select2-selection__choice,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-footer,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar:before,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-core-ui .quicktags-toolbar input.button.button-small,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-books .postbox,.mec-admin-dark-mode.post-type-mec-books .postbox .hndle,.mec-admin-dark-mode.post-type-mec-books .postbox hr,.mec-admin-dark-mode.post-type-mec-events #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-events #post-status-info,.mec-admin-dark-mode.post-type-mec-events #screen-meta,.mec-admin-dark-mode.post-type-mec-events #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-events .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .components-popover__content,.mec-admin-dark-mode.post-type-mec-events .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff .stuffbox>h3,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff h2.hndle,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff h3.hndle,.mec-admin-dark-mode.post-type-mec-events .postbox,.mec-admin-dark-mode.post-type-mec-events .postbox h2,.mec-admin-dark-mode.post-type-mec-events .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .wp-editor-container,.mec-admin-dark-mode.post-type-mec-events .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-events .wp-tab-active,.mec-admin-dark-mode.post-type-mec-events .wp-tab-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec-events ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec-events ul.category-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars #major-publishing-actions,.mec-admin-dark-mode.post-type-mec_calendars #post-status-info,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec_calendars .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option,.mec-admin-dark-mode.post-type-mec_calendars .mec-sed-methods li,.mec-admin-dark-mode.post-type-mec_calendars .postbox,.mec-admin-dark-mode.post-type-mec_calendars .postbox h2,.mec-admin-dark-mode.post-type-mec_calendars .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .wp-editor-container,.mec-admin-dark-mode.post-type-mec_calendars .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-active,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec_calendars ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars ul.category-tabs li.tabs{border-color:#353535}.mec-admin-dark-mode #mec_calendar_filter .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=number],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=text],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=url],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row select,.mec-admin-dark-mode #mec_calendar_filter .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_booking .mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_booking .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=number],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=text],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=url],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row select,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode #mec_metabox_booking .mec-meta-box-fields .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_details .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=number],.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=text],.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=url],.mec-admin-dark-mode #mec_metabox_details .mec-form-row select,.mec-admin-dark-mode #mec_metabox_details .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_details .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode #mec_metabox_details .mec-meta-box-fields .mec-form-row input[type=checkbox],.mec-admin-dark-mode .mec-addon-box-version,.mec-admin-dark-mode .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode .mec-form-row input[type=number],.mec-admin-dark-mode .mec-form-row input[type=text],.mec-admin-dark-mode .mec-form-row input[type=url],.mec-admin-dark-mode .mec-form-row select,.mec-admin-dark-mode .mec-form-row textarea,.mec-admin-dark-mode .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-addons,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-select-event-wrap .select2-container--default .select2-selection--single,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-sendmail-form-wrap,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-sendmail-wrap,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-send-email-form-wrap input.widefat,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-results__option--highlighted[aria-selected],.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-search--dropdown .select2-search__field,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .wp-switch-editor,.mec-admin-dark-mode.m-e-calendar_page_MEC-report div.mce-toolbar-grp,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-invoice-custom-css,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #titlediv #title,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .quicktags-toolbar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-results__option[aria-selected],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-core-ui .quicktags-toolbar input.button.button-small,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=checkbox],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=color],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=date],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=datetime-local],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=datetime],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=email],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=month],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=password],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=radio],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=search],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=tel],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=time],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=url],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=week],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings textarea,.mec-admin-dark-mode.post-type-mec-books .wn-mec-select,.mec-admin-dark-mode.post-type-mec-books input[type=email],.mec-admin-dark-mode.post-type-mec-books input[type=number],.mec-admin-dark-mode.post-type-mec-books input[type=text],.mec-admin-dark-mode.post-type-mec-books input[type=url],.mec-admin-dark-mode.post-type-mec-books select,.mec-admin-dark-mode.post-type-mec-books textarea,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_field_types button,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields button,.mec-admin-dark-mode.post-type-mec-events #titlediv #title,.mec-admin-dark-mode.post-type-mec-events .components-form-token-field__input-container,.mec-admin-dark-mode.post-type-mec-events .components-panel__body,.mec-admin-dark-mode.post-type-mec-events .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.post-type-mec-events .mec-certain-day>div,.mec-admin-dark-mode.post-type-mec-events .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.post-type-mec-events .mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-admin-dark-mode.post-type-mec-events .mec-xi-google-import-events .mec-select-deselect-actions li,.mec-admin-dark-mode.post-type-mec-events .select2-dropdown,.mec-admin-dark-mode.post-type-mec-events .select2-results__option[aria-selected],.mec-admin-dark-mode.post-type-mec-events .wp-admin p label input[type=checkbox],.mec-admin-dark-mode.post-type-mec-events input[type=checkbox],.mec-admin-dark-mode.post-type-mec-events input[type=color],.mec-admin-dark-mode.post-type-mec-events input[type=date],.mec-admin-dark-mode.post-type-mec-events input[type=datetime-local],.mec-admin-dark-mode.post-type-mec-events input[type=datetime],.mec-admin-dark-mode.post-type-mec-events input[type=email],.mec-admin-dark-mode.post-type-mec-events input[type=month],.mec-admin-dark-mode.post-type-mec-events input[type=number],.mec-admin-dark-mode.post-type-mec-events input[type=password],.mec-admin-dark-mode.post-type-mec-events input[type=radio],.mec-admin-dark-mode.post-type-mec-events input[type=search],.mec-admin-dark-mode.post-type-mec-events input[type=tel],.mec-admin-dark-mode.post-type-mec-events input[type=text],.mec-admin-dark-mode.post-type-mec-events input[type=time],.mec-admin-dark-mode.post-type-mec-events input[type=url],.mec-admin-dark-mode.post-type-mec-events input[type=week],.mec-admin-dark-mode.post-type-mec-events select,.mec-admin-dark-mode.post-type-mec-events textarea,.mec-admin-dark-mode.post-type-mec_calendars #titlediv #title,.mec-admin-dark-mode.post-type-mec_calendars .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode.post-type-mec_calendars .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.post-type-mec_calendars .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode.post-type-mec_calendars .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.post-type-mec_calendars .select2-container--default .select2-selection--multiple .select2-selection__choice,.mec-admin-dark-mode.post-type-mec_calendars .select2-dropdown,.mec-admin-dark-mode.post-type-mec_calendars .select2-results__option[aria-selected],.mec-admin-dark-mode.post-type-mec_calendars input[type=checkbox],.mec-admin-dark-mode.post-type-mec_calendars input[type=color],.mec-admin-dark-mode.post-type-mec_calendars input[type=date],.mec-admin-dark-mode.post-type-mec_calendars input[type=datetime-local],.mec-admin-dark-mode.post-type-mec_calendars input[type=datetime],.mec-admin-dark-mode.post-type-mec_calendars input[type=email],.mec-admin-dark-mode.post-type-mec_calendars input[type=month],.mec-admin-dark-mode.post-type-mec_calendars input[type=number],.mec-admin-dark-mode.post-type-mec_calendars input[type=password],.mec-admin-dark-mode.post-type-mec_calendars input[type=radio],.mec-admin-dark-mode.post-type-mec_calendars input[type=search],.mec-admin-dark-mode.post-type-mec_calendars input[type=tel],.mec-admin-dark-mode.post-type-mec_calendars input[type=text],.mec-admin-dark-mode.post-type-mec_calendars input[type=time],.mec-admin-dark-mode.post-type-mec_calendars input[type=url],.mec-admin-dark-mode.post-type-mec_calendars input[type=week],.mec-admin-dark-mode.post-type-mec_calendars select,.mec-admin-dark-mode.post-type-mec_calendars textarea,.mec-admin-dark-mode.toplevel_page_mec-intro .w-box.mec-activation input[name=MECPurchaseCode],.mec-admin-dark-mode.toplevel_page_mec-intro .w-box.mec-activation input[type=radio]+label span,.mec-select-deselect-actions li{background:#282828;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=checkbox]:checked,.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=checkbox]:checked,.mec-admin-dark-mode .mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-admin-dark-mode .mec-sed-methods li:before{box-shadow:0 1px 6px -2px #000;border-color:#353535;background:#222}.mec-admin-dark-mode .mec-switcher input+label,.mec-admin-dark-mode .mec-switcher input+label:before,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-results__option{background-color:#000}.mec-admin-dark-mode .wn-mec-select .option.focus .wn-img-sh img,.mec-admin-dark-mode .wn-mec-select .option.selected.focus .wn-img-sh img,.mec-admin-dark-mode .wn-mec-select .option:hover .wn-img-sh img{background:0 0}.mec-admin-dark-mode .ui-datepicker{background-color:#000;border:1px solid #000;box-shadow:0 0 8px rgba(33,33,33,.6)}.mec-admin-dark-mode .ui-datepicker.ui-widget td a,.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article .mec-detail-button,.mec-admin-dark-mode.post-type-mec-events,.mec-admin-dark-mode.post-type-mec-events .postbox h2,.mec-admin-dark-mode.post-type-mec_calendars .postbox h2{color:#d2d2d2;background:#282828}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul *{background:#282828}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul>ul>li,.mec-admin-dark-mode #mec_styles_form #mec_styles_CSS,.mec-admin-dark-mode .mec-message-categories li.mec-acc-label,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields{background:#000}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-admin-dark-mode .mec-active,.mec-admin-dark-mode.post-type-mec-events .select2-container--default .select2-results__option--highlighted[aria-selected]{background:#888!important}.mec-admin-dark-mode.post-type-mec_calendars .mec-calendar-metabox .wn-mec-select .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #353535,0 2px 6px rgba(0,0,0,.07)}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .ui-sortable-handle,.mec-admin-dark-mode #mec_gateways_form li .mec-gateway-options-form,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .ui-sortable-handle,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_metabox_details .ui-sortable-handle,.mec-admin-dark-mode #payment_gateways_option li .mec-gateway-options-form,.mec-admin-dark-mode .mec-meta-box-fields h4{border-color:#000!important}.mec-admin-dark-mode .wns-be-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-admin-dark-mode.post-type-mec-events #wp-content-editor-tools,.mec-admin-dark-mode.post-type-mec_calendars,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .list{background-color:#282828;border-color:#353535}.mec-admin-dark-mode .mec-intro-section-ifarme iframe,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container *,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container *{background:#1f1f1f!important;border-color:#353535!important}.mec-admin-dark-mode .block-editor-block-types-list__item-icon,.mec-admin-dark-mode .block-editor-block-types-list__item-title,.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article h4.mec-event-title,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-selection--single .select2-selection__rendered,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .about-wrap h3,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container .fserv-form-name,.mec-admin-dark-mode.toplevel_page_mec-intro .about-wrap h3,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container .fserv-form-name{color:#d2d2d2!important}.mec-admin-dark-mode .wns-be-sidebar li a:hover,.mec-admin-dark-mode .wns-be-sidebar li:hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option:hover{background:#000;color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar li a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h2,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h3,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head span,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-faq-accordion-trigger a,.mec-admin-dark-mode.post-type-mec-books .postbox h1,.mec-admin-dark-mode.post-type-mec-books .postbox h2,.mec-admin-dark-mode.post-type-mec-books .postbox h3,.mec-admin-dark-mode.post-type-mec-events .components-panel__body-toggle.components-button,.mec-admin-dark-mode.post-type-mec-events .wrap h1.wp-heading-inline,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option .wn-mec-text{color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#282828;background:linear-gradient(95deg,#282828 0,#222 50%,#282828 100%);color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar li.active ul.subsection{background:#282828;border-bottom:1px solid #353535}.mec-admin-dark-mode .wns-be-sidebar li .subsection a{background:#282828;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main{box-shadow:0 2px 12px -5px #000}.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h4,.mec-admin-dark-mode .wns-be-sidebar .mec-settings-menu .mec-settings-submenu a,.mec-admin-dark-mode li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option.focus,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option.selected.focus,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option:hover{background:#000;color:#d2d2d2;border-color:#353535}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option{background:#000!important;color:#fff!important}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons,.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .about-wrap h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-report,.mec-admin-dark-mode.m-e-calendar_page_MEC-report h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings div.mce-panel,.mec-admin-dark-mode.m-e-calendar_page_MEC-support,.mec-admin-dark-mode.m-e-calendar_page_MEC-support h1,.mec-admin-dark-mode.post-type-mec-books,.mec-admin-dark-mode.post-type-mec-books h1,.mec-admin-dark-mode.post-type-mec_calendars,.mec-admin-dark-mode.post-type-mec_calendars .wrap h1.wp-heading-inline,.mec-admin-dark-mode.toplevel_page_mec-intro,.mec-admin-dark-mode.toplevel_page_mec-intro .about-wrap h1{background:#282828!important;color:#d2d2d2}.mec-admin-dark-mode.m-e-calendar_page_MEC-report .w-theme-version,.mec-admin-dark-mode.toplevel_page_mec-intro .w-theme-version{box-shadow:0 3px 30px -4px #000;background:#000;background:linear-gradient(95deg,#000 0,#282828 50%,#1f1f1f 100%)}.mec-admin-dark-mode .mec-sed-methods li.active,.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h2,.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap .nav-tab-wrapper .nav-tab,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap h2.nav-tab-wrapper,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple .select2-selection__choice{color:#d2d2d2;background:#000}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li a:hover{color:#008aff}.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap .nav-tab-wrapper .nav-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)}.mec-admin-dark-mode .wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#1f1f1f url(../img/webnus-logo2.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-footer,.mec-admin-dark-mode.post-type-mec-books #titlediv #title,.mec-admin-dark-mode.post-type-mec-books .postbox h1{background:#1f1f1f!important}.mec-admin-dark-mode .mec-settings-menu .mec-settings-submenu:after,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#353535}.mec-admin-dark-mode .mec-switcher input:checked+label:before{background-color:#000;background:linear-gradient(95deg,#1f1f1f 0,#222 50%,#000 100%)}.mec-admin-dark-mode .mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #000}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup,.mec-admin-dark-mode .lity.mec-add-event-popup,.mec-admin-dark-mode .lity.mec-add-shortcode-popup,.mec-admin-dark-mode .mec-add-shortcode-popup div#mec_popup_shortcode{background:#282828}.mec-admin-dark-mode .lity.mec-add-event-popup .lity-content,.mec-admin-dark-mode .lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(0,0,0,.55)}.mec-admin-dark-mode .mec-add-event-popup .mec-meta-box-colors-container,.mec-admin-dark-mode .mec-steps-container,.mec-admin-dark-mode .mec-steps-header{background:#000}.mec-admin-dark-mode .mec-add-event-popup div#mec_popup_event,.mec-admin-dark-mode .mec-steps-panel{background:#1f1f1f}.mec-admin-dark-mode button.lity-close{background:#000;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{border:2px solid #282828;background:#000!important}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input{background:#282828;border-color:#1f1f1f;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{box-shadow:0 3px 5px rgba(0,0,0,.2)}.mec-admin-dark-mode .nicescroll-cursors{background-color:#000!important}.mec-admin-dark-mode .mec-add-event-popup .mec-categories-tab-contents,.mec-admin-dark-mode .mec-add-event-popup .mec-form-row.mec-available-color-row,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content.mec-steps-content-7.mec-steps-content-active,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{border-color:#282828;background:#000}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{background:rgba(266,266,266,.35)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code,.mec-admin-dark-mode .mec-steps-content h3{color:#d2d2d2}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{margin-left:unset}.mec-admin-dark-mode .wp-picker-container .wp-color-result.button{background:inherit}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container-body.mce-stack-layout{background:#000;border-color:#000!important}.mec-admin-dark-mode .attachments-browser .media-toolbar,.mec-admin-dark-mode .media-frame-content,.mec-admin-dark-mode .media-modal-content,.mec-admin-dark-mode .media-modal-content h1,.mec-admin-dark-mode .media-modal-content h2,.mec-admin-dark-mode .media-modal-content p,.mec-admin-dark-mode .media-sidebar{background:#000;color:#d2d2d2!important;border-color:#282828}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{background-color:#000;border-color:#282828}.mec-admin-dark-mode.post-type-mec-books table.widefat,.mec-admin-dark-mode.post-type-mec_calendars table.widefat,.post-type-mec-events.mec-admin-dark-mode table.widefat{background:#1f1f1f;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-books ul.striped>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-events .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-events ul.striped>:nth-child(odd),.mec-admin-dark-mode.post-type-mec_calendars .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec_calendars ul.striped>:nth-child(odd){background:#282828;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books .widefat td,.mec-admin-dark-mode.post-type-mec-books .widefat th,.mec-admin-dark-mode.post-type-mec-events .widefat td,.mec-admin-dark-mode.post-type-mec-events .widefat th,.mec-admin-dark-mode.post-type-mec_calendars .widefat td,.mec-admin-dark-mode.post-type-mec_calendars .widefat th{border-color:#000;color:#d2d2d2}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu>li.current>a.current:after{border-right-color:#1f1f1f}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button-secondary,.mec-admin-dark-mode.post-type-mec-events .button,.mec-admin-dark-mode.post-type-mec-events .button-secondary,.mec-admin-dark-mode.post-type-mec-events .wp-heading-inline+.page-title-action,.mec-admin-dark-mode.post-type-mec_calendars .button,.mec-admin-dark-mode.post-type-mec_calendars .wp-heading-inline+.page-title-action{color:#d2d2d2!important;border-color:#353535!important;background:#0000!important}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button-secondary:hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button.hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button:hover,.mec-admin-dark-mode.post-type-mec-events .button-secondary:hover,.mec-admin-dark-mode.post-type-mec-events .button.hover,.mec-admin-dark-mode.post-type-mec-events .button:hover,.mec-admin-dark-mode.post-type-mec_calendars .button-secondary:hover,.mec-admin-dark-mode.post-type-mec_calendars .button.hover,.mec-admin-dark-mode.post-type-mec_calendars .button:hover{background:#000!important;border-color:#333!important;color:#fff!important}.mec-admin-dark-mode.post-type-mec-events .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #282828,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-color-result-text,.mec-admin-dark-mode.post-type-mec-events .wp-color-result-text{border-left:1px solid #353535;color:#d2d2d2;background:#000}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-search-settings{color:#d2d2d2;background:#282828}.mec-admin-dark-mode.post-type-mec_calendars .mec-switcher input+label:after,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option .wn-hover-img-sh img{background:#282828}.mec-metabox-head-version img,.mec-metabox-head-version p{float:left}.mec-metabox-head-version a{float:right}.mec-metabox-head-version p{margin-top:3px;margin-left:5px;margin-bottom:34px}h3.mec-metabox-feed-head{border-top:1px solid #ccc}div#mec_widget_news_features .inside{padding:0}.mec-metabox-head-wrap{padding:0 12px}#dashboard-widgets h3.mec-metabox-feed-head{padding:8px 12px;border-top:1px solid #eee;border-bottom:1px solid #eee;font-weight:700}.mec-metabox-feed-content{padding:0 12px}.mec-metabox-feed-content ul li a{font-weight:600;display:block}.mec-metabox-feed-content ul li p{margin:3px 0 24px}.mec-metabox-footer a span{font-size:17px;vertical-align:middle;margin-left:2px}.mec-metabox-footer a{text-decoration:none;border-right:1px solid #eee;padding-right:10px;margin-right:12px}.mec-metabox-footer{padding:11px 12px 10px;border-top:1px solid #eee}.mec-metabox-footer a:last-of-type{border:none}.mec-metabox-upcoming-wrap h3{border-top:none!important;padding-top:13px!important}.mec-metabox-head-wrap{box-shadow:0 5px 8px rgba(0,0,0,.05)}.mec-metabox-upcoming-wrap ul li span{float:left}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event{float:left;margin-left:10px}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event-date{float:right}.mec-metabox-upcoming-wrap ul{padding:0 12px;background:#f7f7f7;margin:0}.mec-metabox-upcoming-wrap ul li{border-bottom:1px solid #eee;padding:14px 0;margin-bottom:0}.mec-metabox-upcoming-wrap ul li:last-of-type{border:none}.mec-metabox-upcoming-wrap h3{margin-bottom:0!important}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event a{font-weight:600}.mec-metabox-head-version a span{vertical-align:middle}.mec-metabox-head-version a{padding-left:6px!important}#mec_widget_total_bookings .w-box.total-bookings ul li:first-child{margin-left:1px}#mec_widget_total_bookings .w-box.total-bookings ul li{padding:4px 13px 4px 13px;margin-right:4px}#mec_widget_total_bookings .w-box.total-bookings ul li:last-child{margin-right:0}#mec_widget_total_bookings{overflow:hidden}#mec_widget_total_bookings .inside,#mec_widget_total_bookings .w-box{margin:0;padding-bottom:0}#mec_widget_total_bookings .w-col-sm-12{padding:0}#mec_widget_total_bookings .w-box-content button{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important;line-height:39px;padding:0 36px;width:calc(33% - 7px);margin-bottom:14px}#mec_widget_total_bookings .w-box-content input[type=text],#mec_widget_total_bookings .w-box-content select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}#mec_widget_total_bookings .w-box-content input[type=text]{width:calc(50% - 5px)}#mec_widget_total_bookings .w-box-content select{width:calc(33% - 2px);margin-bottom:24px;margin-top:20px}div#mec-schema .mec-form-row label{display:inline-block;width:111px}.event-status-schema{background:#f7f7f7;padding:20px;margin-bottom:15px;border-radius:3px}div#mec_cancelled_reason_wrapper label{width:166px!important}.mec-fluent-hidden{display:none}#webnus-dashboard .total-bookings input[type=text],#webnus-dashboard .total-bookings select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}#webnus-dashboard select{margin-top:-5px}#mec_styles_CSS{line-height:1.6}@media(max-width:480px){.toplevel_page_mec-intro .mec-intro-section-ifarme iframe{width:auto!important;height:auto!important}.w-box.mec-activation input[name=MECPurchaseCode]{min-width:200px!important;width:330px}.w-box.mec-activation{background:#fff}.mec-addons{padding-right:15px}.mec-report-wrap{margin-top:20px}.mec-report-select-event-wrap .select2-container--default,.mec-report-select-event-wrap select.mec-reports-selectbox-dates{max-width:100%;width:100%;margin:10px 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{padding:10px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head span{font-size:13px}.mec-report-selected-event-attendees-wrap .mec-attendees-content .w-col-xs-3{word-wrap:break-word}.mec-report-selected-event-attendees-wrap .w-col-xs-3.name img{display:block}.mec-report-selected-event-attendees-wrap input[type=checkbox],.mec-report-selected-event-attendees-wrap input[type=radio]{height:.85rem;width:.85rem}.wns-be-container .dpr-btn.dpr-save-btn{margin:0!important}#mec_booking_form .mec-container{padding-left:0;padding-right:0}#mec_reg_form_fields{padding:10px}.mec-search-forms-options-container .mec-form-row select{width:100%}#mec_skin_monthly_view_start_date_container{display:unset}#mec_calendar_display_options input[type=number],#mec_calendar_display_options input[type=text],#mec_calendar_display_options select{max-width:100%!important;width:100%;margin:10px 0}#mec_select_tags.mec-create-shortcode-tab-content input[type=text]{width:auto}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding-left:14px;padding-right:14px}#mec_tickets .mec-box{padding:20px 7px}.fserv-container form,.fserv-form-description{padding:10px 15px!important}.fserv-field{display:inline-block;width:25%!important;padding:0!important;margin:0!important;margin-right:10px!important}#webnus-dashboard .total-bookings button{margin:15px 0}}
|
2 |
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
* Copyright 2011-2016 Twitter, Inc.
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:554px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:400px}#mec_exceptions_not_in_days_date{width:100%}#mec_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{width:262px}#mec_exceptions_not_in_days_date,#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker,#mec_meta_box_date_form input[type=text]{max-width:262px}#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker.mec-col-4{max-width:32.33333333%}#payment_gateways_option .mec-col-4 input[type=number],#payment_gateways_option .mec-col-4 input[type=text],#payment_gateways_option .mec-col-4 select,#payment_gateways_option .mec-col-4 textarea{width:75%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.mec-custom-msg-notification-wrap,.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.mec-custom-msg-notification-wrap .w-col-sm-12,.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select,.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row input[type=url],.mec-form-row select,.mec-form-row textarea,.mec-form-row.mec-skin-list-date-format-container input[type=text]{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:normal}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{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}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag{font-weight:500;border-radius:2px;text-shadow:none;box-shadow:0 1px 3px rgba(0,0,0,.06);background:#fff;background:linear-gradient(95deg,#fff 0,#fff 50%,#fff 100%)!important;border:1px solid #e7e7e7;transition:.24s}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag.button-primary,#webnus-dashboard .total-bookings button,button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}#webnus-dashboard .total-bookings button{line-height:39px;padding:0 36px}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag.button-primary,#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover{color:#fff!important}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover,#webnus-dashboard .total-bookings button:hover,button.fserv-button-submit:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{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)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.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}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-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-report-backtoselect-wrap,.mec-report-sendmail-form-wrap{display:none}.mec-report-select-event-wrap .select2{width:100%!important}.mec-report-select-event-wrap .select2-container--default .select2-selection--single{border-radius:2px;border:1px solid #e2e3e4;height:38px;padding-top:5px;width:100%;box-shadow:0 2px 3px rgba(0,0,0,.03)}.mec-report-select-event-wrap .select2-container--default .select2-selection--single .select2-selection__arrow{height:36px}.mec-report-select-event-wrap .select2-container--open .select2-dropdown--below{box-shadow:0 2px 8px rgba(0,0,0,.12);border-color:#d7d8d9}.select2-container--default .select2-search--dropdown .select2-search__field{box-shadow:0 2px 8px rgba(0,0,0,.06) inset;border-color:#d7d8d9;border-radius:2px}.mec-report-select-event-wrap input[type=text],.mec-report-select-event-wrap select{border:1px solid #e2e3e4;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;margin-bottom:15px;border-radius:2px;box-shadow:0 2px 3px rgba(0,0,0,.03);max-width:150px}.mec-report-select-event-wrap .select2-container--default{max-width:400px}.mec-report-select-event-wrap select.mec-reports-selectbox-dates{height:38px;min-width:260px;margin:0 0 0 10px;padding-left:15px}.mec-report-sendmail-form-wrap,.mec-report-sendmail-wrap{padding:30px 15px;background:#fff;border:1px solid #e2e3e4;margin:15px 0 5px;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-report-sendmail-wrap .w-col-sm-12:before{background:url(../img/email-document.png) no-repeat left top;content:"";display:block;width:90px;height:70px;z-index:100;float:left}.mec-report-sendmail-wrap p{margin:0 0 15px;font-size:15px;color:#7d8284}.mec-report-backtoselect-wrap button,.mec-report-sendmail-wrap .w-col-sm-12 button,.mec-send-email-form-wrap .mec-send-email-button{background:#19cde9;border:none;color:#fff;font-size:13px!important;padding:6px 16px;border-radius:2px;cursor:pointer;box-shadow:0 1px 2px rgba(25,205,233,.25);transition:all .2s ease}.mec-report-backtoselect-wrap button:hover,.mec-report-sendmail-wrap .w-col-sm-12 button:hover,.mec-send-email-form-wrap .mec-send-email-button:hover{background:#04bfdc;box-shadow:0 1px 2px rgba(25,205,233,.05)}.mec-report-backtoselect-wrap button{margin-top:15px}.mec-report-selected-event-attendees-wrap{border:1px solid #96e3ef;padding:0;margin:20px 0;border-radius:3px;box-shadow:0 2px 14px rgba(25,205,233,.1);display:none}.mec-report-sendmail-wrap{display:none}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{background:#c7eef4;border-bottom:1px solid #96e3ef;padding:15px;margin:0;border-radius:3px 3px 0 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content{margin:0;padding:8px 15px;border-bottom:1px solid #e4eef0;font-size:13px;line-height:25px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:hover{background:#f3fdfe}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:last-child{border-bottom:none;border-radius:0 0 3px 3px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content img{border-radius:25px;margin-left:8px}.mec-report-selected-event-attendees-wrap input[type=checkbox]{border-radius:3px;margin-top:0}.mec-report-selected-event-attendees-wrap .mec-attendees-head .w-col-xs-2.name{padding-left:10px}.mec-report-selected-event-attendees-wrap .checkin_status span{font-weight:600}.mec-report-selected-event-attendees-wrap .w-col-sm-12>p{text-align:center}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0;padding:0;background:0 0;max-width:674px;margin:0 auto}.mec-report-sendmail-form-wrap{padding:0 30px 45px}.mec-send-email-form-wrap h2{background:url(../img/email-document.png) no-repeat center top;padding-top:70px;font-size:22px;font-weight:600;text-align:center;padding-bottom:10px;padding-left:10px;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tools button{font-size:13px;font-weight:400;color:#444;line-height:1;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tabs button{min-height:30px}.mec-send-email-form-wrap input.widefat{min-height:40px;border:1px solid #e2e3e4;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-send-email-form-wrap input.widefat:focus{border:1px solid #96e3ef}.mec-send-email-form-wrap h4.mec-send-email-count{font-weight:400;text-align:center;margin-bottom:30px;margin-top:0;padding-top:0}.mec-send-email-form-wrap .mec-send-email-button{min-height:40px;line-height:40px;padding:0;font-size:17px!important;font-weight:600}.mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span{height:20px;padding-top:2px}.lity.mec-add-shortcode-popup{background-color:#b7e4e3}.lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}.mec-add-shortcode-popup .lity-container{width:930px;height:620px}.mec-add-shortcode-popup .lity-content:after{display:none}.mec-add-shortcode-popup div#mec_popup_shortcode{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.mec-steps-container{width:92px;text-align:center;background:#fff}.mec-steps-panel{width:calc(100% - 92px);background:#eef4f5}.mec-steps-container ul{text-align:center;display:block;margin-top:62px}.mec-steps-container ul li{width:22px;height:70px;margin:0 auto;position:relative}.mec-steps-container ul li span{border-radius:50px;background-color:rgba(26,175,251,.16);width:22px;height:22px;display:inline-block;padding-top:2px;font-size:11px;font-weight:700;color:#1aaffb}.mec-steps-container ul li:after,.mec-steps-container ul li:before{content:'';display:block;height:24px;width:2px;background:rgba(26,175,251,.16);margin-left:calc(50% - 1px)}.mec-steps-container ul li:first-of-type:before,.mec-steps-container ul li:last-of-type:after{display:none}.mec-steps-container ul li:first-of-type{height:46px}li.mec-step.mec-step-passed span,li.mec-step.mec-step-passed:after,li.mec-step.mec-step-passed:before{background-color:#2dcb73;color:#fff}.mec-steps-container img{margin-top:27px}.mec-steps-header{display:flex;background:#fff;border-radius:5px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);padding:12px 22px;margin-bottom:50px}.mec-steps-header-settings{width:65px}.mec-steps-header-userinfo{width:calc(100% - 65px)}.mec-steps-panel{padding:35px;position:relative;display:flex;flex-direction:column;justify-content:space-between}.mec-steps-header-userinfo span{display:inline-block;vertical-align:middle}.mec-steps-header-userinfo span img{height:40px;border-radius:50px;margin-right:8px;vertical-align:middle}.mec-steps-header-userinfo span.mec-steps-header-name{font-size:14px;color:#778182}span.mec-steps-header-add-text{color:#839294;font-size:12px;margin-left:5px}.mec-steps-header-settings a{height:100%;display:block;padding-top:11px;text-decoration:none;font-size:12px;color:#707070}.mec-steps-header-settings a i{color:#1aaffb;font-size:16px;vertical-align:text-top;margin-right:5px}.mec-next-previous-buttons{clear:both}.mec-next-previous-buttons button.mec-button-next{float:right;background:#008aff;border:none;color:#fff;cursor:pointer;width:123px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-next img{position:absolute;top:16px;right:18px}.mec-next-previous-buttons button{position:relative}.mec-next-previous-buttons button.mec-button-prev{background:#fff;border:none;color:#000;cursor:pointer;width:123px;text-align:right;padding:8px 15px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(11,121,125,.01);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-prev img{position:absolute;top:16px;left:18px}.mec-next-previous-buttons button.mec-button-prev:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3);color:#fff}.mec-next-previous-buttons button.mec-button-new{background:#008aff;float:right;border:none;color:#fff;cursor:pointer;width:154px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-new:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-new img{vertical-align:sub;margin-left:-3px;margin-right:8px}div#mec_popup_shortcode_form{height:calc(100% - 37px)}.mec-steps-content-container{display:flex;flex-direction:column;height:100%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/first-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:50%;position:absolute;width:360px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]{width:360px;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::-webkit-input-placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]:-ms-input-placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/add-sh-icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul{height:386px;overflow-x:hidden;overflow-y:scroll;padding-left:60px;margin-top:-22px;margin-bottom:0;position:relative;padding-bottom:19px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{width:193px!important;float:left!important;min-height:135px!important;height:160px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text input{display:block;margin:0 auto;margin-top:6px;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05);position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img{padding-top:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li .mec-step-popup-skin-text input{display:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before{width:14px;height:14px;content:'';border-radius:50px;background:#fff;display:block;position:absolute;left:calc(50% - 7px);top:24px;z-index:99;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text{position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:before{background:#008aff;border:none;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);width:16px;height:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:after{width:4px;height:4px;display:block;content:'';position:absolute;background:#fff;left:calc(50% - 1px);top:30px;z-index:999;border-radius:50px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh{display:block}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles{height:386px;overflow-x:hidden;padding-left:60px;padding-bottom:19px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label{width:193px!important;float:left!important;margin:1.66%!important;text-align:center}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label span{width:193px!important;float:left!important;min-height:135px!important;height:150px;box-sizing:border-box;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer;margin-bottom:5px;margin-top:-6px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active span{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label div{font-size:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active div{color:#008aff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles input{opacity:0;display:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-steps-content.mec-steps-content-3{margin-top:-18px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh img{width:189px;height:146px;border-radius:5px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 .nice-select{border:none;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4{top:40%;position:absolute;width:330px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 h3{font-size:13px;font-weight:400;color:#707070}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div{border:2px dashed #dce2e3;border-radius:3px;padding:20px 20px 6px;background:#fcfcfc}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div label{display:block;margin-bottom:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:300px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.focus,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected.focus,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected{font-weight:700}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.mec-add-shortcode-popup .no-csspointerevents .wn-mec-select-popup .list{display:none}.mec-add-shortcode-popup .no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input{background:#fff;position:relative;width:24px;height:24px;border:1px solid #cacece}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input:before{disaply:none}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label.active input{background:#008aff;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);border:none}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label.active input:before{background:#fff;width:6px;height:6px;top:6px;left:6px;position:absolute}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5{width:360px;margin-top:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher label{color:#707070;font-size:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher p{color:#8a8a8a;font-style:italic;font-size:12px;margin-top:7px;margin-bottom:0}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher{padding-bottom:30px;margin-bottom:34px;border-bottom:2px dashed #dce2e3;position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher:last-of-type{padding-bottom:0;margin-bottom:0;border:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher div:last-of-type label{position:absolute;top:-4px;right:0;width:52px;height:26px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input:checked+label:after{margin-left:26px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after,.mec-add-shortcode-popup .mec-switcher input+label:before{display:block;position:absolute;top:2px;left:1px;bottom:2px;content:""}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after{width:23px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6{background:url(../../assets/img/popup/sixth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-content.mec-steps-content-6{margin-top:56px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode h3{font-size:16px;font-weight:400;color:#707070;margin-top:7px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{border-radius:3px;background:rgba(154,214,222,.35);width:243px;margin:0 auto;padding:14px 17px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code{background:0 0;color:#000;font-size:14px;font-weight:600;margin-left:-11px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{border:none;background:#fff;border-radius:3px;padding:3px 8px 6px;margin-left:46px;cursor:pointer}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button:hover{background:#000;color:#fff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-results p{width:325px;text-align:center;font-size:12px;margin-top:5px;color:#8a8a8a}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center;height:182px;position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading .mec-loader{position:absolute;left:136px;top:65px}.mec-add-event-popup button.lity-close,.mec-add-shortcode-popup button.lity-close{right:0;top:-52px;border-radius:50%;width:37px;height:37px;background:#fff;color:#a2afbc;text-shadow:none;padding-top:1px;transition:all .2s ease;position:absolute;box-shadow:0 3px 8px 0 rgba(91,188,190,.55)}.mec-add-event-popup button.lity-close:hover,.mec-add-shortcode-popup button.lity-close:hover{background:#000;color:#fff;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-skin-styles.mec-styles-full_calendar h3{padding-left:12px}.lity.mec-add-event-popup{background-color:#b7e4e3}.mec-add-event-popup .lity-container{width:930px;height:620px;max-width:unset}.mec-add-event-popup div#mec_popup_event{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.lity.mec-add-event-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}div#mec_popup_event_form{height:calc(100% - 37px)}.mec-add-event-popup .mec-steps-container ul{margin-top:42px}.mec-add-event-popup .mec-steps-container ul li:first-of-type{height:41px}.mec-add-shortcode-popup .mec-steps-container ul li:after,.mec-add-shortcode-popup .mec-steps-container ul li:before{height:24px}.mec-add-event-popup .mec-steps-container ul li:after,.mec-add-event-popup .mec-steps-container ul li:before{height:19px}.mec-add-event-popup .mec-steps-container ul li{height:60px}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup{box-shadow:0 3px 22px 0 rgba(11,121,125,.01);border:none;clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;box-sizing:border-box;cursor:pointer;display:block;float:left;font-family:inherit;font-size:12px;font-weight:400;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;height:46px;margin-right:6px;padding-top:3px;color:#707070}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open{border-radius:3px 3px 0 0}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list{background-color:#fff;border-radius:0 0 3px 3px;box-shadow:0 0 0 0 rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9;margin-top:1px!important}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup:after{border-bottom:2px solid #00acf8;border-right:2px solid #00acf8;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:15px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:22px!important;min-height:22px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.focus,.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected.focus,.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected{font-weight:700}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.mec-add-event-popup .no-csspointerevents .wn-mec-select-popup .list{display:none}.mec-add-event-popup .no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/add-event-first-step.png) no-repeat 100% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name{width:100%;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name::-webkit-input-placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name:-ms-input-placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/calendar_icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:210px;position:absolute;width:370px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-add-event-popup .mec-meta-box-colors-container{background:#fff;padding:17px;border-radius:3px;box-shadow:0 3px 22px rgba(11,121,125,.01);margin-top:15px}.mec-add-event-popup .wp-picker-container .wp-color-result.button{border-color:#f1f2f4;border-radius:3px;box-shadow:0 2px 2px rgba(0,0,0,.04)}.mec-add-event-popup .mec-recent-color-sec{display:block!important;font-size:12px;color:#707070}.mec-add-event-popup .mec-form-row.mec-available-color-row{border:2px dashed #dce2e3;padding:13px 20px;background:#fcfcfc;border-radius:3px}.mec-add-event-popup .wp-color-result-text{background:#f7f7f7;border-radius:unset;border-left:none;color:#555;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.mec-add-event-popup .mec-form-row.mec-available-color-row .mec-color{width:12px;height:12px;position:absolute;top:-5px;left:0;z-index:99}.mec-add-event-popup span.mec-color-meta-box-popup{display:inline-block!important;width:20px;height:20px;border-radius:50px;position:absolute;top:1px;left:6px;z-index:9}.mec-add-event-popup span.mec-recent-color-sec-wrap{width:20px;height:20px;display:inline-block;margin-right:12px;margin-top:7px;margin-left:-6px;position:relative}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2{background:url(../../assets/img/popup/sixth-step.png) no-repeat 95% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4{width:auto}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/calendar_icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4 input{padding-left:36px;width:148px;padding:22px 17px 22px 34px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form select{height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#707070;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-form-row .time-dv{float:left;margin-left:-2px;margin-right:4px;margin-top:12px;color:#b1b2b4}div#mec_meta_box_date_form .mec-form-row{margin-bottom:9px}.mec-add-event-popup .mec-steps-content.mec-steps-content-2{margin-top:60px}.mec-add-event-popup .mec-steps-content.mec-steps-content-2 .mec-form-row.mec-all-day-event label{font-size:14px;color:#707070}.mec-add-event-popup .mec-steps-content.mec-steps-content-2 .mec-form-row.mec-all-day-event{margin-top:13px!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-3,.mec-add-event-popup .mec-steps-content.mec-steps-content-4{margin-top:-9px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-3{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/add-organizer.png) no-repeat 95% 70%}.nice-select.mec_popup_location_id.wn-mec-select-popup,.nice-select.mec_popup_organizer_id.wn-mec-select-popup{position:relative;width:166px;padding-left:36px}.nice-select.mec_popup_location_id.wn-mec-select-popup:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/pointer.png) no-repeat center center;position:absolute;top:17px;left:17px}.nice-select.mec_popup_organizer_id.wn-mec-select-popup:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/pointer.png) no-repeat center center;position:absolute;top:17px;left:17px}#mec_popup_event button#mec_popup_add_location:before,#mec_popup_event button#mec_popup_add_organizer:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content-container .nice-select.mec_popup_location_id.wn-mec-select-popup.open .list li,.mec-add-event-popup .mec-steps-content-container .nice-select.mec_popup_organizer_id.wn-mec-select-popup.open .list li{line-height:32px!important;min-height:32px!important}#mec_popup_event .mec-steps-content .mec-tooltip{bottom:8px}#mec_popup_event .mec-steps-content .mec-tooltip .dashicons-before:before{color:#008aff}#mec_popup_event button#mec_organizer_thumbnail_button,#mec_popup_event button#mec_popup_add_location,#mec_popup_event button#mec_popup_add_organizer{background:#008aff;border-radius:3px;border:none;color:#fff;width:146px;height:46px;margin-left:10px;box-shadow:0 3px 3px 0 rgba(0,138,255,.22);font-size:14px;cursor:pointer;transition:all .2s ease;outline:0;position:relative;padding-left:20px}#mec_popup_event button#mec_organizer_thumbnail_button:hover,#mec_popup_event button#mec_popup_add_location:hover,#mec_popup_event button#mec_popup_add_organizer:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}#mec_popup_event label[for=mec_location_dont_show_map]{font-size:14px;margin-left:4px;margin-top:12px!important;display:inline-block;margin-bottom:7px}#mec_popup_event input#mec_location_dont_show_map{margin-top:9px!important}#mec_popup_event div#mec_location_new_container,#mec_popup_event div#mec_organizer_new_container{border-top:2px dashed #dce2e3;width:360px;padding-top:25px;margin-top:20px}#mec_popup_event div#mec_location_new_container input,#mec_popup_event div#mec_organizer_new_container input{width:100%;height:46px;border:none;border-radius:3px;padding-left:17px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}#mec_popup_event div#mec_location_new_container .description,#mec_popup_event div#mec_organizer_new_container .description{border:none;padding:0;margin:0;margin-left:16px;line-height:19px;font-size:12px;color:#707070;font-style:normal;margin-top:-4px;display:block}#mec_popup_event .mec-form-row.mec-lat-lng-row input{width:44%!important}#mec_popup_event .mec-form-row.mec-lat-lng-row input:first-of-type{margin-right:10px}#mec_popup_event div#mec_organizer_new_container{margin-top:30px}#mec_popup_event div#mec_organizer_new_container .mec-form-row:first-of-type .mec-col-6:first-of-type{margin-right:14px!important}#mec_popup_event div#mec_organizer_new_container .mec-form-row:first-of-type .mec-col-6{width:48%;margin:0}#mec_popup_event button#mec_organizer_thumbnail_button:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/picture.png) no-repeat center center;position:absolute;top:16px;left:15px}#mec_popup_event button#mec_organizer_thumbnail_button{width:96%;padding-left:30px}.mec-add-event-popup .mec-steps-content.mec-steps-content-4 div#mec_organizer_thumbnail_img{position:absolute;right:10px;top:-20px}.mec-add-event-popup .mec-steps-content.mec-steps-content-4 div#mec_organizer_thumbnail_img img{max-width:110px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input{height:30px;border:none;border-radius:3px;padding-left:10px;margin-left:20px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);float:right;margin-top:-4px}.mec-add-event-popup .mec-steps-content.mec-steps-content-5{width:326px;margin-top:48px}.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li{display:inline-block;background:#fff;border:none;cursor:pointer;padding:12px 18px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;margin-right:10px;height:42px;color:#008aff;font-size:14px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li.mec-categories-tab-selected,.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li:hover{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3)}.mec-add-event-popup .mec-categories-tab-contents{background:#fff;padding:20px;border:2px dashed #dce2e3;margin-bottom:13px;margin-top:-5px}.mec-add-event-popup .mec-categories-tab-contents ul,.mec-add-event-popup .mec-categories-tab-contents ul li:last-of-type{margin:0}.mec-add-event-popup .mec-categories-tab-contents ul li{font-size:14px;color:#707070}.mec-add-event-popup .mec-categories-tab-contents.mec-form-row input[type=checkbox]{margin-top:0}.mec-add-event-popup span#mec_popup_new_category_button{cursor:pointer;position:relative;padding-left:18px;font-size:14px}.mec-add-event-popup span#mec_popup_new_category_button:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus-blue.png) no-repeat center center;position:absolute;top:3px;left:0}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content.mec-steps-content-6.mec-steps-content-active{margin-top:-10px;height:70%}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-tinymce.mce-container.mce-panel{height:100%;border:1px solid #ececec!important;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)!important;border-radius:3px!important;overflow:hidden}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container-body.mce-stack-layout{height:100%;background:#f5f5f5}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container *{border:none!important;box-shadow:none!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item{height:90%}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-statusbar.mce-container.mce-panel.mce-stack-layout-item.mce-last{display:none!important}.mec-add-event-popup .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item iframe{height:100%!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-7.mec-steps-content-active{height:70%;background:#fff;border:2px dashed #dce2e3;border-radius:3px;text-align:center;vertical-align:middle;margin-top:-10px;position:relative}.mec-add-event-popup .mec-event-popup-featured-image-wrapper{display:flex;justify-content:center;align-items:center;height:100%}.mec-add-event-popup button#mec_popup_upload_image_button{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3);display:inline-block;border:none;cursor:pointer;padding:12px 18px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;height:42px;font-size:14px;margin-right:0}.mec-add-event-popup div#mec_event_popup_featured_image_preview img{max-height:300px;max-width:740px;margin-top:20px;margin-bottom:0}.mec-add-event-popup button#mec_popup_upload_image_button:hover{background:#000;box-shadow:0 3px 3px 0 rgba(0,0,0,.3)}.mec-add-event-popup .mec-event-popup-featured-image-wrapper span i{border-radius:50px;color:#bb353f;right:10px;top:10px;font-size:30px;position:absolute;cursor:pointer}.mec-add-event-popup .mec-steps-content.mec-steps-content-8{height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results .mec-steps-8-results-wrap{display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-loading .mec-loader{left:calc(50% - 2.5em);top:calc(50% - 2.5em)}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results{height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view{display:inline-block;background:#fff;border:none;cursor:pointer;padding:12px 22px 12px 36px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;margin-right:10px;height:46px;font-size:14px;box-shadow:0 3px 3px 0 rgba(0,0,0,.04);text-decoration:none;color:#000;position:relative;line-height:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view:hover{background-color:#000;color:#fff}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/eye.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3);display:inline-block;border:none;cursor:pointer;padding:11px 22px 11px 36px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;height:46px;font-size:14px;margin-right:0;position:relative;line-height:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new:hover{background:#000;box-shadow:0 3px 3px 0 rgba(0,0,0,.3)}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-popup-final-buttons{margin-top:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results-wrap h3{font-size:26px;font-weight:400}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup{min-width:64px}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list{overflow-y:scroll!important;height:288px;margin-top:4px!important;box-shadow:0 1px 9px rgba(0,0,0,.1);border-radius:0}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar-track{background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar{width:3px;background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar-thumb{background-color:rgba(26,175,251,.16)}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup:last-child .list{overflow:unset!important;height:unset}.ac-mec-events.ac-search-enabled .tablenav .ac-search>:not(#ac-s).lity-hide{display:none}.mec-go-pro-content-title{font-size:20px;font-weight:600;margin-bottom:12px}.mec-go-pro-features-wrap p{font-size:14px}.mec-go-pro-features-wrap .mec-addons-notification-box-content{width:calc(100% - 590px);display:inline-block;padding-left:20px}.mec-go-pro-features-wrap ul{float:left;width:50%;margin:0 0 12px}.mec-go-pro-features-wrap ul li{margin-bottom:1px;font-size:13px;color:#717479;padding-left:18px;position:relative}.mec-go-pro-features-wrap ul li:before{position:absolute;left:-1px;top:6px;color:#36da74;font-size:13px;font-weight:700;vertical-align:middle;font-family:simple-line-icons;border-radius:50%;padding:0;width:13px;height:13px;line-height:13px;z-index:3;background:rgba(64,241,147,.12);content:"\e080"}.post-type-mec-books.taxonomy-mec_coupon .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-mec_category .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-mec_label .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-post_tag .metabox-prefs .screen-options label,.taxonomy-mec_location .metabox-prefs .screen-options label,.taxonomy-mec_organizer .metabox-prefs .screen-options label,.taxonomy-mec_speaker .metabox-prefs .screen-options label{margin-top:-15px}.post-type-mec-books.taxonomy-mec_coupon #mec_thumbnail_img img,.post-type-mec-events.taxonomy-mec_category #mec_thumbnail_img img,.post-type-mec-events.taxonomy-mec_label #mec_thumbnail_img img,.post-type-mec-events.taxonomy-post_tag #mec_thumbnail_img img,.taxonomy-mec_location #mec_thumbnail_img img,.taxonomy-mec_organizer #mec_thumbnail_img img,.taxonomy-mec_speaker #mec_thumbnail_img img{margin:0 0 20px 0;border:solid 1px #ddd;border-radius:2px}.post-type-mec-books.taxonomy-mec_coupon .form-wrap label,.post-type-mec-events.taxonomy-mec_category .form-wrap label,.post-type-mec-events.taxonomy-mec_label .form-wrap label,.post-type-mec-events.taxonomy-post_tag .form-wrap label,.taxonomy-mec_location .form-wrap label,.taxonomy-mec_organizer .form-wrap label,.taxonomy-mec_speaker .form-wrap label{padding:0;margin:10px 0}.post-type-mec-books.taxonomy-mec_coupon input[type=number],.post-type-mec-books.taxonomy-mec_coupon input[type=search],.post-type-mec-books.taxonomy-mec_coupon input[type=text],.post-type-mec-books.taxonomy-mec_coupon input[type=url],.post-type-mec-books.taxonomy-mec_coupon select,.post-type-mec-books.taxonomy-mec_coupon textarea,.post-type-mec-events.taxonomy-mec_category input[type=number],.post-type-mec-events.taxonomy-mec_category input[type=search],.post-type-mec-events.taxonomy-mec_category input[type=text],.post-type-mec-events.taxonomy-mec_category input[type=url],.post-type-mec-events.taxonomy-mec_category select,.post-type-mec-events.taxonomy-mec_category textarea,.post-type-mec-events.taxonomy-mec_label input[type=number],.post-type-mec-events.taxonomy-mec_label input[type=search],.post-type-mec-events.taxonomy-mec_label input[type=text],.post-type-mec-events.taxonomy-mec_label input[type=url],.post-type-mec-events.taxonomy-mec_label select,.post-type-mec-events.taxonomy-mec_label textarea,.post-type-mec-events.taxonomy-post_tag input[type=number],.post-type-mec-events.taxonomy-post_tag input[type=search],.post-type-mec-events.taxonomy-post_tag input[type=text],.post-type-mec-events.taxonomy-post_tag input[type=url],.post-type-mec-events.taxonomy-post_tag select,.post-type-mec-events.taxonomy-post_tag textarea,.taxonomy-mec_location input[type=number],.taxonomy-mec_location input[type=search],.taxonomy-mec_location input[type=text],.taxonomy-mec_location input[type=url],.taxonomy-mec_location select,.taxonomy-mec_location textarea,.taxonomy-mec_organizer input[type=number],.taxonomy-mec_organizer input[type=search],.taxonomy-mec_organizer input[type=text],.taxonomy-mec_organizer input[type=url],.taxonomy-mec_organizer select,.taxonomy-mec_organizer textarea,.taxonomy-mec_speaker input[type=number],.taxonomy-mec_speaker input[type=search],.taxonomy-mec_speaker input[type=text],.taxonomy-mec_speaker input[type=url],.taxonomy-mec_speaker select,.taxonomy-mec_speaker textarea{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02);margin-bottom:15px}.post-type-mec-books.taxonomy-mec_coupon textarea,.post-type-mec-events.taxonomy-mec_category textarea,.post-type-mec-events.taxonomy-mec_label textarea,.post-type-mec-events.taxonomy-post_tag textarea,.taxonomy-mec_location textarea,.taxonomy-mec_organizer textarea,.taxonomy-mec_speaker textarea{min-height:86px}.post-type-mec-books.taxonomy-mec_coupon .button,.post-type-mec-books.taxonomy-mec_coupon .button-secondary,.post-type-mec-events.taxonomy-mec_category .button,.post-type-mec-events.taxonomy-mec_category .button-secondary,.post-type-mec-events.taxonomy-mec_label .button,.post-type-mec-events.taxonomy-mec_label .button-secondary,.post-type-mec-events.taxonomy-post_tag .button,.post-type-mec-events.taxonomy-post_tag .button-secondary,.taxonomy-mec_location .button,.taxonomy-mec_location .button-secondary,.taxonomy-mec_organizer .button,.taxonomy-mec_organizer .button-secondary,.taxonomy-mec_speaker .button{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;linear-height:1.4;padding:6px 22px}.post-type-mec-books.taxonomy-mec_coupon .mec_upload_image_button,.post-type-mec-events.taxonomy-mec_category .mec_upload_image_button,.post-type-mec-events.taxonomy-mec_label .mec_upload_image_button,.post-type-mec-events.taxonomy-post_tag .mec_upload_image_button,.taxonomy-mec_location .mec_upload_image_button,.taxonomy-mec_organizer .mec_upload_image_button,.taxonomy-mec_speaker .mec_upload_image_button{margin-bottom:20px}.post-type-mec-books.taxonomy-mec_coupon .button-secondary:focus,.post-type-mec-books.taxonomy-mec_coupon .button-secondary:hover,.post-type-mec-books.taxonomy-mec_coupon .button.focus,.post-type-mec-books.taxonomy-mec_coupon .button:focus,.post-type-mec-books.taxonomy-mec_coupon .button:hover,.post-type-mec-events.taxonomy-mec_category .button-secondary:focus,.post-type-mec-events.taxonomy-mec_category .button-secondary:hover,.post-type-mec-events.taxonomy-mec_category .button.focus,.post-type-mec-events.taxonomy-mec_category .button:focus,.post-type-mec-events.taxonomy-mec_category .button:hover,.post-type-mec-events.taxonomy-mec_label .button-secondary:focus,.post-type-mec-events.taxonomy-mec_label .button-secondary:hover,.post-type-mec-events.taxonomy-mec_label .button.focus,.post-type-mec-events.taxonomy-mec_label .button:focus,.post-type-mec-events.taxonomy-mec_label .button:hover,.post-type-mec-events.taxonomy-post_tag .button-secondary:focus,.post-type-mec-events.taxonomy-post_tag .button-secondary:hover,.post-type-mec-events.taxonomy-post_tag .button.focus,.post-type-mec-events.taxonomy-post_tag .button:focus,.post-type-mec-events.taxonomy-post_tag .button:hover,.taxonomy-mec_location .button-secondary:focus,.taxonomy-mec_location .button-secondary:hover,.taxonomy-mec_location .button.focus,.taxonomy-mec_location .button:focus,.taxonomy-mec_location .button:hover,.taxonomy-mec_organizer .button-secondary:focus,.taxonomy-mec_organizer .button-secondary:hover,.taxonomy-mec_organizer .button.focus,.taxonomy-mec_organizer .button:focus,.taxonomy-mec_organizer .button:hover,.taxonomy-mec_speaker .button-secondary:focus,.taxonomy-mec_speaker .button-secondary:hover,.taxonomy-mec_speaker .button.focus,.taxonomy-mec_speaker .button:focus,.taxonomy-mec_speaker .button: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;color:#fff}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description,.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form{padding-left:105px!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form .fserv-field{width:40.33333%!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description{position:relative!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container:before{background:url(../img/newsletter-document.png) no-repeat left top;content:"";width:100px;height:100px;position:absolute;top:96px;left:12px}@media (max-width:480px){.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description,.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form{padding-left:90px!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form .fserv-field{width:40%!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container:before{top:100px;left:10px}}.post-type-mec-events.taxonomy-mec_label .button.wp-color-result{background:0 0;text-align:right;padding:0 0 0 32px;border-radius:4px;box-shadow:unset;border:1px solid #ddd}.post-type-mec-events.taxonomy-mec_label .button.wp-color-result .wp-color-result-text{height:30px}.post-type-mec-events.taxonomy-mec_label .wp-picker-container input[type=text].wp-color-picker{width:70px;margin-top:-10px;height:32px}.post-type-mec-events.taxonomy-mec_label .wp-picker-default{height:32px;padding-top:2px;padding-bottom:2px}.post-type-mec-events.taxonomy-mec_label .wp-picker-container .iris-picker{margin-top:-10px}.mec-admin-dark-mode #mec_calendar_filter,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #mec_metabox_booking,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #mec_metabox_details,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left,.mec-admin-dark-mode .w-box,.mec-admin-dark-mode .w-box-content pre,.mec-admin-dark-mode .w-clearfix.w-box.mec-addons-notification-box-wrap span,.mec-admin-dark-mode .w-clearfix.w-box.mec-cmsg-notification-box-wrap span,.mec-admin-dark-mode .wns-be-main,.mec-admin-dark-mode .wns-be-main .mec-container,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix .mec-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-pro-notice .info-msg,.mec-admin-dark-mode.post-type-mec-books .postbox,.mec-admin-dark-mode.post-type-mec-events #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields li,.mec-admin-dark-mode.post-type-mec-events #post-status-info,.mec-admin-dark-mode.post-type-mec-events #screen-meta,.mec-admin-dark-mode.post-type-mec-events #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-events .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .components-popover__content,.mec-admin-dark-mode.post-type-mec-events .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .postbox,.mec-admin-dark-mode.post-type-mec-events .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-events .wp-tab-active,.mec-admin-dark-mode.post-type-mec-events .wp-tab-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec-events ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec-events ul.category-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars #major-publishing-actions,.mec-admin-dark-mode.post-type-mec_calendars #post-status-info,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec_calendars .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .postbox,.mec-admin-dark-mode.post-type-mec_calendars .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-active,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec_calendars ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars ul.category-tabs li.tabs{background:#1f1f1f;color:#fff}.mec-admin-dark-mode .mec-form-row .mec-box,.mec-admin-dark-mode .mec-form-row input[type=checkbox],.mec-admin-dark-mode .mec-form-row ul.mec-message-categories li ul,.mec-admin-dark-mode .mec-meta-box-fields .mec-box,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-faq-accordion-trigger a{background:#282828;border-color:#353535;box-shadow:0 1px 6px -2px #000}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix .mec-form-row.mec-syn-schedule,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields,.mec-admin-dark-mode.post-type-mec-events .select2-search--dropdown,.mec-admin-dark-mode.post-type-mec_calendars .select2-search--dropdown{background:#282828;border-color:#353535}.mec-admin-dark-mode .select2-container--default .select2-selection--multiple .select2-selection__choice{color:#000}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_gateways_form li .mec-gateway-options-form,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #payment_gateways_option li .mec-gateway-options-form,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list{background:#000;box-shadow:0 2px 12px -5px #000}.mec-admin-dark-mode .extra .w-box-head,.mec-admin-dark-mode .mec-form-row ul.mec-message-categories,.mec-admin-dark-mode .mec-message-categories li.mec-acc-label,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mce-btn-group:not(:first-child),.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-search--dropdown .select2-search__field,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-custom-msg-notification-set-box.extra,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple .select2-selection__choice,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-footer,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar:before,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-core-ui .quicktags-toolbar input.button.button-small,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-books .postbox,.mec-admin-dark-mode.post-type-mec-books .postbox .hndle,.mec-admin-dark-mode.post-type-mec-books .postbox hr,.mec-admin-dark-mode.post-type-mec-events #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-events #post-status-info,.mec-admin-dark-mode.post-type-mec-events #screen-meta,.mec-admin-dark-mode.post-type-mec-events #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-events .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .components-popover__content,.mec-admin-dark-mode.post-type-mec-events .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff .stuffbox>h3,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff h2.hndle,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff h3.hndle,.mec-admin-dark-mode.post-type-mec-events .postbox,.mec-admin-dark-mode.post-type-mec-events .postbox h2,.mec-admin-dark-mode.post-type-mec-events .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .wp-editor-container,.mec-admin-dark-mode.post-type-mec-events .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-events .wp-tab-active,.mec-admin-dark-mode.post-type-mec-events .wp-tab-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec-events ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec-events ul.category-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars #major-publishing-actions,.mec-admin-dark-mode.post-type-mec_calendars #post-status-info,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec_calendars .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option,.mec-admin-dark-mode.post-type-mec_calendars .mec-sed-methods li,.mec-admin-dark-mode.post-type-mec_calendars .postbox,.mec-admin-dark-mode.post-type-mec_calendars .postbox h2,.mec-admin-dark-mode.post-type-mec_calendars .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .wp-editor-container,.mec-admin-dark-mode.post-type-mec_calendars .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-active,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec_calendars ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars ul.category-tabs li.tabs{border-color:#353535}.mec-admin-dark-mode #mec_calendar_filter .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=number],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=text],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=url],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row select,.mec-admin-dark-mode #mec_calendar_filter .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_booking .mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_booking .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=number],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=text],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=url],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row select,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode #mec_metabox_booking .mec-meta-box-fields .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_details .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=number],.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=text],.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=url],.mec-admin-dark-mode #mec_metabox_details .mec-form-row select,.mec-admin-dark-mode #mec_metabox_details .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_details .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode #mec_metabox_details .mec-meta-box-fields .mec-form-row input[type=checkbox],.mec-admin-dark-mode .mec-addon-box-version,.mec-admin-dark-mode .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode .mec-form-row input[type=number],.mec-admin-dark-mode .mec-form-row input[type=text],.mec-admin-dark-mode .mec-form-row input[type=url],.mec-admin-dark-mode .mec-form-row select,.mec-admin-dark-mode .mec-form-row textarea,.mec-admin-dark-mode .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-addons,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-select-event-wrap .select2-container--default .select2-selection--single,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-sendmail-form-wrap,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-sendmail-wrap,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-send-email-form-wrap input.widefat,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-results__option--highlighted[aria-selected],.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-search--dropdown .select2-search__field,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .wp-switch-editor,.mec-admin-dark-mode.m-e-calendar_page_MEC-report div.mce-toolbar-grp,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-invoice-custom-css,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #titlediv #title,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .quicktags-toolbar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-results__option[aria-selected],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-core-ui .quicktags-toolbar input.button.button-small,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=checkbox],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=color],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=date],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=datetime-local],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=datetime],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=email],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=month],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=password],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=radio],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=search],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=tel],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=time],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=url],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=week],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings textarea,.mec-admin-dark-mode.post-type-mec-books .wn-mec-select,.mec-admin-dark-mode.post-type-mec-books input[type=email],.mec-admin-dark-mode.post-type-mec-books input[type=number],.mec-admin-dark-mode.post-type-mec-books input[type=text],.mec-admin-dark-mode.post-type-mec-books input[type=url],.mec-admin-dark-mode.post-type-mec-books select,.mec-admin-dark-mode.post-type-mec-books textarea,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_field_types button,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields button,.mec-admin-dark-mode.post-type-mec-events #titlediv #title,.mec-admin-dark-mode.post-type-mec-events .components-form-token-field__input-container,.mec-admin-dark-mode.post-type-mec-events .components-panel__body,.mec-admin-dark-mode.post-type-mec-events .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.post-type-mec-events .mec-certain-day>div,.mec-admin-dark-mode.post-type-mec-events .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.post-type-mec-events .mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-admin-dark-mode.post-type-mec-events .mec-xi-google-import-events .mec-select-deselect-actions li,.mec-admin-dark-mode.post-type-mec-events .select2-dropdown,.mec-admin-dark-mode.post-type-mec-events .select2-results__option[aria-selected],.mec-admin-dark-mode.post-type-mec-events .wp-admin p label input[type=checkbox],.mec-admin-dark-mode.post-type-mec-events input[type=checkbox],.mec-admin-dark-mode.post-type-mec-events input[type=color],.mec-admin-dark-mode.post-type-mec-events input[type=date],.mec-admin-dark-mode.post-type-mec-events input[type=datetime-local],.mec-admin-dark-mode.post-type-mec-events input[type=datetime],.mec-admin-dark-mode.post-type-mec-events input[type=email],.mec-admin-dark-mode.post-type-mec-events input[type=month],.mec-admin-dark-mode.post-type-mec-events input[type=number],.mec-admin-dark-mode.post-type-mec-events input[type=password],.mec-admin-dark-mode.post-type-mec-events input[type=radio],.mec-admin-dark-mode.post-type-mec-events input[type=search],.mec-admin-dark-mode.post-type-mec-events input[type=tel],.mec-admin-dark-mode.post-type-mec-events input[type=text],.mec-admin-dark-mode.post-type-mec-events input[type=time],.mec-admin-dark-mode.post-type-mec-events input[type=url],.mec-admin-dark-mode.post-type-mec-events input[type=week],.mec-admin-dark-mode.post-type-mec-events select,.mec-admin-dark-mode.post-type-mec-events textarea,.mec-admin-dark-mode.post-type-mec_calendars #titlediv #title,.mec-admin-dark-mode.post-type-mec_calendars .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode.post-type-mec_calendars .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.post-type-mec_calendars .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode.post-type-mec_calendars .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.post-type-mec_calendars .select2-container--default .select2-selection--multiple .select2-selection__choice,.mec-admin-dark-mode.post-type-mec_calendars .select2-dropdown,.mec-admin-dark-mode.post-type-mec_calendars .select2-results__option[aria-selected],.mec-admin-dark-mode.post-type-mec_calendars input[type=checkbox],.mec-admin-dark-mode.post-type-mec_calendars input[type=color],.mec-admin-dark-mode.post-type-mec_calendars input[type=date],.mec-admin-dark-mode.post-type-mec_calendars input[type=datetime-local],.mec-admin-dark-mode.post-type-mec_calendars input[type=datetime],.mec-admin-dark-mode.post-type-mec_calendars input[type=email],.mec-admin-dark-mode.post-type-mec_calendars input[type=month],.mec-admin-dark-mode.post-type-mec_calendars input[type=number],.mec-admin-dark-mode.post-type-mec_calendars input[type=password],.mec-admin-dark-mode.post-type-mec_calendars input[type=radio],.mec-admin-dark-mode.post-type-mec_calendars input[type=search],.mec-admin-dark-mode.post-type-mec_calendars input[type=tel],.mec-admin-dark-mode.post-type-mec_calendars input[type=text],.mec-admin-dark-mode.post-type-mec_calendars input[type=time],.mec-admin-dark-mode.post-type-mec_calendars input[type=url],.mec-admin-dark-mode.post-type-mec_calendars input[type=week],.mec-admin-dark-mode.post-type-mec_calendars select,.mec-admin-dark-mode.post-type-mec_calendars textarea,.mec-admin-dark-mode.toplevel_page_mec-intro .w-box.mec-activation input[name=MECPurchaseCode],.mec-admin-dark-mode.toplevel_page_mec-intro .w-box.mec-activation input[type=radio]+label span,.mec-select-deselect-actions li{background:#282828;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=checkbox]:checked,.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=checkbox]:checked,.mec-admin-dark-mode .mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-admin-dark-mode .mec-sed-methods li:before{box-shadow:0 1px 6px -2px #000;border-color:#353535;background:#222}.mec-admin-dark-mode .mec-switcher input+label,.mec-admin-dark-mode .mec-switcher input+label:before,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-results__option{background-color:#000}.mec-admin-dark-mode .wn-mec-select .option.focus .wn-img-sh img,.mec-admin-dark-mode .wn-mec-select .option.selected.focus .wn-img-sh img,.mec-admin-dark-mode .wn-mec-select .option:hover .wn-img-sh img{background:0 0}.mec-admin-dark-mode .ui-datepicker{background-color:#000;border:1px solid #000;box-shadow:0 0 8px rgba(33,33,33,.6)}.mec-admin-dark-mode .ui-datepicker.ui-widget td a,.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article .mec-detail-button,.mec-admin-dark-mode.post-type-mec-events,.mec-admin-dark-mode.post-type-mec-events .postbox h2,.mec-admin-dark-mode.post-type-mec_calendars .postbox h2{color:#d2d2d2;background:#282828}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul *{background:#282828}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul>ul>li,.mec-admin-dark-mode #mec_styles_form #mec_styles_CSS,.mec-admin-dark-mode .mec-message-categories li.mec-acc-label,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields{background:#000}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-admin-dark-mode .mec-active,.mec-admin-dark-mode.post-type-mec-events .select2-container--default .select2-results__option--highlighted[aria-selected]{background:#888!important}.mec-admin-dark-mode.post-type-mec_calendars .mec-calendar-metabox .wn-mec-select .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #353535,0 2px 6px rgba(0,0,0,.07)}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .ui-sortable-handle,.mec-admin-dark-mode #mec_gateways_form li .mec-gateway-options-form,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .ui-sortable-handle,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_metabox_details .ui-sortable-handle,.mec-admin-dark-mode #payment_gateways_option li .mec-gateway-options-form,.mec-admin-dark-mode .mec-meta-box-fields h4{border-color:#000!important}.mec-admin-dark-mode .wns-be-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-admin-dark-mode.post-type-mec-events #wp-content-editor-tools,.mec-admin-dark-mode.post-type-mec_calendars,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .list{background-color:#282828;border-color:#353535}.mec-admin-dark-mode .mec-intro-section-ifarme iframe,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container *,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container *{background:#1f1f1f!important;border-color:#353535!important}.mec-admin-dark-mode .block-editor-block-types-list__item-icon,.mec-admin-dark-mode .block-editor-block-types-list__item-title,.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article h4.mec-event-title,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-selection--single .select2-selection__rendered,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .about-wrap h3,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container .fserv-form-name,.mec-admin-dark-mode.toplevel_page_mec-intro .about-wrap h3,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container .fserv-form-name{color:#d2d2d2!important}.mec-admin-dark-mode .wns-be-sidebar li a:hover,.mec-admin-dark-mode .wns-be-sidebar li:hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option:hover{background:#000;color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar li a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h2,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h3,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head span,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-faq-accordion-trigger a,.mec-admin-dark-mode.post-type-mec-books .postbox h1,.mec-admin-dark-mode.post-type-mec-books .postbox h2,.mec-admin-dark-mode.post-type-mec-books .postbox h3,.mec-admin-dark-mode.post-type-mec-events .components-panel__body-toggle.components-button,.mec-admin-dark-mode.post-type-mec-events .wrap h1.wp-heading-inline,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option .wn-mec-text{color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#282828;background:linear-gradient(95deg,#282828 0,#222 50%,#282828 100%);color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar li.active ul.subsection{background:#282828;border-bottom:1px solid #353535}.mec-admin-dark-mode .wns-be-sidebar li .subsection a{background:#282828;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main{box-shadow:0 2px 12px -5px #000}.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h4,.mec-admin-dark-mode .wns-be-sidebar .mec-settings-menu .mec-settings-submenu a,.mec-admin-dark-mode li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option.focus,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option.selected.focus,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option:hover{background:#000;color:#d2d2d2;border-color:#353535}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option{background:#000!important;color:#fff!important}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons,.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .about-wrap h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-report,.mec-admin-dark-mode.m-e-calendar_page_MEC-report h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings div.mce-panel,.mec-admin-dark-mode.m-e-calendar_page_MEC-support,.mec-admin-dark-mode.m-e-calendar_page_MEC-support h1,.mec-admin-dark-mode.post-type-mec-books,.mec-admin-dark-mode.post-type-mec-books h1,.mec-admin-dark-mode.post-type-mec_calendars,.mec-admin-dark-mode.post-type-mec_calendars .wrap h1.wp-heading-inline,.mec-admin-dark-mode.toplevel_page_mec-intro,.mec-admin-dark-mode.toplevel_page_mec-intro .about-wrap h1{background:#282828!important;color:#d2d2d2}.mec-admin-dark-mode.m-e-calendar_page_MEC-report .w-theme-version,.mec-admin-dark-mode.toplevel_page_mec-intro .w-theme-version{box-shadow:0 3px 30px -4px #000;background:#000;background:linear-gradient(95deg,#000 0,#282828 50%,#1f1f1f 100%)}.mec-admin-dark-mode .mec-sed-methods li.active,.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h2,.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap .nav-tab-wrapper .nav-tab,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap h2.nav-tab-wrapper,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple .select2-selection__choice{color:#d2d2d2;background:#000}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li a:hover{color:#008aff}.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap .nav-tab-wrapper .nav-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)}.mec-admin-dark-mode .wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#1f1f1f url(../img/webnus-logo2.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-footer,.mec-admin-dark-mode.post-type-mec-books #titlediv #title,.mec-admin-dark-mode.post-type-mec-books .postbox h1{background:#1f1f1f!important}.mec-admin-dark-mode .mec-settings-menu .mec-settings-submenu:after,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#353535}.mec-admin-dark-mode .mec-switcher input:checked+label:before{background-color:#000;background:linear-gradient(95deg,#1f1f1f 0,#222 50%,#000 100%)}.mec-admin-dark-mode .mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #000}.mec-admin-dark-mode .lity.mec-add-event-popup,.mec-admin-dark-mode .lity.mec-add-shortcode-popup,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup,.mec-admin-dark-mode .mec-add-shortcode-popup div#mec_popup_shortcode{background:#282828}.mec-admin-dark-mode .lity.mec-add-event-popup .lity-content,.mec-admin-dark-mode .lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(0,0,0,.55)}.mec-admin-dark-mode .mec-add-event-popup .mec-meta-box-colors-container,.mec-admin-dark-mode .mec-steps-container,.mec-admin-dark-mode .mec-steps-header{background:#000}.mec-admin-dark-mode .mec-add-event-popup div#mec_popup_event,.mec-admin-dark-mode .mec-steps-panel{background:#1f1f1f}.mec-admin-dark-mode button.lity-close{background:#000;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{border:2px solid #282828;background:#000!important}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input{background:#282828;border-color:#1f1f1f;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{box-shadow:0 3px 5px rgba(0,0,0,.2)}.mec-admin-dark-mode .nicescroll-cursors{background-color:#000!important}.mec-admin-dark-mode .mec-add-event-popup .mec-categories-tab-contents,.mec-admin-dark-mode .mec-add-event-popup .mec-form-row.mec-available-color-row,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content.mec-steps-content-7.mec-steps-content-active,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{border-color:#282828;background:#000}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{background:rgba(266,266,266,.35)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code,.mec-admin-dark-mode .mec-steps-content h3{color:#d2d2d2}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.focus,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected.focus,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option:hover{background:#000}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list{background:#282828}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list::-webkit-scrollbar-track{background-color:#333}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list::-webkit-scrollbar{width:3px;background-color:#333}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{margin-left:unset}.mec-admin-dark-mode .wp-picker-container .wp-color-result.button{background:inherit}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container-body.mce-stack-layout{background:#000;border-color:#000!important}.mec-admin-dark-mode .attachments-browser .media-toolbar,.mec-admin-dark-mode .media-frame-content,.mec-admin-dark-mode .media-modal-content,.mec-admin-dark-mode .media-modal-content h1,.mec-admin-dark-mode .media-modal-content h2,.mec-admin-dark-mode .media-modal-content p,.mec-admin-dark-mode .media-sidebar{background:#000;color:#d2d2d2!important;border-color:#282828}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{background-color:#000;border-color:#282828}.mec-admin-dark-mode.post-type-mec-books table.widefat,.mec-admin-dark-mode.post-type-mec_calendars table.widefat,.post-type-mec-events.mec-admin-dark-mode table.widefat{background:#1f1f1f;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-books ul.striped>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-events .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-events ul.striped>:nth-child(odd),.mec-admin-dark-mode.post-type-mec_calendars .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec_calendars ul.striped>:nth-child(odd){background:#282828;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books .widefat td,.mec-admin-dark-mode.post-type-mec-books .widefat th,.mec-admin-dark-mode.post-type-mec-events .widefat td,.mec-admin-dark-mode.post-type-mec-events .widefat th,.mec-admin-dark-mode.post-type-mec_calendars .widefat td,.mec-admin-dark-mode.post-type-mec_calendars .widefat th{border-color:#000;color:#d2d2d2}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu>li.current>a.current:after{border-right-color:#1f1f1f}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button-secondary,.mec-admin-dark-mode.post-type-mec-events .button,.mec-admin-dark-mode.post-type-mec-events .button-secondary,.mec-admin-dark-mode.post-type-mec-events .wp-heading-inline+.page-title-action,.mec-admin-dark-mode.post-type-mec_calendars .button,.mec-admin-dark-mode.post-type-mec_calendars .wp-heading-inline+.page-title-action{color:#d2d2d2!important;border-color:#353535!important;background:#0000!important}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button-secondary:hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button.hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button:hover,.mec-admin-dark-mode.post-type-mec-events .button-secondary:hover,.mec-admin-dark-mode.post-type-mec-events .button.hover,.mec-admin-dark-mode.post-type-mec-events .button:hover,.mec-admin-dark-mode.post-type-mec_calendars .button-secondary:hover,.mec-admin-dark-mode.post-type-mec_calendars .button.hover,.mec-admin-dark-mode.post-type-mec_calendars .button:hover{background:#000!important;border-color:#333!important;color:#fff!important}.mec-admin-dark-mode.post-type-mec-events .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #282828,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-color-result-text,.mec-admin-dark-mode.post-type-mec-events .wp-color-result-text{border-left:1px solid #353535;color:#d2d2d2;background:#000}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-search-settings{color:#d2d2d2;background:#282828}.mec-admin-dark-mode.post-type-mec_calendars .mec-switcher input+label:after,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option .wn-hover-img-sh img{background:#282828}.mec-metabox-head-version img,.mec-metabox-head-version p{float:left}.mec-metabox-head-version a{float:right}.mec-metabox-head-version p{margin-top:3px;margin-left:5px;margin-bottom:34px}h3.mec-metabox-feed-head{border-top:1px solid #ccc}div#mec_widget_news_features .inside{padding:0}.mec-metabox-head-wrap{padding:0 12px}#dashboard-widgets h3.mec-metabox-feed-head{padding:8px 12px;border-top:1px solid #eee;border-bottom:1px solid #eee;font-weight:700}.mec-metabox-feed-content{padding:0 12px}.mec-metabox-feed-content ul li a{font-weight:600;display:block}.mec-metabox-feed-content ul li p{margin:3px 0 24px}.mec-metabox-footer a span{font-size:17px;vertical-align:middle;margin-left:2px}.mec-metabox-footer a{text-decoration:none;border-right:1px solid #eee;padding-right:10px;margin-right:12px}.mec-metabox-footer{padding:11px 12px 10px;border-top:1px solid #eee}.mec-metabox-footer a:last-of-type{border:none}.mec-metabox-upcoming-wrap h3{border-top:none!important;padding-top:13px!important}.mec-metabox-head-wrap{box-shadow:0 5px 8px rgba(0,0,0,.05)}.mec-metabox-upcoming-wrap ul li span{float:left}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event{float:left;margin-left:10px}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event-date{float:right}.mec-metabox-upcoming-wrap ul{padding:0 12px;background:#f7f7f7;margin:0}.mec-metabox-upcoming-wrap ul li{border-bottom:1px solid #eee;padding:14px 0;margin-bottom:0}.mec-metabox-upcoming-wrap ul li:last-of-type{border:none}.mec-metabox-upcoming-wrap h3{margin-bottom:0!important}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event a{font-weight:600}.mec-metabox-head-version a span{vertical-align:middle}.mec-metabox-head-version a{padding-left:6px!important}#mec_widget_total_bookings .w-box.total-bookings ul li:first-child{margin-left:1px}#mec_widget_total_bookings .w-box.total-bookings ul li{padding:4px 13px 4px 13px;margin-right:4px}#mec_widget_total_bookings .w-box.total-bookings ul li:last-child{margin-right:0}#mec_widget_total_bookings{overflow:hidden}#mec_widget_total_bookings .inside,#mec_widget_total_bookings .w-box{margin:0;padding-bottom:0}#mec_widget_total_bookings .w-col-sm-12{padding:0}#mec_widget_total_bookings .w-box-content button{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important;line-height:39px;padding:0 36px;width:calc(33% - 7px);margin-bottom:14px}#mec_widget_total_bookings .w-box-content input[type=text],#mec_widget_total_bookings .w-box-content select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}#mec_widget_total_bookings .w-box-content input[type=text]{width:calc(50% - 5px)}#mec_widget_total_bookings .w-box-content select{width:calc(33% - 2px);margin-bottom:24px;margin-top:20px}div#mec-schema .mec-form-row label{display:inline-block;width:111px}.event-status-schema{background:#f7f7f7;padding:20px;margin-bottom:15px;border-radius:3px}div#mec_cancelled_reason_wrapper label{width:166px!important}.mec-fluent-hidden{display:none}#webnus-dashboard .total-bookings input[type=text],#webnus-dashboard .total-bookings select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}#webnus-dashboard select{margin-top:-5px}#mec_styles_CSS{line-height:1.6}@media(max-width:480px){.toplevel_page_mec-intro .mec-intro-section-ifarme iframe{width:auto!important;height:auto!important}.w-box.mec-activation input[name=MECPurchaseCode]{min-width:200px!important;width:330px}.w-box.mec-activation{background:#fff}.mec-addons{padding-right:15px}.mec-report-wrap{margin-top:20px}.mec-report-select-event-wrap .select2-container--default,.mec-report-select-event-wrap select.mec-reports-selectbox-dates{max-width:100%;width:100%;margin:10px 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{padding:10px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head span{font-size:13px}.mec-report-selected-event-attendees-wrap .mec-attendees-content .w-col-xs-3{word-wrap:break-word}.mec-report-selected-event-attendees-wrap .w-col-xs-3.name img{display:block}.mec-report-selected-event-attendees-wrap input[type=checkbox],.mec-report-selected-event-attendees-wrap input[type=radio]{height:.85rem;width:.85rem}.wns-be-container .dpr-btn.dpr-save-btn{margin:0!important}#mec_booking_form .mec-container{padding-left:0;padding-right:0}#mec_reg_form_fields{padding:10px}.mec-search-forms-options-container .mec-form-row select{width:100%}#mec_skin_monthly_view_start_date_container{display:unset}#mec_calendar_display_options input[type=number],#mec_calendar_display_options input[type=text],#mec_calendar_display_options select{max-width:100%!important;width:100%;margin:10px 0}#mec_select_tags.mec-create-shortcode-tab-content input[type=text]{width:auto}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding-left:14px;padding-right:14px}#mec_tickets .mec-box{padding:20px 7px}.fserv-container form,.fserv-form-description{padding:10px 15px!important}.fserv-field{display:inline-block;width:25%!important;padding:0!important;margin:0!important;margin-right:10px!important}#webnus-dashboard .total-bookings button{margin:15px 0}}
|
@@ -208,12 +208,37 @@
|
|
208 |
.mec-wrap .mec-agenda-events-wrap {float: left;}
|
209 |
.mec-wrap .mec-yearly-view-wrap .mec-yearly-calendar-sec {float: right;}
|
210 |
.mec-wrap .mec-yearly-agenda-sec {float: left; padding: 0 20px 0 0;}
|
|
|
|
|
|
|
|
|
|
|
211 |
|
212 |
/* #Calendar/Monthly View
|
213 |
================================================== */
|
214 |
/* Calendar/Monthly View > Classic */
|
215 |
.mec-wrap .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec { text-align:right;}
|
216 |
.mec-wrap .mec-skin-monthly-view-month-navigator-container .mec-calendar-events-sec h3.mec-color.mec-table-side-day { float: right;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
|
218 |
/* #Slider View
|
219 |
================================================== */
|
208 |
.mec-wrap .mec-agenda-events-wrap {float: left;}
|
209 |
.mec-wrap .mec-yearly-view-wrap .mec-yearly-calendar-sec {float: right;}
|
210 |
.mec-wrap .mec-yearly-agenda-sec {float: left; padding: 0 20px 0 0;}
|
211 |
+
.rtl .mec-yearly-view-wrap .mec-yearly-title-sec { direction: rtl;}
|
212 |
+
.rtl .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year {right: 20px;left: auto;}
|
213 |
+
.rtl .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year {left: 20px;right: auto;direction: ltr;}
|
214 |
+
.rtl .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year .mec-sl-angle-right:before { content: "\e605";}
|
215 |
+
.rtl .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year .mec-sl-angle-left:before { content: "\e606";}
|
216 |
|
217 |
/* #Calendar/Monthly View
|
218 |
================================================== */
|
219 |
/* Calendar/Monthly View > Classic */
|
220 |
.mec-wrap .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec { text-align:right;}
|
221 |
.mec-wrap .mec-skin-monthly-view-month-navigator-container .mec-calendar-events-sec h3.mec-color.mec-table-side-day { float: right;}
|
222 |
+
.rtl .mec-calendar.mec-event-calendar-classic dl dt {text-align: right;}
|
223 |
+
.rtl .mec-calendar.mec-event-calendar-classic .mec-has-event:after {left: auto;right: 7px;}
|
224 |
+
.rtl .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month {right: auto;}
|
225 |
+
.rtl .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month {left: auto;}
|
226 |
+
.rtl .mec-wrap .mec-calendar .mec-event-article .mec-event-title {direction: rtl;}
|
227 |
+
|
228 |
+
/* Calendar/Monthly View > Clean */
|
229 |
+
.rtl .mec-calendar .mec-calendar-events-side { border-right: 1px solid #efefef;}
|
230 |
+
.rtl .mec-calendar .mec-event-article,
|
231 |
+
.rtl .mec-month-navigator { direction: ltr;}
|
232 |
+
.rtl .mec-calendar .mec-calendar-side .mec-previous-month { border-bottom-left-radius: 6px; border-bottom-right-radius: 0; border-left: 1px solid #efefef; border-right: 0; left: auto; right: 0; direction: rtl;}
|
233 |
+
.rtl .mec-wrap .mec-calendar .mec-event-article .mec-event-image { float: right; margin-left: 20px; margin-right: 0;}
|
234 |
+
.rtl .mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,
|
235 |
+
.rtl .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: auto; left: -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);}
|
236 |
+
.rtl .mec-calendar .mec-calendar-side .mec-next-month { border-bottom-right-radius: 6px; border-bottom-left-radius: 0; border-right: 1px solid #efefef; border-left: 0; left: 0; right: auto; direction: rtl;}
|
237 |
+
.rtl .mec-calendar .mec-calendar-side .mec-next-month .mec-sl-angle-right:before { content: "\e605";}
|
238 |
+
.rtl .mec-calendar .mec-calendar-side .mec-previous-month .mec-sl-angle-left:before { content: "\e606";}
|
239 |
+
.rtl .event-color,
|
240 |
+
.rtl .mec-event-article i { margin-right: 0; margin-right: 10px;}
|
241 |
+
|
242 |
|
243 |
/* #Slider View
|
244 |
================================================== */
|
@@ -1 +1 @@
|
|
1 |
-
.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-organizer i{margin-left:10px;margin-right:12px}.event-color,.mec-event-schedule-content,.mec-single-event .mec-frontbox-title:before{margin-left:0}.mec-event-cover-classic .mec-event-icon{margin-left:14px}.event-color{margin-right:5px}.mec-event-list-classic .mec-event-image{margin-left:20px}.mec-event-article i{margin-left:10px}.mec-event-cover-classic .mec-event-icon,.mec-event-list-classic .mec-event-image{margin-right:0}.mec-single-event .mec-frontbox-title:before{margin-right:39px}.mec-event-schedule-content{margin-right:25px}.mec-event-schedule-content dl,.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{padding-left:0}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{padding-right:10px}.mec-event-schedule-content dl{padding-right:24px}.mec-event-schedule-content{border:0}.mec-event-schedule-content{border-right:4px solid #f0f0f0}.mec-event-cover-modern .mec-event-cover-a,.mec-event-schedule-content dl:before{left:auto}.mec-event-cover-modern .mec-event-cover-a,.mec-event-schedule-content dl:before{right:0}.mec-event-cover-classic .mec-event-icon,.mec-event-list-classic .mec-event-image{float:right}.mec-event-cover-classic .mec-btn-wrapper{text-align:right}.mec-wrap .mec-calendar-topsec .mec-calendar-events-sec .mec-table-side-day{padding:0}.mec-wrap article.mec-event-article.mec-clear{text-align:right}.mec-wrap .mec-event-article .mec-event-content p{text-align:right}.mec-wrap .button,.mec-wrap button,.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{margin:0}.mec-wrap .mec-events-meta-group-booking .mec-book-price-details li{float:right}.mec-wrap .mec-events-meta-group-booking .mec-book-price-details{width:330px}.mec-wrap .mec-marker-wrap .mec-marker-pulse{margin:-15px 28px 1px 40px}.mec-wrap .mec-marker-wrap .mec-marker-pulse:after{margin:-13px -13px 0 0}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{float:left}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{float:right;margin:5px}.mec-fes-form #mec_fes_form .mec-form-row #mec_cost{float:none}.mec-fes-form label{padding-right:0}.mec-wrap .mec-totalcal-box i{float:right;text-align:center}.mec-totalcal-box .mec-date-search{float:left}.mec-wrap .mec-single-modern .mec-single-event-bar>div i{float:right;padding-left:10px}.mec-wrap .mec-single-modern .mec-single-event-bar dd{margin:0 30px 0 0;padding:0}.mec-wrap .mec-event-meta.mec-color-before.mec-frontbox{width:100%}.mec-wrap .mec-single-modern .mec-event-meta .mec-single-event-organizer dd a{float:left;position:absolute;margin-right:5px}.mec-wrap .mec-single-event .mec-single-event-organizer i{margin-top:5px}.mec-wrap .mec-single-event .mec-event-meta i{float:right;padding-left:5px}.mec-wrap .mec-single-event .mec-event-meta dt,.mec-wrap .mec-single-event .mec-event-meta h3{padding-right:5px}.mec-wrap .mec-single-event .mec-event-meta dd{padding-right:35px;padding-left:0}.mec-wrap .mec-single-event .mec-event-meta .mec-single-event-organizer dd{padding:0}.mec-wrap .mec-single-event .mec-event-meta .mec-single-event-organizer dd a{float:left;position:absolute;margin-right:5px}.mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after{font-family:FontAwesome;color:#40d9f1;font-size:16px;content:"\f104";padding-left:10px}.mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:before{content:"";padding:0}.mec-wrap .mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:left;padding-left:0}.mec-wrap .mec-single-event .mec-events-button{margin:0}.mec-wrap .mec-calendar .mec-event-article .mec-event-image{float:right;margin-left:20px}.mec-wrap .mec-calendar .mec-event-article .mec-event-title{text-align:right;padding:5px}.mec-wrap .mec-calendar .mec-event-article .mec-event-time i{float:right}.mec-wrap .mec-calendar .mec-event-article .mec-event-time.mec-color{float:right}.mec-wrap .mec-calendar .mec-event-article .mec-event-detail{float:right}.mec-wrap .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{float:right}.mec-wrap .mec-event-meta-wrap{border-right:1px solid #eee;border-left:0}.mec-event-meta{float:right}.mec-event-sharing-wrap{right:20px;left:auto}.mec-event-footer .mec-booking-button{right:auto;left:20px}.mec-single-event .mec-single-event-organizer dd span,.mec-wrap .mec-single-event .mec-events-meta-date dd span{padding-bottom:20px}.single-mec-events .mec-wrap .col-md-4{direction:rtl;float:right}.single-mec-events .mec-wrap .mec-single-modern .col-md-4{margin-top:-50px}.mec-events-template-default .mec-wrap .col-md-4{margin-top:0;float:left}.mec-events-template-default .mec-wrap .col-md-8{margin-top:0;float:right}.single-mec-events .mec-single-modern .mec-single-event-bar{padding:14px 0}.single-mec-events .mec-single-modern .col-md-4 .mec-frontbox{margin:0}.mec-single-event .mec-frontbox-title:before,.single-mec-events .mec-single-event .mec-events-meta-group-booking form>h4:before{transform:translate(-50%);margin:0}.single-mec-events .mec-single-event-category,.single-mec-events .mec-single-event-location,.single-mec-events .mec-single-event-organizer{z-index:1}.single-mec-events .mec-single-event .mec-booking-button{position:relative;z-index:2}.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd a i:before{content:'\f104';line-height:32px}.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after{display:none}.single-mec-events .mec-wrap .mec-book-form-btn-wrap{float:right}.mec-wrap .mec-event-list-standard .mec-event-meta-wrap{display:table-cell}.mec-wrap .mec-totalcal-box i{float:right}.mec-wrap i.mec-sl-map-marker{float:right;margin-left:3px}.mec-wrap .mec-event-list-minimal .btn-wrapper .mec-detail-button{float:left}.mec-wrap .mec-event-list-minimal .mec-event-article .col-md-9.col-sm-9{float:right;width:100%}.mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date.mec-bg-color{float:right;margin-right:0;margin-left:10px}.mec-wrap .mec-event-list-minimal .mec-event-date span{padding-left:25px;margin-left:7px;padding-right:0;margin-right:0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{left:0;right:auto}.mec-event-grid-clean .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{float:right;margin-right:0;margin-left:11px}.mec-event-grid-clean .event-grid-t2-head{text-align:right}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-align:right}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{text-align:right}.mec-event-grid-minimal .mec-event-date{margin-right:0;margin-left:20px}.mec-wrap .mec-event-grid-modern .mec-event-article .event-grid-modern-head .mec-event-date.mec-color{margin-left:11px;margin-right:0}.mec-wrap .mec-event-grid-modern .mec-event-content .mec-event-title .event-color{float:right;margin:7px}.mec-wrap .mec-event-grid-modern .mec-event-article h4.mec-event-title{overflow:hidden}.mec-wrap .mec-event-grid-simple article.mec-event-article.mec-clear{text-align:center}.mec-wrap .mec-event-grid-simple article.mec-event-article h4.mec-event-title{text-align:center}.mec-wrap .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right}.mec-wrap .mec-event-article h4.mec-event-title{text-align:right}.mec-wrap .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .event-carousel-type1-head .mec-event-date-carousel{left:auto;right:1px;padding-left:21px;padding-right:25px}.mec-wrap .event-carousel-type1-head .mec-event-date-info-year{right:auto;left:60px}.mec-wrap .event-carousel-type1-head .mec-event-date-info{right:auto;left:60px}.mec-wrap .event-carousel-type1-head .mec-event-date-carousel:after{left:auto;bottom:-13px;right:5px;transform:rotate(-45deg)}.mec-wrap .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{float:left}.mec-wrap .mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:auto;right:-11px}.mec-wrap .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{float:left}.mec-wrap .mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:auto;right:11%}.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before,.mec-wrap .mec-event-list-standard .mec-date-details:before{right:0;text-align:right}.mec-wrap .mec-event-meta.mec-color-before span{margin-right:28px}.mec-wrap .mec-timetable-t2-col{float:right}.mec-wrap .mec-agenda-date-wrap{float:right}.mec-wrap .mec-agenda-events-wrap{float:left}.mec-wrap .mec-yearly-view-wrap .mec-yearly-calendar-sec{float:right}.mec-wrap .mec-yearly-agenda-sec{float:left;padding:0 20px 0 0}.mec-wrap .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:right}.mec-wrap .mec-skin-monthly-view-month-navigator-container .mec-calendar-events-sec h3.mec-color.mec-table-side-day{float:right}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{float:right;border-left:1px solid #e6e6e6}.mec-event-detail.mec-map-view-event-detail{text-align:right}.mec-event-article i{margin-left:0}.mec-wrap .mec-event-cover-clean .mec-event-date{right:auto;left:60px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{padding:50px 4% 50px 1%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:right}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{padding:50px 4% 50px 1%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown{left:20px;right:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-title-link{left:auto;right:190px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{padding-right:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{padding-left:0;padding-right:22px;margin-left:22px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{right:0;left:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-date{left:auto;right:-27px}.mec-wrap .mec-event-countdown-style3 .mec-event-date:after{left:auto;right:8px;transform:rotate(-45deg)}.mec-wrap .mec-masonry .mec-event-content .mec-event-description{display:block;direction:rtl;text-align:right}.mec-wrap .mec-masonry .mec-event-grid-modern .mec-event-content .mec-event-title .event-color{float:left}.mec-wrap .mec-masonry .event-grid-modern-head .mec-event-date{margin:0 0 0 11px}.mec-wrap .mec-masonry .mec-masonry-col6 i{float:right;margin:0 0 0 7px}.mec-event-tile-view article.mec-tile-item .mec-event-time{right:auto;left:4px}.mec-wrap .mec-timetable-t2-content{direction:rtl;text-align:right}.mec-wrap .mec-timetable-t2-content div{text-align:right}.mec-wrap .mec-timetable-t2-content div i{margin-right:0;margin-left:5px}.mec-wrap .mec-timetable-t2-content div span{float:left;text-align:right;width:calc(100% - 22px)}.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover{float:right}.mec-wrap .mec-event-content .mec-event-title .event-color{float:left}.mec-wrap .mec-slider-t1 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t1 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t1 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t1 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t1 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-event-grid-modern .mec-event-footer .mec-booking-button{left:auto;right:0}.mec-wrap .mec-slider-t1 .mec-slider-t1-img{float:left}.mec-wrap .mec-slider-t2 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t2 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t2 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t2 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t2 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-event-grid-modern .mec-event-footer .mec-booking-button{left:auto;right:0}.mec-wrap .mec-event-grid-modern .mec-event-sharing-wrap{left:0;right:auto}.mec-wrap .mec-slider-t2-wrap .mec-owl-theme .owl-nav div.owl-prev{left:30px;right:auto}.mec-wrap .mec-slider-t2-wrap .mec-owl-theme .owl-nav div.owl-next{left:82px;right:auto}.mec-wrap .mec-slider-t2-content.mec-event-grid-modern.mec-bg-color{left:0}.mec-wrap .mec-slider-t2 .mec-slider-t2-img{left:auto;right:0}.mec-wrap .mec-slider-t3 .mec-slider-t3-content{width:95%}.mec-wrap .mec-slider-t3 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t3 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t3 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t3 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t3 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-slider-t3 .mec-slider-t3-footer a.mec-booking-button{float:right;margin-bottom:11px}.mec-wrap .mec-slider-t4 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t4 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t4 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t4 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t4 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-slider-t4 .mec-slider-t4-footer a.mec-booking-button{float:right;margin-bottom:11px}.mec-slider-t4-content.mec-event-grid-modern{left:auto;right:8%}.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-prev{left:30px;right:auto}.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-next{left:82px;right:auto}.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{direction:rtl;text-align:right}.mec-fes-form .mec-fes-form-cntt{float:right;padding-right:0;padding-left:20px}.mec-fes-form .mec-fes-form-sdbr{padding-right:20px;padding-left:0}.mec-fes-form .mec-fes-form-cntt .mec-col-4,.mec-fes-form .mec-fes-form-sdbr .mec-col-4{float:unset}@media only screen and (max-width:768px){.mec-event-list-modern .col-md-2.col-sm-2{left:auto;right:0}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{right:auto;left:0}.mec-wrap .mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-date{right:0}.mec-wrap .mec-event-countdown-style3 .mec-event-title-link{right:130px}}@media only screen and (min-width:480px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{float:left}}.mec-wrap .mec-event-content .mec-event-title .event-color{float:right;margin-top:10px}.mec-event-list-standard .mec-event-title,.mec-wrap .mec-event-content .mec-event-description,.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover{display:flex}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{text-align:right;padding-right:28px;direction:rtl}.mec-wrap .mec-event-meta.mec-color-before,.mec-wrap .mec-event-meta.mec-color-before span{margin:0;marign-left:28px;direction:rtl;text-align:right}.mec-skin-daily-view-events-container .mec-owl-carousel .owl-wrapper{display:inline-flex!important;width:100%!important}.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:right;margin:0 0 0 1%}
|
1 |
+
.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-organizer i{margin-left:10px;margin-right:12px}.event-color,.mec-event-schedule-content,.mec-single-event .mec-frontbox-title:before{margin-left:0}.mec-event-cover-classic .mec-event-icon{margin-left:14px}.event-color{margin-right:5px}.mec-event-list-classic .mec-event-image{margin-left:20px}.mec-event-article i{margin-left:10px}.mec-event-cover-classic .mec-event-icon,.mec-event-list-classic .mec-event-image{margin-right:0}.mec-single-event .mec-frontbox-title:before{margin-right:39px}.mec-event-schedule-content{margin-right:25px}.mec-event-schedule-content dl,.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{padding-left:0}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{padding-right:10px}.mec-event-schedule-content dl{padding-right:24px}.mec-event-schedule-content{border:0}.mec-event-schedule-content{border-right:4px solid #f0f0f0}.mec-event-cover-modern .mec-event-cover-a,.mec-event-schedule-content dl:before{left:auto}.mec-event-cover-modern .mec-event-cover-a,.mec-event-schedule-content dl:before{right:0}.mec-event-cover-classic .mec-event-icon,.mec-event-list-classic .mec-event-image{float:right}.mec-event-cover-classic .mec-btn-wrapper{text-align:right}.mec-wrap .mec-calendar-topsec .mec-calendar-events-sec .mec-table-side-day{padding:0}.mec-wrap article.mec-event-article.mec-clear{text-align:right}.mec-wrap .mec-event-article .mec-event-content p{text-align:right}.mec-wrap .button,.mec-wrap button,.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{margin:0}.mec-wrap .mec-events-meta-group-booking .mec-book-price-details li{float:right}.mec-wrap .mec-events-meta-group-booking .mec-book-price-details{width:330px}.mec-wrap .mec-marker-wrap .mec-marker-pulse{margin:-15px 28px 1px 40px}.mec-wrap .mec-marker-wrap .mec-marker-pulse:after{margin:-13px -13px 0 0}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{float:left}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{float:right;margin:5px}.mec-fes-form #mec_fes_form .mec-form-row #mec_cost{float:none}.mec-fes-form label{padding-right:0}.mec-wrap .mec-totalcal-box i{float:right;text-align:center}.mec-totalcal-box .mec-date-search{float:left}.mec-wrap .mec-single-modern .mec-single-event-bar>div i{float:right;padding-left:10px}.mec-wrap .mec-single-modern .mec-single-event-bar dd{margin:0 30px 0 0;padding:0}.mec-wrap .mec-event-meta.mec-color-before.mec-frontbox{width:100%}.mec-wrap .mec-single-modern .mec-event-meta .mec-single-event-organizer dd a{float:left;position:absolute;margin-right:5px}.mec-wrap .mec-single-event .mec-single-event-organizer i{margin-top:5px}.mec-wrap .mec-single-event .mec-event-meta i{float:right;padding-left:5px}.mec-wrap .mec-single-event .mec-event-meta dt,.mec-wrap .mec-single-event .mec-event-meta h3{padding-right:5px}.mec-wrap .mec-single-event .mec-event-meta dd{padding-right:35px;padding-left:0}.mec-wrap .mec-single-event .mec-event-meta .mec-single-event-organizer dd{padding:0}.mec-wrap .mec-single-event .mec-event-meta .mec-single-event-organizer dd a{float:left;position:absolute;margin-right:5px}.mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after{font-family:FontAwesome;color:#40d9f1;font-size:16px;content:"\f104";padding-left:10px}.mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:before{content:"";padding:0}.mec-wrap .mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:left;padding-left:0}.mec-wrap .mec-single-event .mec-events-button{margin:0}.mec-wrap .mec-calendar .mec-event-article .mec-event-image{float:right;margin-left:20px}.mec-wrap .mec-calendar .mec-event-article .mec-event-title{text-align:right;padding:5px}.mec-wrap .mec-calendar .mec-event-article .mec-event-time i{float:right}.mec-wrap .mec-calendar .mec-event-article .mec-event-time.mec-color{float:right}.mec-wrap .mec-calendar .mec-event-article .mec-event-detail{float:right}.mec-wrap .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{float:right}.mec-wrap .mec-event-meta-wrap{border-right:1px solid #eee;border-left:0}.mec-event-meta{float:right}.mec-event-sharing-wrap{right:20px;left:auto}.mec-event-footer .mec-booking-button{right:auto;left:20px}.mec-single-event .mec-single-event-organizer dd span,.mec-wrap .mec-single-event .mec-events-meta-date dd span{padding-bottom:20px}.single-mec-events .mec-wrap .col-md-4{direction:rtl;float:right}.single-mec-events .mec-wrap .mec-single-modern .col-md-4{margin-top:-50px}.mec-events-template-default .mec-wrap .col-md-4{margin-top:0;float:left}.mec-events-template-default .mec-wrap .col-md-8{margin-top:0;float:right}.single-mec-events .mec-single-modern .mec-single-event-bar{padding:14px 0}.single-mec-events .mec-single-modern .col-md-4 .mec-frontbox{margin:0}.mec-single-event .mec-frontbox-title:before,.single-mec-events .mec-single-event .mec-events-meta-group-booking form>h4:before{transform:translate(-50%);margin:0}.single-mec-events .mec-single-event-category,.single-mec-events .mec-single-event-location,.single-mec-events .mec-single-event-organizer{z-index:1}.single-mec-events .mec-single-event .mec-booking-button{position:relative;z-index:2}.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd a i:before{content:'\f104';line-height:32px}.single-mec-events .mec-wrap .mec-single-event .mec-event-meta dd.mec-events-event-categories:after{display:none}.single-mec-events .mec-wrap .mec-book-form-btn-wrap{float:right}.mec-wrap .mec-event-list-standard .mec-event-meta-wrap{display:table-cell}.mec-wrap .mec-totalcal-box i{float:right}.mec-wrap i.mec-sl-map-marker{float:right;margin-left:3px}.mec-wrap .mec-event-list-minimal .btn-wrapper .mec-detail-button{float:left}.mec-wrap .mec-event-list-minimal .mec-event-article .col-md-9.col-sm-9{float:right;width:100%}.mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date.mec-bg-color{float:right;margin-right:0;margin-left:10px}.mec-wrap .mec-event-list-minimal .mec-event-date span{padding-left:25px;margin-left:7px;padding-right:0;margin-right:0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{left:0;right:auto}.mec-event-grid-clean .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{float:right;margin-right:0;margin-left:11px}.mec-event-grid-clean .event-grid-t2-head{text-align:right}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-align:right}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{text-align:right}.mec-event-grid-minimal .mec-event-date{margin-right:0;margin-left:20px}.mec-wrap .mec-event-grid-modern .mec-event-article .event-grid-modern-head .mec-event-date.mec-color{margin-left:11px;margin-right:0}.mec-wrap .mec-event-grid-modern .mec-event-content .mec-event-title .event-color{float:right;margin:7px}.mec-wrap .mec-event-grid-modern .mec-event-article h4.mec-event-title{overflow:hidden}.mec-wrap .mec-event-grid-simple article.mec-event-article.mec-clear{text-align:center}.mec-wrap .mec-event-grid-simple article.mec-event-article h4.mec-event-title{text-align:center}.mec-wrap .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right}.mec-wrap .mec-event-article h4.mec-event-title{text-align:right}.mec-wrap .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .event-carousel-type1-head .mec-event-date-carousel{left:auto;right:1px;padding-left:21px;padding-right:25px}.mec-wrap .event-carousel-type1-head .mec-event-date-info-year{right:auto;left:60px}.mec-wrap .event-carousel-type1-head .mec-event-date-info{right:auto;left:60px}.mec-wrap .event-carousel-type1-head .mec-event-date-carousel:after{left:auto;bottom:-13px;right:5px;transform:rotate(-45deg)}.mec-wrap .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{float:left}.mec-wrap .mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:auto;right:-11px}.mec-wrap .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{float:left}.mec-wrap .mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:auto;right:11%}.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before,.mec-wrap .mec-event-list-standard .mec-date-details:before{right:0;text-align:right}.mec-wrap .mec-event-meta.mec-color-before span{margin-right:28px}.mec-wrap .mec-timetable-t2-col{float:right}.mec-wrap .mec-agenda-date-wrap{float:right}.mec-wrap .mec-agenda-events-wrap{float:left}.mec-wrap .mec-yearly-view-wrap .mec-yearly-calendar-sec{float:right}.mec-wrap .mec-yearly-agenda-sec{float:left;padding:0 20px 0 0}.rtl .mec-yearly-view-wrap .mec-yearly-title-sec{direction:rtl}.rtl .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:20px;left:auto}.rtl .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:20px;right:auto;direction:ltr}.rtl .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year .mec-sl-angle-right:before{content:"\e605"}.rtl .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year .mec-sl-angle-left:before{content:"\e606"}.mec-wrap .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:right}.mec-wrap .mec-skin-monthly-view-month-navigator-container .mec-calendar-events-sec h3.mec-color.mec-table-side-day{float:right}.rtl .mec-calendar.mec-event-calendar-classic dl dt{text-align:right}.rtl .mec-calendar.mec-event-calendar-classic .mec-has-event:after{left:auto;right:7px}.rtl .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:auto}.rtl .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:auto}.rtl .mec-wrap .mec-calendar .mec-event-article .mec-event-title{direction:rtl}.rtl .mec-calendar .mec-calendar-events-side{border-right:1px solid #efefef}.rtl .mec-calendar .mec-event-article,.rtl .mec-month-navigator{direction:ltr}.rtl .mec-calendar .mec-calendar-side .mec-previous-month{border-bottom-left-radius:6px;border-bottom-right-radius:0;border-left:1px solid #efefef;border-right:0;left:auto;right:0;direction:rtl}.rtl .mec-wrap .mec-calendar .mec-event-article .mec-event-image{float:right;margin-left:20px;margin-right:0}.rtl .mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.rtl .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:auto;left:-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)}.rtl .mec-calendar .mec-calendar-side .mec-next-month{border-bottom-right-radius:6px;border-bottom-left-radius:0;border-right:1px solid #efefef;border-left:0;left:0;right:auto;direction:rtl}.rtl .mec-calendar .mec-calendar-side .mec-next-month .mec-sl-angle-right:before{content:"\e605"}.rtl .mec-calendar .mec-calendar-side .mec-previous-month .mec-sl-angle-left:before{content:"\e606"}.rtl .event-color,.rtl .mec-event-article i{margin-right:0;margin-right:10px}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{float:right;border-left:1px solid #e6e6e6}.mec-event-detail.mec-map-view-event-detail{text-align:right}.mec-event-article i{margin-left:0}.mec-wrap .mec-event-cover-clean .mec-event-date{right:auto;left:60px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{padding:50px 4% 50px 1%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:right}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{padding:50px 4% 50px 1%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown{left:20px;right:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-title-link{left:auto;right:190px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{padding-right:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{padding-left:0;padding-right:22px;margin-left:22px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{right:0;left:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-date{left:auto;right:-27px}.mec-wrap .mec-event-countdown-style3 .mec-event-date:after{left:auto;right:8px;transform:rotate(-45deg)}.mec-wrap .mec-masonry .mec-event-content .mec-event-description{display:block;direction:rtl;text-align:right}.mec-wrap .mec-masonry .mec-event-grid-modern .mec-event-content .mec-event-title .event-color{float:left}.mec-wrap .mec-masonry .event-grid-modern-head .mec-event-date{margin:0 0 0 11px}.mec-wrap .mec-masonry .mec-masonry-col6 i{float:right;margin:0 0 0 7px}.mec-event-tile-view article.mec-tile-item .mec-event-time{right:auto;left:4px}.mec-wrap .mec-timetable-t2-content{direction:rtl;text-align:right}.mec-wrap .mec-timetable-t2-content div{text-align:right}.mec-wrap .mec-timetable-t2-content div i{margin-right:0;margin-left:5px}.mec-wrap .mec-timetable-t2-content div span{float:left;text-align:right;width:calc(100% - 22px)}.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover{float:right}.mec-wrap .mec-event-content .mec-event-title .event-color{float:left}.mec-wrap .mec-slider-t1 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t1 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t1 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t1 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t1 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-event-grid-modern .mec-event-footer .mec-booking-button{left:auto;right:0}.mec-wrap .mec-slider-t1 .mec-slider-t1-img{float:left}.mec-wrap .mec-slider-t2 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t2 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t2 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t2 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t2 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-event-grid-modern .mec-event-footer .mec-booking-button{left:auto;right:0}.mec-wrap .mec-event-grid-modern .mec-event-sharing-wrap{left:0;right:auto}.mec-wrap .mec-slider-t2-wrap .mec-owl-theme .owl-nav div.owl-prev{left:30px;right:auto}.mec-wrap .mec-slider-t2-wrap .mec-owl-theme .owl-nav div.owl-next{left:82px;right:auto}.mec-wrap .mec-slider-t2-content.mec-event-grid-modern.mec-bg-color{left:0}.mec-wrap .mec-slider-t2 .mec-slider-t2-img{left:auto;right:0}.mec-wrap .mec-slider-t3 .mec-slider-t3-content{width:95%}.mec-wrap .mec-slider-t3 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t3 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t3 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t3 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t3 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-slider-t3 .mec-slider-t3-footer a.mec-booking-button{float:right;margin-bottom:11px}.mec-wrap .mec-slider-t4 .mec-event-grid-modern .event-grid-modern-head .mec-event-date{float:right;margin:0 0 0 11px}.mec-wrap .mec-slider-t4 .mec-event-grid-modern .event-grid-modern-head.clearfix{text-align:right}.mec-wrap .mec-slider-t4 .mec-event-content h4.mec-event-title{overflow:hidden;text-align:right}.mec-wrap .mec-slider-t4 .mec-event-content span.event-color{float:right;margin:10px}.mec-wrap .mec-slider-t4 .mec-event-content .mec-event-detail{display:block;text-align:right}.mec-wrap .mec-slider-t4 .mec-slider-t4-footer a.mec-booking-button{float:right;margin-bottom:11px}.mec-slider-t4-content.mec-event-grid-modern{left:auto;right:8%}.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-prev{left:30px;right:auto}.mec-wrap .mec-slider-t4-wrap .mec-owl-theme .owl-nav div.owl-next{left:82px;right:auto}.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{direction:rtl;text-align:right}.mec-fes-form .mec-fes-form-cntt{float:right;padding-right:0;padding-left:20px}.mec-fes-form .mec-fes-form-sdbr{padding-right:20px;padding-left:0}.mec-fes-form .mec-fes-form-cntt .mec-col-4,.mec-fes-form .mec-fes-form-sdbr .mec-col-4{float:unset}@media only screen and (max-width:768px){.mec-event-list-modern .col-md-2.col-sm-2{left:auto;right:0}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{right:auto;left:0}.mec-wrap .mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-date{right:0}.mec-wrap .mec-event-countdown-style3 .mec-event-title-link{right:130px}}@media only screen and (min-width:480px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{float:left}}.mec-wrap .mec-event-content .mec-event-title .event-color{float:right;margin-top:10px}.mec-event-list-standard .mec-event-title,.mec-wrap .mec-event-content .mec-event-description,.mec-wrap .mec-event-content .mec-event-title a.mec-color-hover{display:flex}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{text-align:right;padding-right:28px;direction:rtl}.mec-wrap .mec-event-meta.mec-color-before,.mec-wrap .mec-event-meta.mec-color-before span{margin:0;marign-left:28px;direction:rtl;text-align:right}.mec-skin-daily-view-events-container .mec-owl-carousel .owl-wrapper{display:inline-flex!important;width:100%!important}.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:right;margin:0 0 0 1%}
|
@@ -1,5 +1,32 @@
|
|
1 |
-
v 5.6.
|
2 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
- Added: Multiple occurrences in one day
|
4 |
- Added: %%ticket_name_time%% placeholder in notifications (pro)
|
5 |
- Added: An option to disable booking restrictions with User IP (pro)
|
@@ -22,7 +49,7 @@
|
|
22 |
- Fixed: Showing sold-out flag (pro)
|
23 |
- Fixed: Related events module
|
24 |
|
25 |
-
v 5.5.0 – 1 June
|
26 |
- Added: Price display in all views of full calendar skin
|
27 |
- Added: A default comment for payment gateways (pro)
|
28 |
- Added: Total bookings widget in the WordPress dashboard (pro)
|
1 |
+
v 5.6.1 – 16 June 2020
|
2 |
+
- Improved: Backend speed by refactoring the backend CSS and JS loading
|
3 |
+
- Improved: Show errors upon featured image uploads in Frontend Event Submission if needed
|
4 |
+
- Improved: The plugin uninstallation by removing more data
|
5 |
+
- Improved: The related events module by hiding expired events
|
6 |
+
- Improved: The loading of multiple day events in tile and agenda skins (pro)
|
7 |
+
- Improved: The attendees module of BuddyPress integration (pro)
|
8 |
+
- Updated: Whatsapp share URL
|
9 |
+
- Optimized: Mass email sending in the reports menu (pro)
|
10 |
+
- Fixed: Local time module that occurs in some rare conditions
|
11 |
+
- Fixed: Location auto-suggest fields when the API key is not inserted (pro)
|
12 |
+
- Fixed: Booking message in case of free booking (pro)
|
13 |
+
- Fixed: Booking module regarding displaying extra elements after a successful booking (pro)
|
14 |
+
- Fixed: Notification placeholders (pro)
|
15 |
+
- Fixed: Ordering custom days events
|
16 |
+
- Fixed: Google Calendar import
|
17 |
+
- Fixed: Stripe payment (pro)
|
18 |
+
- Fixed: Default configuration of full calendar skin
|
19 |
+
- Fixed: Divi builder in Divi child themes
|
20 |
+
- Fixed: Availability of “Sell all occurrences” events (pro)
|
21 |
+
- Fixed: Some issues in profile short-code regarding date and time format (pro)
|
22 |
+
- Fixed: Some issues related to Pro features in Lite version
|
23 |
+
- Fixed: Monthly Calendar RTL
|
24 |
+
- Fixed: Wizard dark mode
|
25 |
+
- Fixed: Wizard time picker
|
26 |
+
- Fixed: A conflict with “Admin column” plugin
|
27 |
+
|
28 |
+
v 5.6.0 – 11 June 2020
|
29 |
+
- Refactored: Booking system to be compatible with multiple occurrences in one day (pro)
|
30 |
- Added: Multiple occurrences in one day
|
31 |
- Added: %%ticket_name_time%% placeholder in notifications (pro)
|
32 |
- Added: An option to disable booking restrictions with User IP (pro)
|
49 |
- Fixed: Showing sold-out flag (pro)
|
50 |
- Fixed: Related events module
|
51 |
|
52 |
+
v 5.5.0 – 1 June 2020
|
53 |
- Added: Price display in all views of full calendar skin
|
54 |
- Added: A default comment for payment gateways (pro)
|
55 |
- Added: Total bookings widget in the WordPress dashboard (pro)
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
-
"POT-Creation-Date: 2020-06-
|
5 |
-
"PO-Revision-Date: 2020-06-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
@@ -23,7 +23,7 @@ msgstr ""
|
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
26 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
27 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
28 |
msgid "Modern Events Calendar"
|
29 |
msgstr "Moderní kalendář událostí"
|
@@ -347,7 +347,7 @@ msgid "Edit Event"
|
|
347 |
msgstr "Editace události"
|
348 |
|
349 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
350 |
-
#: app/features/popup/event.php:
|
351 |
msgid "View Event"
|
352 |
msgstr "Zobrazit událost"
|
353 |
|
@@ -369,8 +369,8 @@ msgstr "V koši nebyly nalezeny žádné události!"
|
|
369 |
#: app/features/mec/meta_boxes/search_form.php:654
|
370 |
#: app/features/mec/meta_boxes/search_form.php:760
|
371 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
372 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
373 |
-
#: app/libraries/skins.php:
|
374 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
375 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
376 |
#: app/skins/single/modern.php:137
|
@@ -380,7 +380,7 @@ msgstr "Kategorie"
|
|
380 |
#: app/features/events.php:186 app/features/events.php:3193
|
381 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
382 |
#: app/features/mec/meta_boxes/filter.php:69
|
383 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
384 |
msgid "Categories"
|
385 |
msgstr "Kategorie"
|
386 |
|
@@ -469,7 +469,7 @@ msgid "Event Repeating"
|
|
469 |
msgstr "Opakování události"
|
470 |
|
471 |
#: app/features/events.php:336 app/features/events.php:1215
|
472 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
473 |
msgid "Hourly Schedule"
|
474 |
msgstr "Hodinový rozvrh"
|
475 |
|
@@ -503,18 +503,18 @@ msgstr "Odkaz"
|
|
503 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
504 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
505 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
506 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
507 |
-
#: app/features/popup/event.php:
|
508 |
-
#: app/libraries/main.php:
|
509 |
-
#: app/skins/single.php:
|
510 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
511 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
512 |
msgid "Organizer"
|
513 |
msgstr "Organizátor"
|
514 |
|
515 |
#: app/features/events.php:340 app/features/events.php:1092
|
516 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
517 |
-
#: app/skins/single.php:
|
518 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
519 |
#: app/skins/single/modern.php:234
|
520 |
msgid "Cost"
|
@@ -538,8 +538,8 @@ msgstr "Údaje hosta"
|
|
538 |
#: app/features/events.php:3769 app/features/fes.php:223
|
539 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
540 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
541 |
-
#: app/features/popup/event.php:
|
542 |
-
#: app/libraries/notifications.php:
|
543 |
msgid "Name"
|
544 |
msgstr "Jméno"
|
545 |
|
@@ -551,9 +551,9 @@ msgstr "Jméno"
|
|
551 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
552 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
553 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
554 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
555 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
556 |
-
#: app/skins/single.php:
|
557 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
558 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
559 |
#: app/skins/single/modern.php:62
|
@@ -569,7 +569,7 @@ msgstr "Datum a čas"
|
|
569 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
570 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
571 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
572 |
-
#: app/features/mec.php:
|
573 |
#: app/features/mec/meta_boxes/display_options.php:278
|
574 |
#: app/features/mec/meta_boxes/display_options.php:517
|
575 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -593,12 +593,12 @@ msgstr "Počátečná den"
|
|
593 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
594 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
595 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
596 |
-
#: app/features/mec.php:
|
597 |
msgid "End Date"
|
598 |
msgstr "Konečný den"
|
599 |
|
600 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
601 |
-
#: app/features/popup/event.php:
|
602 |
#, fuzzy
|
603 |
#| msgid "All Day Event"
|
604 |
msgid "All-day Event"
|
@@ -640,7 +640,7 @@ msgstr ""
|
|
640 |
#: app/features/events.php:2151 app/features/events.php:2166
|
641 |
#: app/features/events.php:2196 app/features/events.php:2209
|
642 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
643 |
-
#: app/features/locations.php:
|
644 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
645 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
646 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -704,8 +704,8 @@ msgstr ""
|
|
704 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
705 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
706 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
707 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
708 |
-
#: app/features/popup/event.php:
|
709 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
710 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
711 |
#: app/skins/single/modern.php:160
|
@@ -725,7 +725,7 @@ msgid "Repeats"
|
|
725 |
msgstr "Opakování"
|
726 |
|
727 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
728 |
-
#: app/features/mec.php:
|
729 |
#: app/skins/full_calendar/tpl.php:121
|
730 |
msgid "Daily"
|
731 |
msgstr "Děnně"
|
@@ -749,13 +749,13 @@ msgid "Weekly"
|
|
749 |
msgstr "Týdně"
|
750 |
|
751 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
752 |
-
#: app/features/mec.php:
|
753 |
#: app/skins/full_calendar/tpl.php:119
|
754 |
msgid "Monthly"
|
755 |
msgstr "Měsíčně"
|
756 |
|
757 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
758 |
-
#: app/features/mec.php:
|
759 |
#: app/skins/full_calendar/tpl.php:118
|
760 |
msgid "Yearly"
|
761 |
msgstr "Ročně"
|
@@ -892,7 +892,7 @@ msgstr "Další výskyt dalších událostí"
|
|
892 |
#: app/features/events.php:1088 app/features/events.php:3431
|
893 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
894 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
895 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
896 |
#: app/widgets/single.php:103
|
897 |
msgid "Event Cost"
|
898 |
msgstr "Cena události"
|
@@ -908,8 +908,8 @@ msgstr "Vyloučit určité dny"
|
|
908 |
#: app/features/events.php:1124 app/features/events.php:2330
|
909 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
910 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
911 |
-
#: app/modules/booking/steps/tickets.php:
|
912 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
913 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
914 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
915 |
msgid "Date"
|
@@ -999,7 +999,7 @@ msgstr "Popis"
|
|
999 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
1000 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
1001 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
1002 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
1003 |
#: app/modules/speakers/details.php:18
|
1004 |
msgid "Speakers"
|
1005 |
msgstr "Řečníci"
|
@@ -1014,7 +1014,7 @@ msgid "Event Links"
|
|
1014 |
msgstr "Odkazy na událost"
|
1015 |
|
1016 |
#: app/features/events.php:1408 app/features/events.php:1414
|
1017 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
1018 |
msgid "Event Link"
|
1019 |
msgstr "Odkaz na událost"
|
1020 |
|
@@ -1043,8 +1043,8 @@ msgid "URL Shortener"
|
|
1043 |
msgstr "Zkracovač URL"
|
1044 |
|
1045 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1046 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
1047 |
-
#: app/skins/single.php:
|
1048 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1049 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1050 |
#: app/widgets/single.php:107
|
@@ -1082,8 +1082,8 @@ msgid "Total User Booking Limits"
|
|
1082 |
msgstr "Celkové limity rezervace uživatelů"
|
1083 |
|
1084 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1085 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
1086 |
-
#: app/modules/booking/steps/tickets.php:
|
1087 |
msgid "Tickets"
|
1088 |
msgstr "Vstupenky"
|
1089 |
|
@@ -1109,7 +1109,7 @@ msgstr "Celkové limity rezervace"
|
|
1109 |
|
1110 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1111 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1112 |
-
#: app/modules/booking/steps/tickets.php:
|
1113 |
#: app/skins/available_spot/tpl.php:142
|
1114 |
msgid "Unlimited"
|
1115 |
msgstr "Neomezené"
|
@@ -1278,7 +1278,7 @@ msgstr "Cena za datum"
|
|
1278 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1279 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1280 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1281 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1282 |
msgid "Label"
|
1283 |
msgstr "Štítek"
|
1284 |
|
@@ -1496,8 +1496,8 @@ msgstr "Limit účastníků"
|
|
1496 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1497 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1498 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1499 |
-
#: app/features/locations.php:
|
1500 |
-
#: app/features/locations.php:
|
1501 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1502 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1503 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1511,10 +1511,10 @@ msgstr "Limit účastníků"
|
|
1511 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1512 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1513 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1514 |
-
#: app/features/popup/event.php:
|
1515 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1516 |
-
#: app/libraries/main.php:
|
1517 |
-
#: app/skins/single.php:
|
1518 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1519 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1520 |
#: app/skins/single/modern.php:113
|
@@ -1556,7 +1556,7 @@ msgstr "Duplikát"
|
|
1556 |
|
1557 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1558 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1559 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1560 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1561 |
msgid "ID"
|
1562 |
msgstr "ID"
|
@@ -1578,7 +1578,7 @@ msgstr "%s Email"
|
|
1578 |
|
1579 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1580 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1581 |
-
#: app/libraries/main.php:
|
1582 |
msgid "Ticket"
|
1583 |
msgstr "Vstupenka"
|
1584 |
|
@@ -1790,7 +1790,7 @@ msgid "eg. yourname@gmail.com"
|
|
1790 |
msgstr "např. vasejmeno@gmail.com"
|
1791 |
|
1792 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1793 |
-
#: app/features/popup/event.php:
|
1794 |
msgid "eg. John Smith"
|
1795 |
msgstr "např. Jan Novák"
|
1796 |
|
@@ -1818,8 +1818,8 @@ msgstr "Odebrat obrázek"
|
|
1818 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1819 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1820 |
#: app/features/mec/meta_boxes/filter.php:72
|
1821 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1822 |
-
#: app/skins/single.php:
|
1823 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1824 |
#: app/skins/single/modern.php:249
|
1825 |
msgid "Labels"
|
@@ -2620,7 +2620,7 @@ msgid "Featured"
|
|
2620 |
msgstr "Ztvárněná"
|
2621 |
|
2622 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2623 |
-
#: app/libraries/main.php:
|
2624 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2625 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2626 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2638,31 +2638,31 @@ msgstr "Zrušená"
|
|
2638 |
msgid "You can show featured and canceled events by a different style!"
|
2639 |
msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
|
2640 |
|
2641 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2642 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2643 |
-
#: app/modules/booking/steps/tickets.php:
|
2644 |
msgid "Count"
|
2645 |
msgstr "Spočítat"
|
2646 |
|
2647 |
# Nenanpadá mě správný český termín
|
2648 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2649 |
#: app/features/organizers.php:207
|
2650 |
msgid "Slug"
|
2651 |
msgstr "Slug"
|
2652 |
|
2653 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2654 |
#, php-format
|
2655 |
msgid "Event %s"
|
2656 |
msgstr "Událost %s"
|
2657 |
|
2658 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2659 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2660 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2661 |
msgid "Locations"
|
2662 |
msgstr "Umístění"
|
2663 |
|
2664 |
-
#: app/features/locations.php:
|
2665 |
-
#: app/features/locations.php:
|
2666 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2667 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2668 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2677,95 +2677,95 @@ msgstr "Umístění"
|
|
2677 |
msgid "Address"
|
2678 |
msgstr "Adresa"
|
2679 |
|
2680 |
-
#: app/features/locations.php:
|
2681 |
msgid "Enter the location address"
|
2682 |
msgstr "Vložit adresu místa"
|
2683 |
|
2684 |
-
#: app/features/locations.php:
|
2685 |
-
#: app/features/locations.php:
|
2686 |
msgid "Latitude"
|
2687 |
msgstr "Zeměpisná šířka"
|
2688 |
|
2689 |
-
#: app/features/locations.php:
|
2690 |
msgid "Geo latitude (Optional)"
|
2691 |
msgstr "Zeměpisná šířka (volitelné)"
|
2692 |
|
2693 |
-
#: app/features/locations.php:
|
2694 |
-
#: app/features/locations.php:
|
2695 |
msgid "Longitude"
|
2696 |
msgstr "Zeměpisná délka"
|
2697 |
|
2698 |
-
#: app/features/locations.php:
|
2699 |
msgid "Geo longitude (Optional)"
|
2700 |
msgstr "Zeměpisná délka (volitelné)"
|
2701 |
|
2702 |
-
#: app/features/locations.php:
|
2703 |
-
#: app/features/locations.php:
|
2704 |
#, fuzzy
|
2705 |
#| msgid "Locations"
|
2706 |
msgid "Location Website"
|
2707 |
msgstr "Umístění"
|
2708 |
|
2709 |
-
#: app/features/locations.php:
|
2710 |
#, fuzzy
|
2711 |
#| msgid "Geo latitude (Optional)"
|
2712 |
msgid "Location Website (Optional)"
|
2713 |
msgstr "Zeměpisná šířka (volitelné)"
|
2714 |
|
2715 |
-
#: app/features/locations.php:
|
2716 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2717 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2718 |
msgid "Thumbnail"
|
2719 |
msgstr "Náhled"
|
2720 |
|
2721 |
-
#: app/features/locations.php:
|
2722 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2723 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2724 |
msgid "Upload/Add image"
|
2725 |
msgstr "Nahrát / přidat obrázek"
|
2726 |
|
2727 |
-
#: app/features/locations.php:
|
2728 |
-
#: app/features/locations.php:
|
2729 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2730 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2731 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2732 |
msgid "Remove image"
|
2733 |
msgstr "Odebrat obrázek"
|
2734 |
|
2735 |
-
#: app/features/locations.php:
|
2736 |
msgid "Hide location"
|
2737 |
msgstr "Skrýt místo"
|
2738 |
|
2739 |
-
#: app/features/locations.php:
|
2740 |
msgid "Insert a new location"
|
2741 |
msgstr "Vložit nové místo"
|
2742 |
|
2743 |
-
#: app/features/locations.php:
|
2744 |
msgid "Choose one of saved locations or insert new one below."
|
2745 |
msgstr "Vyberte jedno z uložených míst nebo vložte nové."
|
2746 |
|
2747 |
-
#: app/features/locations.php:
|
2748 |
msgid "Location Name"
|
2749 |
msgstr "Název místa"
|
2750 |
|
2751 |
-
#: app/features/locations.php:
|
2752 |
msgid "eg. City Hall"
|
2753 |
msgstr "např. Radnice"
|
2754 |
|
2755 |
-
#: app/features/locations.php:
|
2756 |
-
#: app/features/popup/event.php:
|
2757 |
msgid "Event Location"
|
2758 |
msgstr "Místo události"
|
2759 |
|
2760 |
-
#: app/features/locations.php:
|
2761 |
msgid "eg. City hall, Manhattan, New York"
|
2762 |
msgstr "např. Radnice, Dominikánská 2, Brno"
|
2763 |
|
2764 |
-
#: app/features/locations.php:
|
2765 |
msgid "Latitude/Longitude"
|
2766 |
msgstr "Zeměpisná šířka / délka"
|
2767 |
|
2768 |
-
#: app/features/locations.php:
|
2769 |
msgid ""
|
2770 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2771 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2779,24 +2779,24 @@ msgstr ""
|
|
2779 |
"místo, použijte název místa, města, státu nebo adresy nebo klikněte na místo "
|
2780 |
"na mapě a vyhledejte souřadnice délky a šířky."
|
2781 |
|
2782 |
-
#: app/features/locations.php:
|
2783 |
msgid "Get Latitude and Longitude"
|
2784 |
msgstr "Získejte šířku a délku"
|
2785 |
|
2786 |
-
#: app/features/locations.php:
|
2787 |
-
#: app/features/popup/event.php:
|
2788 |
msgid "Choose image"
|
2789 |
msgstr "Vyberte obrázek"
|
2790 |
|
2791 |
-
#: app/features/locations.php:
|
2792 |
msgid "Don't show map in single event page"
|
2793 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2794 |
|
2795 |
-
#: app/features/locations.php:
|
2796 |
msgid "Other Locations"
|
2797 |
msgstr "Další místa"
|
2798 |
|
2799 |
-
#: app/features/locations.php:
|
2800 |
msgid ""
|
2801 |
"You can select extra locations in addition to main location if you like."
|
2802 |
msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
|
@@ -2876,7 +2876,7 @@ msgstr "Podpora"
|
|
2876 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2877 |
#: app/features/mec/meta_boxes/filter.php:71
|
2878 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2879 |
-
#: app/libraries/main.php:
|
2880 |
msgid "Organizers"
|
2881 |
msgstr "Organizátoři"
|
2882 |
|
@@ -2915,7 +2915,7 @@ msgstr "Export"
|
|
2915 |
msgid "MEC - Go Pro"
|
2916 |
msgstr "MEC - podpora"
|
2917 |
|
2918 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2919 |
#: app/features/mec/go-pro.php:9
|
2920 |
msgid "Go Pro"
|
2921 |
msgstr ""
|
@@ -2974,73 +2974,73 @@ msgstr "Samostatné okno"
|
|
2974 |
msgid "Modal Popup"
|
2975 |
msgstr "Modal 1"
|
2976 |
|
2977 |
-
#: app/features/mec.php:
|
2978 |
msgid "Total Bookings"
|
2979 |
msgstr "Celkový počet rezervací"
|
2980 |
|
2981 |
-
#: app/features/mec.php:
|
2982 |
msgid "Modern Events Calendar (Lite)"
|
2983 |
msgstr "Modern Events Calendar (Lite)"
|
2984 |
|
2985 |
-
#: app/features/mec.php:
|
2986 |
#: app/features/mec/settings.php:428
|
2987 |
msgid "Upcoming Events"
|
2988 |
msgstr "Nadcházející události"
|
2989 |
|
2990 |
-
#: app/features/mec.php:
|
2991 |
#, fuzzy
|
2992 |
#| msgid "Update %s"
|
2993 |
msgid "News & Updates"
|
2994 |
msgstr "Aktualizovat %s"
|
2995 |
|
2996 |
-
#: app/features/mec.php:
|
2997 |
msgid "Blog"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: app/features/mec.php:
|
3001 |
msgid "Help"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#: app/features/mec.php:
|
3005 |
msgid "This Month"
|
3006 |
msgstr "Tento měsíc"
|
3007 |
|
3008 |
-
#: app/features/mec.php:
|
3009 |
msgid "Last Month"
|
3010 |
msgstr "Minulý měsíc"
|
3011 |
|
3012 |
-
#: app/features/mec.php:
|
3013 |
msgid "This Year"
|
3014 |
msgstr "Tento rok"
|
3015 |
|
3016 |
-
#: app/features/mec.php:
|
3017 |
msgid "Last Year"
|
3018 |
msgstr "Minulý rok"
|
3019 |
|
3020 |
-
#: app/features/mec.php:
|
3021 |
msgid "Bar"
|
3022 |
msgstr "Pruh"
|
3023 |
|
3024 |
-
#: app/features/mec.php:
|
3025 |
msgid "Line"
|
3026 |
msgstr "Čára"
|
3027 |
|
3028 |
-
#: app/features/mec.php:
|
3029 |
msgid "Filter"
|
3030 |
msgstr "Filtr"
|
3031 |
|
3032 |
-
#: app/features/mec.php:
|
3033 |
#, php-format
|
3034 |
msgid "Total Sells (%s)"
|
3035 |
msgstr "Celkový prodej %s"
|
3036 |
|
3037 |
-
#: app/features/mec.php:
|
3038 |
#, fuzzy
|
3039 |
#| msgid "Modern Events Calendar"
|
3040 |
msgid "Print Calendar"
|
3041 |
msgstr "Moderní kalendář událostí"
|
3042 |
|
3043 |
-
#: app/features/mec.php:
|
3044 |
#, fuzzy
|
3045 |
#| msgid "Display Event Price"
|
3046 |
msgid "Display Events"
|
@@ -3453,7 +3453,7 @@ msgstr "Nastavení uložena!"
|
|
3453 |
#: app/features/mec/notifications.php:923
|
3454 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3455 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3456 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3457 |
msgid "Verified"
|
3458 |
msgstr "Ověřeno"
|
3459 |
|
@@ -4632,8 +4632,8 @@ msgstr "Zobrazit vyhledávací formulář"
|
|
4632 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4633 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4634 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4635 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4636 |
-
#: app/libraries/skins.php:
|
4637 |
msgid "Speaker"
|
4638 |
msgstr "Řečník"
|
4639 |
|
@@ -4649,7 +4649,7 @@ msgstr "Řečník"
|
|
4649 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4650 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4651 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4652 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4653 |
msgid "Tag"
|
4654 |
msgstr "Štítek"
|
4655 |
|
@@ -5440,7 +5440,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
5440 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
5441 |
|
5442 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5443 |
-
#: app/libraries/notifications.php:
|
5444 |
msgid "Booking Reminder"
|
5445 |
msgstr "Připomenutí rezervace"
|
5446 |
|
@@ -5471,7 +5471,7 @@ msgstr "Dny"
|
|
5471 |
msgid "Please, insert comma to separate reminder days."
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5475 |
#: app/libraries/main.php:584
|
5476 |
msgid "New Event"
|
5477 |
msgstr "Nová událost"
|
@@ -5697,7 +5697,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5697 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
5698 |
|
5699 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5700 |
-
#: app/libraries/main.php:
|
5701 |
msgid "Weekdays"
|
5702 |
msgstr "Pracovní dny"
|
5703 |
|
@@ -6473,7 +6473,7 @@ msgstr ""
|
|
6473 |
"jediné události."
|
6474 |
|
6475 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6476 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
6477 |
msgid "Related Events"
|
6478 |
msgstr "Související události"
|
6479 |
|
@@ -7138,7 +7138,7 @@ msgid "Insert organizer email address."
|
|
7138 |
msgstr "Vložit email organizátora."
|
7139 |
|
7140 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7141 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
7142 |
msgid "Link to organizer page"
|
7143 |
msgstr "Odkaz na stránku organizátora"
|
7144 |
|
@@ -7157,40 +7157,40 @@ msgstr "Kontaktní informace"
|
|
7157 |
msgid "Event Main %s"
|
7158 |
msgstr "Hlavní událost %s"
|
7159 |
|
7160 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
7161 |
msgid "Hide organizer"
|
7162 |
msgstr "Skrýt organizátora"
|
7163 |
|
7164 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
7165 |
msgid "Insert a new organizer"
|
7166 |
msgstr "Vložit nového organizátora"
|
7167 |
|
7168 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
7169 |
msgid "Choose one of saved organizers or insert new one below."
|
7170 |
msgstr "Vyberte některého z uložených organizátorů nebo vložte nového."
|
7171 |
|
7172 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
7173 |
msgid "Phone number."
|
7174 |
msgstr "Telefonní číslo."
|
7175 |
|
7176 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
7177 |
msgid "eg. +1 (234) 5678"
|
7178 |
msgstr "např. + 420 123 456 789"
|
7179 |
|
7180 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
7181 |
msgid "Email address."
|
7182 |
msgstr "Emailová adresa."
|
7183 |
|
7184 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
7185 |
msgid "eg. john@smith.com"
|
7186 |
msgstr "např. info@itreseni.cz"
|
7187 |
|
7188 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
7189 |
msgid "eg. https://webnus.net"
|
7190 |
msgstr "např. https://webnus.net"
|
7191 |
|
7192 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
7193 |
-
#: app/skins/single.php:
|
7194 |
msgid "Other Organizers"
|
7195 |
msgstr "Další organizátoři"
|
7196 |
|
@@ -7216,68 +7216,58 @@ msgstr "Poznámka události"
|
|
7216 |
msgid "Event name is required"
|
7217 |
msgstr ""
|
7218 |
|
7219 |
-
#: app/features/popup/event.php:
|
7220 |
-
#: app/libraries/main.php:6643
|
7221 |
-
msgid "AM"
|
7222 |
-
msgstr "dop."
|
7223 |
-
|
7224 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
7225 |
-
#: app/libraries/main.php:6644
|
7226 |
-
msgid "PM"
|
7227 |
-
msgstr "odp."
|
7228 |
-
|
7229 |
-
#: app/features/popup/event.php:256
|
7230 |
#, fuzzy
|
7231 |
#| msgid "Choose one of saved locations or insert new one below."
|
7232 |
msgid "Choose one of saved locations or insert new one."
|
7233 |
msgstr "Vyberte jedno z uložených míst nebo vložte nové."
|
7234 |
|
7235 |
-
#: app/features/popup/event.php:
|
7236 |
#, fuzzy
|
7237 |
#| msgid "Location"
|
7238 |
msgid "Add Location"
|
7239 |
msgstr "Umístění"
|
7240 |
|
7241 |
-
#: app/features/popup/event.php:
|
7242 |
#, fuzzy
|
7243 |
#| msgid "Organizer"
|
7244 |
msgid "Add Organizer"
|
7245 |
msgstr "Organizátor"
|
7246 |
|
7247 |
-
#: app/features/popup/event.php:
|
7248 |
#, fuzzy
|
7249 |
#| msgid "Categories"
|
7250 |
msgid "All Categories"
|
7251 |
msgstr "Kategorie"
|
7252 |
|
7253 |
-
#: app/features/popup/event.php:
|
7254 |
msgid "Most Used"
|
7255 |
msgstr ""
|
7256 |
|
7257 |
-
#: app/features/popup/event.php:
|
7258 |
#, fuzzy
|
7259 |
#| msgid "Add New Event"
|
7260 |
msgid "Add New Category"
|
7261 |
msgstr "Přidat novou událost"
|
7262 |
|
7263 |
# v kontextu
|
7264 |
-
#: app/features/popup/event.php:
|
7265 |
#, fuzzy
|
7266 |
#| msgid "Featured Image"
|
7267 |
msgid "Set Featured Image"
|
7268 |
msgstr "Hlavní obrázek"
|
7269 |
|
7270 |
-
#: app/features/popup/event.php:
|
7271 |
msgid "Your Event Has Been Created."
|
7272 |
msgstr ""
|
7273 |
|
7274 |
-
#: app/features/popup/event.php:
|
7275 |
msgid "Prev"
|
7276 |
msgstr ""
|
7277 |
|
7278 |
-
#: app/features/popup/event.php:
|
7279 |
#: app/modules/booking/steps/form.php:188
|
7280 |
-
#: app/modules/booking/steps/tickets.php:
|
7281 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7282 |
msgid "Next"
|
7283 |
msgstr "Další"
|
@@ -7517,11 +7507,11 @@ msgstr "Vyhledat"
|
|
7517 |
msgid "No search result."
|
7518 |
msgstr "Žádný výsledek vyhledávání."
|
7519 |
|
7520 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7521 |
-
#: app/libraries/notifications.php:
|
7522 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7523 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7524 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
7525 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7526 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7527 |
#, fuzzy
|
@@ -7605,12 +7595,12 @@ msgstr ""
|
|
7605 |
msgid "%s Price"
|
7606 |
msgstr "%s Cena"
|
7607 |
|
7608 |
-
#: app/libraries/book.php:
|
7609 |
msgid "Discount"
|
7610 |
msgstr "Sleva"
|
7611 |
|
7612 |
-
#: app/libraries/book.php:
|
7613 |
-
#: app/modules/booking/default.php:
|
7614 |
msgid "Download Invoice"
|
7615 |
msgstr "Stáhnout fakturu"
|
7616 |
|
@@ -7633,51 +7623,51 @@ msgctxt "plugin link"
|
|
7633 |
msgid "Upgrade"
|
7634 |
msgstr "Upgrade"
|
7635 |
|
7636 |
-
#: app/libraries/factory.php:
|
7637 |
msgid "day"
|
7638 |
msgstr "den"
|
7639 |
|
7640 |
-
#: app/libraries/factory.php:
|
7641 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7642 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7643 |
msgid "days"
|
7644 |
msgstr "dny"
|
7645 |
|
7646 |
-
#: app/libraries/factory.php:
|
7647 |
msgid "hour"
|
7648 |
msgstr "hodina"
|
7649 |
|
7650 |
-
#: app/libraries/factory.php:
|
7651 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7652 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7653 |
msgid "hours"
|
7654 |
msgstr "hodiny"
|
7655 |
|
7656 |
-
#: app/libraries/factory.php:
|
7657 |
msgid "minute"
|
7658 |
msgstr "minuta"
|
7659 |
|
7660 |
-
#: app/libraries/factory.php:
|
7661 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7662 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7663 |
msgid "minutes"
|
7664 |
msgstr "minuty"
|
7665 |
|
7666 |
-
#: app/libraries/factory.php:
|
7667 |
msgid "second"
|
7668 |
msgstr "vteřina"
|
7669 |
|
7670 |
-
#: app/libraries/factory.php:
|
7671 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7672 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7673 |
msgid "seconds"
|
7674 |
msgstr "vteřiny"
|
7675 |
|
7676 |
-
#: app/libraries/factory.php:
|
7677 |
msgid "MEC Single Sidebar"
|
7678 |
msgstr "MEC Postranní panel"
|
7679 |
|
7680 |
-
#: app/libraries/factory.php:
|
7681 |
msgid "Custom sidebar for single and modal page of MEC."
|
7682 |
msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
|
7683 |
|
@@ -7742,31 +7732,31 @@ msgstr "Zobrazení posuvníku"
|
|
7742 |
msgid "Timeline View"
|
7743 |
msgstr "Zobrazení rozvrhu"
|
7744 |
|
7745 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7746 |
msgid "SU"
|
7747 |
msgstr "NE"
|
7748 |
|
7749 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7750 |
msgid "MO"
|
7751 |
msgstr "PO"
|
7752 |
|
7753 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7754 |
msgid "TU"
|
7755 |
msgstr "ÚT"
|
7756 |
|
7757 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7758 |
msgid "WE"
|
7759 |
msgstr "ST"
|
7760 |
|
7761 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7762 |
msgid "TH"
|
7763 |
msgstr "ČT"
|
7764 |
|
7765 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7766 |
msgid "FR"
|
7767 |
msgstr "PÁ"
|
7768 |
|
7769 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7770 |
msgid "SA"
|
7771 |
msgstr "SO"
|
7772 |
|
@@ -8102,111 +8092,111 @@ msgstr "Vložte štítek pro tuto možnost"
|
|
8102 |
msgid "Free"
|
8103 |
msgstr "Zdarma"
|
8104 |
|
8105 |
-
#: app/libraries/main.php:
|
8106 |
msgid "M.E. Calender"
|
8107 |
msgstr "M.E. Kalendář"
|
8108 |
|
8109 |
-
#: app/libraries/main.php:
|
8110 |
#, php-format
|
8111 |
msgid "Copy of %s"
|
8112 |
msgstr "Kopie %s"
|
8113 |
|
8114 |
-
#: app/libraries/main.php:
|
8115 |
msgid "Booked an event."
|
8116 |
msgstr "Událost byla rezervována."
|
8117 |
|
8118 |
-
#: app/libraries/main.php:
|
8119 |
#, php-format
|
8120 |
msgid "%s booked %s event."
|
8121 |
msgstr "%s zarezervoval %s událost."
|
8122 |
|
8123 |
-
#: app/libraries/main.php:
|
8124 |
msgid "Taxonomies"
|
8125 |
msgstr "Taxonomie"
|
8126 |
|
8127 |
# Mrknout na kontext
|
8128 |
-
#: app/libraries/main.php:
|
8129 |
msgid "Category Plural Label"
|
8130 |
msgstr "Štítek množné kategorie"
|
8131 |
|
8132 |
# Mrknout na kontext
|
8133 |
-
#: app/libraries/main.php:
|
8134 |
msgid "Category Singular Label"
|
8135 |
msgstr "Štítek jednotné kategorie"
|
8136 |
|
8137 |
-
#: app/libraries/main.php:
|
8138 |
msgid "Label Plural Label"
|
8139 |
msgstr "Štítek množného štítku"
|
8140 |
|
8141 |
-
#: app/libraries/main.php:
|
8142 |
msgid "Label Singular Label"
|
8143 |
msgstr "Štítek jednotného štítku"
|
8144 |
|
8145 |
-
#: app/libraries/main.php:
|
8146 |
msgid "label"
|
8147 |
msgstr "štítek"
|
8148 |
|
8149 |
-
#: app/libraries/main.php:
|
8150 |
msgid "Location Plural Label"
|
8151 |
msgstr "Štítek množného umístění"
|
8152 |
|
8153 |
-
#: app/libraries/main.php:
|
8154 |
msgid "Location Singular Label"
|
8155 |
msgstr "Štítek jednotného umístění"
|
8156 |
|
8157 |
-
#: app/libraries/main.php:
|
8158 |
msgid "Organizer Plural Label"
|
8159 |
msgstr "Štítek množného organizátora"
|
8160 |
|
8161 |
-
#: app/libraries/main.php:
|
8162 |
msgid "Organizer Singular Label"
|
8163 |
msgstr "Štítek jednotného organizátora"
|
8164 |
|
8165 |
-
#: app/libraries/main.php:
|
8166 |
msgid "Speaker Plural Label"
|
8167 |
msgstr "Štítek množného řečníka"
|
8168 |
|
8169 |
-
#: app/libraries/main.php:
|
8170 |
msgid "Speaker Singular Label"
|
8171 |
msgstr "Štítek jednotného řečníka"
|
8172 |
|
8173 |
-
#: app/libraries/main.php:
|
8174 |
msgid "Sunday abbreviation"
|
8175 |
msgstr "Neděle zkratka"
|
8176 |
|
8177 |
-
#: app/libraries/main.php:
|
8178 |
msgid "Monday abbreviation"
|
8179 |
msgstr "Pondělí zkratka"
|
8180 |
|
8181 |
-
#: app/libraries/main.php:
|
8182 |
msgid "Tuesday abbreviation"
|
8183 |
msgstr "Úterý zkratka"
|
8184 |
|
8185 |
-
#: app/libraries/main.php:
|
8186 |
msgid "Wednesday abbreviation"
|
8187 |
msgstr "Středa zkratka"
|
8188 |
|
8189 |
-
#: app/libraries/main.php:
|
8190 |
msgid "Thursday abbreviation"
|
8191 |
msgstr "Čtvrtek zkratka"
|
8192 |
|
8193 |
-
#: app/libraries/main.php:
|
8194 |
msgid "Friday abbreviation"
|
8195 |
msgstr "Pátek zkratka"
|
8196 |
|
8197 |
-
#: app/libraries/main.php:
|
8198 |
msgid "Saturday abbreviation"
|
8199 |
msgstr "Sobota zkratka"
|
8200 |
|
8201 |
-
#: app/libraries/main.php:
|
8202 |
msgid "Others"
|
8203 |
msgstr "Další"
|
8204 |
|
8205 |
-
#: app/libraries/main.php:
|
8206 |
msgid "Booking Success Message"
|
8207 |
msgstr "Zpráva o úspěchu rezervace"
|
8208 |
|
8209 |
-
#: app/libraries/main.php:
|
8210 |
#, fuzzy
|
8211 |
#| msgid ""
|
8212 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -8218,17 +8208,17 @@ msgstr ""
|
|
8218 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
8219 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
8220 |
|
8221 |
-
#: app/libraries/main.php:
|
8222 |
msgid "Register Button"
|
8223 |
msgstr "Registrační tlačítko"
|
8224 |
|
8225 |
-
#: app/libraries/main.php:
|
8226 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8227 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8228 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8229 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8230 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
8231 |
-
#: app/skins/single.php:
|
8232 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8233 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8234 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -8240,165 +8230,173 @@ msgstr "Registrační tlačítko"
|
|
8240 |
msgid "REGISTER"
|
8241 |
msgstr "REGISTROVAT"
|
8242 |
|
8243 |
-
#: app/libraries/main.php:
|
8244 |
msgid "View Detail Button"
|
8245 |
msgstr "Tlačítko Zobrazit detail"
|
8246 |
|
8247 |
-
#: app/libraries/main.php:
|
8248 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8249 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8250 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8251 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8252 |
-
#: app/skins/single.php:
|
8253 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8254 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8255 |
msgid "View Detail"
|
8256 |
msgstr "Zobrazit detail"
|
8257 |
|
8258 |
-
#: app/libraries/main.php:
|
8259 |
msgid "Event Detail Button"
|
8260 |
msgstr "Tlačítko Detail události"
|
8261 |
|
8262 |
-
#: app/libraries/main.php:
|
8263 |
msgid "Event Detail"
|
8264 |
msgstr "Zobrazit událost"
|
8265 |
|
8266 |
-
#: app/libraries/main.php:
|
8267 |
msgid "More Info Link"
|
8268 |
msgstr "Odkaz na více informací"
|
8269 |
|
8270 |
-
#: app/libraries/main.php:
|
8271 |
msgid "Ticket (Singular)"
|
8272 |
msgstr "Vstupenka (Jednotné)"
|
8273 |
|
8274 |
-
#: app/libraries/main.php:
|
8275 |
msgid "Tickets (Plural)"
|
8276 |
msgstr "Vstupenky (Množné)"
|
8277 |
|
8278 |
-
#: app/libraries/main.php:
|
8279 |
msgid "EventON"
|
8280 |
msgstr "EventON"
|
8281 |
|
8282 |
-
#: app/libraries/main.php:
|
8283 |
msgid "The Events Calendar"
|
8284 |
msgstr "The Events Calendar"
|
8285 |
|
8286 |
-
#: app/libraries/main.php:
|
8287 |
msgid "Events Schedule WP Plugin"
|
8288 |
msgstr "Events Schedule WP Plugin"
|
8289 |
|
8290 |
-
#: app/libraries/main.php:
|
8291 |
msgid "Calendarize It"
|
8292 |
msgstr "Calendarize It"
|
8293 |
|
8294 |
-
#: app/libraries/main.php:
|
8295 |
#, fuzzy
|
8296 |
#| msgid "Event Speakers"
|
8297 |
msgid "Event Espresso"
|
8298 |
msgstr "Řečník události"
|
8299 |
|
8300 |
-
#: app/libraries/main.php:
|
8301 |
#, fuzzy
|
8302 |
#| msgid "Event Repeating (Recurring events)"
|
8303 |
msgid "Events Manager (Recurring)"
|
8304 |
msgstr "Opakování události (opakující se události)"
|
8305 |
|
8306 |
-
#: app/libraries/main.php:
|
8307 |
#, fuzzy
|
8308 |
#| msgid "Modern Events Calendar (Lite)"
|
8309 |
msgid "Events Manager (Single)"
|
8310 |
msgstr "Modern Events Calendar (Lite)"
|
8311 |
|
8312 |
-
#: app/libraries/main.php:
|
8313 |
msgid "Confirmed"
|
8314 |
msgstr "Potvrzeno"
|
8315 |
|
8316 |
-
#: app/libraries/main.php:
|
8317 |
msgid "Rejected"
|
8318 |
msgstr "Odmítnuto"
|
8319 |
|
8320 |
-
#: app/libraries/main.php:
|
8321 |
msgid "Pending"
|
8322 |
msgstr "Nevyřízený"
|
8323 |
|
8324 |
-
#: app/libraries/main.php:
|
8325 |
msgid "Waiting"
|
8326 |
msgstr "Čekající"
|
8327 |
|
8328 |
-
#: app/libraries/main.php:
|
8329 |
#, fuzzy
|
8330 |
#| msgid "Sunday"
|
8331 |
msgid "Sun"
|
8332 |
msgstr "Neděle"
|
8333 |
|
8334 |
-
#: app/libraries/main.php:
|
8335 |
#, fuzzy
|
8336 |
#| msgid "Monday"
|
8337 |
msgid "Mon"
|
8338 |
msgstr "Pondělí"
|
8339 |
|
8340 |
-
#: app/libraries/main.php:
|
8341 |
#, fuzzy
|
8342 |
#| msgid "Tel"
|
8343 |
msgid "Tue"
|
8344 |
msgstr "Tel"
|
8345 |
|
8346 |
-
#: app/libraries/main.php:
|
8347 |
msgid "Wed"
|
8348 |
msgstr ""
|
8349 |
|
8350 |
-
#: app/libraries/main.php:
|
8351 |
msgid "Thu"
|
8352 |
msgstr ""
|
8353 |
|
8354 |
-
#: app/libraries/main.php:
|
8355 |
#, fuzzy
|
8356 |
#| msgid "Friday"
|
8357 |
msgid "Fri"
|
8358 |
msgstr "Pátek"
|
8359 |
|
8360 |
-
#: app/libraries/main.php:
|
8361 |
#, fuzzy
|
8362 |
#| msgid "Start"
|
8363 |
msgid "Sat"
|
8364 |
msgstr "Začátek"
|
8365 |
|
8366 |
-
#: app/libraries/main.php:
|
8367 |
#: app/libraries/render.php:432
|
8368 |
msgid "Skin controller does not exist."
|
8369 |
msgstr "Ovladač vzhledu neexistuje."
|
8370 |
|
8371 |
-
#: app/libraries/main.php:
|
8372 |
msgid "Sold Out"
|
8373 |
msgstr "Vyprodáno"
|
8374 |
|
8375 |
-
#: app/libraries/main.php:
|
8376 |
#, fuzzy
|
8377 |
#| msgid "Ticket"
|
8378 |
msgid "Last Few Tickets"
|
8379 |
msgstr "Vstupenka"
|
8380 |
|
8381 |
-
#: app/libraries/main.php:
|
8382 |
#, fuzzy
|
8383 |
#| msgid "hours"
|
8384 |
msgid "Hours"
|
8385 |
msgstr "hodiny"
|
8386 |
|
8387 |
-
#: app/libraries/main.php:
|
8388 |
#, fuzzy
|
8389 |
#| msgid "minutes"
|
8390 |
msgid "Minutes"
|
8391 |
msgstr "minuty"
|
8392 |
|
8393 |
-
#: app/libraries/main.php:
|
8394 |
msgid "AM / PM"
|
8395 |
msgstr ""
|
8396 |
|
8397 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8398 |
msgid "Ongoing..."
|
8399 |
msgstr ""
|
8400 |
|
8401 |
-
#: app/libraries/main.php:
|
8402 |
#, fuzzy
|
8403 |
#| msgid "Expired Events"
|
8404 |
msgid "Expired!"
|
@@ -8408,76 +8406,85 @@ msgstr "Události vypršely"
|
|
8408 |
msgid "Please verify your email."
|
8409 |
msgstr "Prosím, ověřte svůj e-mail."
|
8410 |
|
8411 |
-
#: app/libraries/notifications.php:
|
8412 |
msgid "Your booking is received."
|
8413 |
msgstr "Vaše rezervace je přijata."
|
8414 |
|
8415 |
-
#: app/libraries/notifications.php:
|
8416 |
msgid "Your booking is confirmed."
|
8417 |
msgstr "Vaše rezervace je potvrzena."
|
8418 |
|
8419 |
-
#: app/libraries/notifications.php:
|
8420 |
msgid "booking canceled."
|
8421 |
msgstr "rezervace zrušena."
|
8422 |
|
8423 |
-
#: app/libraries/notifications.php:
|
8424 |
msgid "A new booking is received."
|
8425 |
msgstr "Je přijata nová rezervace."
|
8426 |
|
8427 |
-
#: app/libraries/notifications.php:
|
8428 |
msgid "A new event is added."
|
8429 |
msgstr "Je přidána se nová událost."
|
8430 |
|
8431 |
-
#: app/libraries/notifications.php:
|
8432 |
msgid "Your event is published."
|
8433 |
msgstr "Vaše událost je zveřejněna."
|
8434 |
|
8435 |
-
#: app/libraries/notifications.php:
|
8436 |
#, php-format
|
8437 |
msgid "%s to %s"
|
8438 |
msgstr ""
|
8439 |
|
8440 |
-
#: app/libraries/notifications.php:
|
8441 |
-
#: app/libraries/notifications.php:
|
8442 |
msgid "to"
|
8443 |
msgstr "do"
|
8444 |
|
8445 |
-
#: app/libraries/notifications.php:
|
8446 |
msgid "+ Add to Google Calendar"
|
8447 |
msgstr "+ Přidat do Google kalendáře"
|
8448 |
|
8449 |
-
#: app/libraries/notifications.php:
|
8450 |
msgid "+ iCal export"
|
8451 |
msgstr "+ iCal export"
|
8452 |
|
8453 |
-
#: app/libraries/notifications.php:
|
8454 |
msgid "Yes"
|
8455 |
msgstr "Ano"
|
8456 |
|
8457 |
-
#: app/libraries/notifications.php:
|
8458 |
msgid "No"
|
8459 |
msgstr "Ne"
|
8460 |
|
8461 |
-
#: app/libraries/skins.php:
|
8462 |
#, fuzzy
|
8463 |
#| msgid "Select All"
|
8464 |
msgid "Select"
|
8465 |
msgstr "Vybrat vše"
|
8466 |
|
8467 |
-
#: app/modules/attendees-list/details.php:
|
8468 |
msgid "Event Attendees"
|
8469 |
msgstr "Účastníci akce"
|
8470 |
|
8471 |
-
#: app/modules/attendees-list/details.php:
|
8472 |
msgid "No attendee found! Be the first one to book!"
|
8473 |
msgstr "Nebyl nalezen žádný účastník! Buďte první, kdo provede rezervaci!"
|
8474 |
|
8475 |
-
#: app/modules/attendees-list/details.php:
|
8476 |
#, fuzzy
|
8477 |
#| msgid "Tickets"
|
8478 |
msgid "tickets"
|
8479 |
msgstr "Vstupenky"
|
8480 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8481 |
#: app/modules/booking/steps/checkout.php:37
|
8482 |
msgid "Checkout"
|
8483 |
msgstr "Překontrolovat"
|
@@ -8531,27 +8538,27 @@ msgstr "Formulář účastníků"
|
|
8531 |
msgid "Fill other attendees information like the first form."
|
8532 |
msgstr "Vyplňte informace o dalších účastnících, jako v prvním formuláři."
|
8533 |
|
8534 |
-
#: app/modules/booking/steps/tickets.php:
|
8535 |
msgid "Book Event"
|
8536 |
msgstr "Rezervovat událost"
|
8537 |
|
8538 |
-
#: app/modules/booking/steps/tickets.php:
|
8539 |
#, fuzzy
|
8540 |
#| msgid "Ticket time"
|
8541 |
msgid "1 Ticket selected."
|
8542 |
msgstr "Čas vstupenky"
|
8543 |
|
8544 |
-
#: app/modules/booking/steps/tickets.php:
|
8545 |
#, php-format
|
8546 |
msgid "Available %s: <span>%s</span>"
|
8547 |
msgstr "K dispozici %s: <span>%s</span>"
|
8548 |
|
8549 |
-
#: app/modules/booking/steps/tickets.php:
|
8550 |
#, php-format
|
8551 |
msgid "The %s ticket sales has stopped!"
|
8552 |
msgstr ""
|
8553 |
|
8554 |
-
#: app/modules/booking/steps/tickets.php:
|
8555 |
#, php-format
|
8556 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8557 |
msgstr ""
|
@@ -8573,7 +8580,7 @@ msgstr "Adresa od ..."
|
|
8573 |
msgid "Get Directions"
|
8574 |
msgstr "Získat směr"
|
8575 |
|
8576 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
8577 |
msgid "Share this event"
|
8578 |
msgstr "Sdílet tuto událost"
|
8579 |
|
@@ -8628,7 +8635,7 @@ msgstr "Další výskyt"
|
|
8628 |
msgid "Go to occurrence page"
|
8629 |
msgstr "Přejít na stránku výskytu"
|
8630 |
|
8631 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
8632 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8633 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8634 |
msgid "Time"
|
@@ -8762,24 +8769,24 @@ msgstr "Událost pro %s"
|
|
8762 |
msgid "No Events"
|
8763 |
msgstr "Žádné události"
|
8764 |
|
8765 |
-
#: app/skins/single.php:
|
8766 |
msgid "Home"
|
8767 |
msgstr "Domů"
|
8768 |
|
8769 |
-
#: app/skins/single.php:
|
8770 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8771 |
#: app/skins/single/modern.php:292
|
8772 |
msgid "Sold out!"
|
8773 |
msgstr "Vyprodáno!"
|
8774 |
|
8775 |
-
#: app/skins/single.php:
|
8776 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8777 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8778 |
#: app/skins/single/modern.php:55
|
8779 |
msgid "Phone"
|
8780 |
msgstr "Telefon"
|
8781 |
|
8782 |
-
#: app/skins/single.php:
|
8783 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8784 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8785 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -8788,7 +8795,7 @@ msgstr "Telefon"
|
|
8788 |
msgid "Website"
|
8789 |
msgstr "Webová stránka"
|
8790 |
|
8791 |
-
#: app/skins/single.php:
|
8792 |
msgid "Speakers:"
|
8793 |
msgstr "Řečník:"
|
8794 |
|
@@ -9373,6 +9380,3 @@ msgstr "http://webnus.net"
|
|
9373 |
|
9374 |
#~ msgid "Can I Override MEC Template ?"
|
9375 |
#~ msgstr "Mohu přepsat šablonu MEC?"
|
9376 |
-
|
9377 |
-
#~ msgid "%s tickets"
|
9378 |
-
#~ msgstr "%s vstupenky"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
4 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-06-16 16:45+0430\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: cs_CZ\n"
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
26 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
27 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
28 |
msgid "Modern Events Calendar"
|
29 |
msgstr "Moderní kalendář událostí"
|
347 |
msgstr "Editace události"
|
348 |
|
349 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
350 |
+
#: app/features/popup/event.php:252
|
351 |
msgid "View Event"
|
352 |
msgstr "Zobrazit událost"
|
353 |
|
369 |
#: app/features/mec/meta_boxes/search_form.php:654
|
370 |
#: app/features/mec/meta_boxes/search_form.php:760
|
371 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
372 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
373 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
374 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
375 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
376 |
#: app/skins/single/modern.php:137
|
380 |
#: app/features/events.php:186 app/features/events.php:3193
|
381 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
382 |
#: app/features/mec/meta_boxes/filter.php:69
|
383 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
384 |
msgid "Categories"
|
385 |
msgstr "Kategorie"
|
386 |
|
469 |
msgstr "Opakování události"
|
470 |
|
471 |
#: app/features/events.php:336 app/features/events.php:1215
|
472 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
473 |
msgid "Hourly Schedule"
|
474 |
msgstr "Hodinový rozvrh"
|
475 |
|
503 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
504 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
505 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
506 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
507 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
508 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
509 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
510 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
511 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
512 |
msgid "Organizer"
|
513 |
msgstr "Organizátor"
|
514 |
|
515 |
#: app/features/events.php:340 app/features/events.php:1092
|
516 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
517 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
518 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
519 |
#: app/skins/single/modern.php:234
|
520 |
msgid "Cost"
|
538 |
#: app/features/events.php:3769 app/features/fes.php:223
|
539 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
540 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
541 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
542 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
543 |
msgid "Name"
|
544 |
msgstr "Jméno"
|
545 |
|
551 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
552 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
553 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
554 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
555 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
556 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
557 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
558 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
559 |
#: app/skins/single/modern.php:62
|
569 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
570 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
571 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
572 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
573 |
#: app/features/mec/meta_boxes/display_options.php:278
|
574 |
#: app/features/mec/meta_boxes/display_options.php:517
|
575 |
#: app/features/mec/meta_boxes/display_options.php:623
|
593 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
594 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
595 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
596 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
597 |
msgid "End Date"
|
598 |
msgstr "Konečný den"
|
599 |
|
600 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
601 |
+
#: app/features/popup/event.php:109
|
602 |
#, fuzzy
|
603 |
#| msgid "All Day Event"
|
604 |
msgid "All-day Event"
|
640 |
#: app/features/events.php:2151 app/features/events.php:2166
|
641 |
#: app/features/events.php:2196 app/features/events.php:2209
|
642 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
643 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
644 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
645 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
646 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
704 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
705 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
706 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
707 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
708 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
709 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
710 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
711 |
#: app/skins/single/modern.php:160
|
725 |
msgstr "Opakování"
|
726 |
|
727 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
728 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
729 |
#: app/skins/full_calendar/tpl.php:121
|
730 |
msgid "Daily"
|
731 |
msgstr "Děnně"
|
749 |
msgstr "Týdně"
|
750 |
|
751 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
752 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
753 |
#: app/skins/full_calendar/tpl.php:119
|
754 |
msgid "Monthly"
|
755 |
msgstr "Měsíčně"
|
756 |
|
757 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
758 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
759 |
#: app/skins/full_calendar/tpl.php:118
|
760 |
msgid "Yearly"
|
761 |
msgstr "Ročně"
|
892 |
#: app/features/events.php:1088 app/features/events.php:3431
|
893 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
894 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
895 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
896 |
#: app/widgets/single.php:103
|
897 |
msgid "Event Cost"
|
898 |
msgstr "Cena události"
|
908 |
#: app/features/events.php:1124 app/features/events.php:2330
|
909 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
910 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
911 |
+
#: app/modules/booking/steps/tickets.php:36
|
912 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
913 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
914 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
915 |
msgid "Date"
|
999 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
1000 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
1001 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
1002 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
1003 |
#: app/modules/speakers/details.php:18
|
1004 |
msgid "Speakers"
|
1005 |
msgstr "Řečníci"
|
1014 |
msgstr "Odkazy na událost"
|
1015 |
|
1016 |
#: app/features/events.php:1408 app/features/events.php:1414
|
1017 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
1018 |
msgid "Event Link"
|
1019 |
msgstr "Odkaz na událost"
|
1020 |
|
1043 |
msgstr "Zkracovač URL"
|
1044 |
|
1045 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1046 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
1047 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
1048 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1049 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1050 |
#: app/widgets/single.php:107
|
1082 |
msgstr "Celkové limity rezervace uživatelů"
|
1083 |
|
1084 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1085 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
1086 |
+
#: app/modules/booking/steps/tickets.php:64
|
1087 |
msgid "Tickets"
|
1088 |
msgstr "Vstupenky"
|
1089 |
|
1109 |
|
1110 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1111 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1112 |
+
#: app/modules/booking/steps/tickets.php:64
|
1113 |
#: app/skins/available_spot/tpl.php:142
|
1114 |
msgid "Unlimited"
|
1115 |
msgstr "Neomezené"
|
1278 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1279 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1280 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1281 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1282 |
msgid "Label"
|
1283 |
msgstr "Štítek"
|
1284 |
|
1496 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1497 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1498 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1499 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1500 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1501 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1502 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1503 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1511 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1512 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1513 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1514 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1515 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1516 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1517 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1518 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1519 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1520 |
#: app/skins/single/modern.php:113
|
1556 |
|
1557 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1558 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1559 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1560 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1561 |
msgid "ID"
|
1562 |
msgstr "ID"
|
1578 |
|
1579 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1580 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1581 |
+
#: app/libraries/main.php:5666
|
1582 |
msgid "Ticket"
|
1583 |
msgstr "Vstupenka"
|
1584 |
|
1790 |
msgstr "např. vasejmeno@gmail.com"
|
1791 |
|
1792 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1793 |
+
#: app/features/popup/event.php:183
|
1794 |
msgid "eg. John Smith"
|
1795 |
msgstr "např. Jan Novák"
|
1796 |
|
1818 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1819 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1820 |
#: app/features/mec/meta_boxes/filter.php:72
|
1821 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1822 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1823 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1824 |
#: app/skins/single/modern.php:249
|
1825 |
msgid "Labels"
|
2620 |
msgstr "Ztvárněná"
|
2621 |
|
2622 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2623 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2624 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2625 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2626 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2638 |
msgid "You can show featured and canceled events by a different style!"
|
2639 |
msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
|
2640 |
|
2641 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2642 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2643 |
+
#: app/modules/booking/steps/tickets.php:62
|
2644 |
msgid "Count"
|
2645 |
msgstr "Spočítat"
|
2646 |
|
2647 |
# Nenanpadá mě správný český termín
|
2648 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2649 |
#: app/features/organizers.php:207
|
2650 |
msgid "Slug"
|
2651 |
msgstr "Slug"
|
2652 |
|
2653 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2654 |
#, php-format
|
2655 |
msgid "Event %s"
|
2656 |
msgstr "Událost %s"
|
2657 |
|
2658 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2659 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2660 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2661 |
msgid "Locations"
|
2662 |
msgstr "Umístění"
|
2663 |
|
2664 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2665 |
+
#: app/features/locations.php:262
|
2666 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2667 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2668 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2677 |
msgid "Address"
|
2678 |
msgstr "Adresa"
|
2679 |
|
2680 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2681 |
msgid "Enter the location address"
|
2682 |
msgstr "Vložit adresu místa"
|
2683 |
|
2684 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2685 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2686 |
msgid "Latitude"
|
2687 |
msgstr "Zeměpisná šířka"
|
2688 |
|
2689 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2690 |
msgid "Geo latitude (Optional)"
|
2691 |
msgstr "Zeměpisná šířka (volitelné)"
|
2692 |
|
2693 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2694 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2695 |
msgid "Longitude"
|
2696 |
msgstr "Zeměpisná délka"
|
2697 |
|
2698 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2699 |
msgid "Geo longitude (Optional)"
|
2700 |
msgstr "Zeměpisná délka (volitelné)"
|
2701 |
|
2702 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2703 |
+
#: app/features/locations.php:372
|
2704 |
#, fuzzy
|
2705 |
#| msgid "Locations"
|
2706 |
msgid "Location Website"
|
2707 |
msgstr "Umístění"
|
2708 |
|
2709 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2710 |
#, fuzzy
|
2711 |
#| msgid "Geo latitude (Optional)"
|
2712 |
msgid "Location Website (Optional)"
|
2713 |
msgstr "Zeměpisná šířka (volitelné)"
|
2714 |
|
2715 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2716 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2717 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2718 |
msgid "Thumbnail"
|
2719 |
msgstr "Náhled"
|
2720 |
|
2721 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2722 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2723 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2724 |
msgid "Upload/Add image"
|
2725 |
msgstr "Nahrát / přidat obrázek"
|
2726 |
|
2727 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2728 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2729 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2730 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2731 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2732 |
msgid "Remove image"
|
2733 |
msgstr "Odebrat obrázek"
|
2734 |
|
2735 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2736 |
msgid "Hide location"
|
2737 |
msgstr "Skrýt místo"
|
2738 |
|
2739 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2740 |
msgid "Insert a new location"
|
2741 |
msgstr "Vložit nové místo"
|
2742 |
|
2743 |
+
#: app/features/locations.php:334
|
2744 |
msgid "Choose one of saved locations or insert new one below."
|
2745 |
msgstr "Vyberte jedno z uložených míst nebo vložte nové."
|
2746 |
|
2747 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2748 |
msgid "Location Name"
|
2749 |
msgstr "Název místa"
|
2750 |
|
2751 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2752 |
msgid "eg. City Hall"
|
2753 |
msgstr "např. Radnice"
|
2754 |
|
2755 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2756 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2757 |
msgid "Event Location"
|
2758 |
msgstr "Místo události"
|
2759 |
|
2760 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2761 |
msgid "eg. City hall, Manhattan, New York"
|
2762 |
msgstr "např. Radnice, Dominikánská 2, Brno"
|
2763 |
|
2764 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2765 |
msgid "Latitude/Longitude"
|
2766 |
msgstr "Zeměpisná šířka / délka"
|
2767 |
|
2768 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2769 |
msgid ""
|
2770 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2771 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2779 |
"místo, použijte název místa, města, státu nebo adresy nebo klikněte na místo "
|
2780 |
"na mapě a vyhledejte souřadnice délky a šířky."
|
2781 |
|
2782 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2783 |
msgid "Get Latitude and Longitude"
|
2784 |
msgstr "Získejte šířku a délku"
|
2785 |
|
2786 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2787 |
+
#: app/features/popup/event.php:202
|
2788 |
msgid "Choose image"
|
2789 |
msgstr "Vyberte obrázek"
|
2790 |
|
2791 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2792 |
msgid "Don't show map in single event page"
|
2793 |
msgstr "Nezobrazovat mapu na jednostránkové události"
|
2794 |
|
2795 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2796 |
msgid "Other Locations"
|
2797 |
msgstr "Další místa"
|
2798 |
|
2799 |
+
#: app/features/locations.php:398
|
2800 |
msgid ""
|
2801 |
"You can select extra locations in addition to main location if you like."
|
2802 |
msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
|
2876 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2877 |
#: app/features/mec/meta_boxes/filter.php:71
|
2878 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2879 |
+
#: app/libraries/main.php:5637
|
2880 |
msgid "Organizers"
|
2881 |
msgstr "Organizátoři"
|
2882 |
|
2915 |
msgid "MEC - Go Pro"
|
2916 |
msgstr "MEC - podpora"
|
2917 |
|
2918 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2919 |
#: app/features/mec/go-pro.php:9
|
2920 |
msgid "Go Pro"
|
2921 |
msgstr ""
|
2974 |
msgid "Modal Popup"
|
2975 |
msgstr "Modal 1"
|
2976 |
|
2977 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2978 |
msgid "Total Bookings"
|
2979 |
msgstr "Celkový počet rezervací"
|
2980 |
|
2981 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2982 |
msgid "Modern Events Calendar (Lite)"
|
2983 |
msgstr "Modern Events Calendar (Lite)"
|
2984 |
|
2985 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2986 |
#: app/features/mec/settings.php:428
|
2987 |
msgid "Upcoming Events"
|
2988 |
msgstr "Nadcházející události"
|
2989 |
|
2990 |
+
#: app/features/mec.php:1201
|
2991 |
#, fuzzy
|
2992 |
#| msgid "Update %s"
|
2993 |
msgid "News & Updates"
|
2994 |
msgstr "Aktualizovat %s"
|
2995 |
|
2996 |
+
#: app/features/mec.php:1214
|
2997 |
msgid "Blog"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: app/features/mec.php:1214
|
3001 |
msgid "Help"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: app/features/mec.php:1260
|
3005 |
msgid "This Month"
|
3006 |
msgstr "Tento měsíc"
|
3007 |
|
3008 |
+
#: app/features/mec.php:1266
|
3009 |
msgid "Last Month"
|
3010 |
msgstr "Minulý měsíc"
|
3011 |
|
3012 |
+
#: app/features/mec.php:1272
|
3013 |
msgid "This Year"
|
3014 |
msgstr "Tento rok"
|
3015 |
|
3016 |
+
#: app/features/mec.php:1278
|
3017 |
msgid "Last Year"
|
3018 |
msgstr "Minulý rok"
|
3019 |
|
3020 |
+
#: app/features/mec.php:1290
|
3021 |
msgid "Bar"
|
3022 |
msgstr "Pruh"
|
3023 |
|
3024 |
+
#: app/features/mec.php:1291
|
3025 |
msgid "Line"
|
3026 |
msgstr "Čára"
|
3027 |
|
3028 |
+
#: app/features/mec.php:1293
|
3029 |
msgid "Filter"
|
3030 |
msgstr "Filtr"
|
3031 |
|
3032 |
+
#: app/features/mec.php:1309
|
3033 |
#, php-format
|
3034 |
msgid "Total Sells (%s)"
|
3035 |
msgstr "Celkový prodej %s"
|
3036 |
|
3037 |
+
#: app/features/mec.php:1337
|
3038 |
#, fuzzy
|
3039 |
#| msgid "Modern Events Calendar"
|
3040 |
msgid "Print Calendar"
|
3041 |
msgstr "Moderní kalendář událostí"
|
3042 |
|
3043 |
+
#: app/features/mec.php:1352
|
3044 |
#, fuzzy
|
3045 |
#| msgid "Display Event Price"
|
3046 |
msgid "Display Events"
|
3453 |
#: app/features/mec/notifications.php:923
|
3454 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3455 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3456 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3457 |
msgid "Verified"
|
3458 |
msgstr "Ověřeno"
|
3459 |
|
4632 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4633 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4634 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4635 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4636 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4637 |
msgid "Speaker"
|
4638 |
msgstr "Řečník"
|
4639 |
|
4649 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4650 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4651 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4652 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4653 |
msgid "Tag"
|
4654 |
msgstr "Štítek"
|
4655 |
|
5440 |
msgstr "Zašle správci informaci o přijetí nové rezervace."
|
5441 |
|
5442 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5443 |
+
#: app/libraries/notifications.php:587
|
5444 |
msgid "Booking Reminder"
|
5445 |
msgstr "Připomenutí rezervace"
|
5446 |
|
5471 |
msgid "Please, insert comma to separate reminder days."
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5475 |
#: app/libraries/main.php:584
|
5476 |
msgid "New Event"
|
5477 |
msgstr "Nová událost"
|
5697 |
msgstr "Můžete povolit nebo zakázat skripty schématu"
|
5698 |
|
5699 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5700 |
+
#: app/libraries/main.php:5644
|
5701 |
msgid "Weekdays"
|
5702 |
msgstr "Pracovní dny"
|
5703 |
|
6473 |
"jediné události."
|
6474 |
|
6475 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6476 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
6477 |
msgid "Related Events"
|
6478 |
msgstr "Související události"
|
6479 |
|
7138 |
msgstr "Vložit email organizátora."
|
7139 |
|
7140 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7141 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
7142 |
msgid "Link to organizer page"
|
7143 |
msgstr "Odkaz na stránku organizátora"
|
7144 |
|
7157 |
msgid "Event Main %s"
|
7158 |
msgstr "Hlavní událost %s"
|
7159 |
|
7160 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
7161 |
msgid "Hide organizer"
|
7162 |
msgstr "Skrýt organizátora"
|
7163 |
|
7164 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
7165 |
msgid "Insert a new organizer"
|
7166 |
msgstr "Vložit nového organizátora"
|
7167 |
|
7168 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
7169 |
msgid "Choose one of saved organizers or insert new one below."
|
7170 |
msgstr "Vyberte některého z uložených organizátorů nebo vložte nového."
|
7171 |
|
7172 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
7173 |
msgid "Phone number."
|
7174 |
msgstr "Telefonní číslo."
|
7175 |
|
7176 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
7177 |
msgid "eg. +1 (234) 5678"
|
7178 |
msgstr "např. + 420 123 456 789"
|
7179 |
|
7180 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
7181 |
msgid "Email address."
|
7182 |
msgstr "Emailová adresa."
|
7183 |
|
7184 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
7185 |
msgid "eg. john@smith.com"
|
7186 |
msgstr "např. info@itreseni.cz"
|
7187 |
|
7188 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
7189 |
msgid "eg. https://webnus.net"
|
7190 |
msgstr "např. https://webnus.net"
|
7191 |
|
7192 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
7193 |
+
#: app/skins/single.php:1152
|
7194 |
msgid "Other Organizers"
|
7195 |
msgstr "Další organizátoři"
|
7196 |
|
7216 |
msgid "Event name is required"
|
7217 |
msgstr ""
|
7218 |
|
7219 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7220 |
#, fuzzy
|
7221 |
#| msgid "Choose one of saved locations or insert new one below."
|
7222 |
msgid "Choose one of saved locations or insert new one."
|
7223 |
msgstr "Vyberte jedno z uložených míst nebo vložte nové."
|
7224 |
|
7225 |
+
#: app/features/popup/event.php:130
|
7226 |
#, fuzzy
|
7227 |
#| msgid "Location"
|
7228 |
msgid "Add Location"
|
7229 |
msgstr "Umístění"
|
7230 |
|
7231 |
+
#: app/features/popup/event.php:177
|
7232 |
#, fuzzy
|
7233 |
#| msgid "Organizer"
|
7234 |
msgid "Add Organizer"
|
7235 |
msgstr "Organizátor"
|
7236 |
|
7237 |
+
#: app/features/popup/event.php:217
|
7238 |
#, fuzzy
|
7239 |
#| msgid "Categories"
|
7240 |
msgid "All Categories"
|
7241 |
msgstr "Kategorie"
|
7242 |
|
7243 |
+
#: app/features/popup/event.php:218
|
7244 |
msgid "Most Used"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
+
#: app/features/popup/event.php:229
|
7248 |
#, fuzzy
|
7249 |
#| msgid "Add New Event"
|
7250 |
msgid "Add New Category"
|
7251 |
msgstr "Přidat novou událost"
|
7252 |
|
7253 |
# v kontextu
|
7254 |
+
#: app/features/popup/event.php:240
|
7255 |
#, fuzzy
|
7256 |
#| msgid "Featured Image"
|
7257 |
msgid "Set Featured Image"
|
7258 |
msgstr "Hlavní obrázek"
|
7259 |
|
7260 |
+
#: app/features/popup/event.php:250
|
7261 |
msgid "Your Event Has Been Created."
|
7262 |
msgstr ""
|
7263 |
|
7264 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
7265 |
msgid "Prev"
|
7266 |
msgstr ""
|
7267 |
|
7268 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
7269 |
#: app/modules/booking/steps/form.php:188
|
7270 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
7271 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7272 |
msgid "Next"
|
7273 |
msgstr "Další"
|
7507 |
msgid "No search result."
|
7508 |
msgstr "Žádný výsledek vyhledávání."
|
7509 |
|
7510 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
7511 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
7512 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7513 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7514 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
7515 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7516 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7517 |
#, fuzzy
|
7595 |
msgid "%s Price"
|
7596 |
msgstr "%s Cena"
|
7597 |
|
7598 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
7599 |
msgid "Discount"
|
7600 |
msgstr "Sleva"
|
7601 |
|
7602 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
7603 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
7604 |
msgid "Download Invoice"
|
7605 |
msgstr "Stáhnout fakturu"
|
7606 |
|
7623 |
msgid "Upgrade"
|
7624 |
msgstr "Upgrade"
|
7625 |
|
7626 |
+
#: app/libraries/factory.php:369
|
7627 |
msgid "day"
|
7628 |
msgstr "den"
|
7629 |
|
7630 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
7631 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7632 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7633 |
msgid "days"
|
7634 |
msgstr "dny"
|
7635 |
|
7636 |
+
#: app/libraries/factory.php:371
|
7637 |
msgid "hour"
|
7638 |
msgstr "hodina"
|
7639 |
|
7640 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
7641 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7642 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7643 |
msgid "hours"
|
7644 |
msgstr "hodiny"
|
7645 |
|
7646 |
+
#: app/libraries/factory.php:373
|
7647 |
msgid "minute"
|
7648 |
msgstr "minuta"
|
7649 |
|
7650 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7651 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7652 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7653 |
msgid "minutes"
|
7654 |
msgstr "minuty"
|
7655 |
|
7656 |
+
#: app/libraries/factory.php:375
|
7657 |
msgid "second"
|
7658 |
msgstr "vteřina"
|
7659 |
|
7660 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7661 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7662 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7663 |
msgid "seconds"
|
7664 |
msgstr "vteřiny"
|
7665 |
|
7666 |
+
#: app/libraries/factory.php:428
|
7667 |
msgid "MEC Single Sidebar"
|
7668 |
msgstr "MEC Postranní panel"
|
7669 |
|
7670 |
+
#: app/libraries/factory.php:429
|
7671 |
msgid "Custom sidebar for single and modal page of MEC."
|
7672 |
msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
|
7673 |
|
7732 |
msgid "Timeline View"
|
7733 |
msgstr "Zobrazení rozvrhu"
|
7734 |
|
7735 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7736 |
msgid "SU"
|
7737 |
msgstr "NE"
|
7738 |
|
7739 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7740 |
msgid "MO"
|
7741 |
msgstr "PO"
|
7742 |
|
7743 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7744 |
msgid "TU"
|
7745 |
msgstr "ÚT"
|
7746 |
|
7747 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7748 |
msgid "WE"
|
7749 |
msgstr "ST"
|
7750 |
|
7751 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7752 |
msgid "TH"
|
7753 |
msgstr "ČT"
|
7754 |
|
7755 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7756 |
msgid "FR"
|
7757 |
msgstr "PÁ"
|
7758 |
|
7759 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7760 |
msgid "SA"
|
7761 |
msgstr "SO"
|
7762 |
|
8092 |
msgid "Free"
|
8093 |
msgstr "Zdarma"
|
8094 |
|
8095 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
8096 |
msgid "M.E. Calender"
|
8097 |
msgstr "M.E. Kalendář"
|
8098 |
|
8099 |
+
#: app/libraries/main.php:4105
|
8100 |
#, php-format
|
8101 |
msgid "Copy of %s"
|
8102 |
msgstr "Kopie %s"
|
8103 |
|
8104 |
+
#: app/libraries/main.php:4923
|
8105 |
msgid "Booked an event."
|
8106 |
msgstr "Událost byla rezervována."
|
8107 |
|
8108 |
+
#: app/libraries/main.php:4964
|
8109 |
#, php-format
|
8110 |
msgid "%s booked %s event."
|
8111 |
msgstr "%s zarezervoval %s událost."
|
8112 |
|
8113 |
+
#: app/libraries/main.php:5629
|
8114 |
msgid "Taxonomies"
|
8115 |
msgstr "Taxonomie"
|
8116 |
|
8117 |
# Mrknout na kontext
|
8118 |
+
#: app/libraries/main.php:5631
|
8119 |
msgid "Category Plural Label"
|
8120 |
msgstr "Štítek množné kategorie"
|
8121 |
|
8122 |
# Mrknout na kontext
|
8123 |
+
#: app/libraries/main.php:5632
|
8124 |
msgid "Category Singular Label"
|
8125 |
msgstr "Štítek jednotné kategorie"
|
8126 |
|
8127 |
+
#: app/libraries/main.php:5633
|
8128 |
msgid "Label Plural Label"
|
8129 |
msgstr "Štítek množného štítku"
|
8130 |
|
8131 |
+
#: app/libraries/main.php:5634
|
8132 |
msgid "Label Singular Label"
|
8133 |
msgstr "Štítek jednotného štítku"
|
8134 |
|
8135 |
+
#: app/libraries/main.php:5634
|
8136 |
msgid "label"
|
8137 |
msgstr "štítek"
|
8138 |
|
8139 |
+
#: app/libraries/main.php:5635
|
8140 |
msgid "Location Plural Label"
|
8141 |
msgstr "Štítek množného umístění"
|
8142 |
|
8143 |
+
#: app/libraries/main.php:5636
|
8144 |
msgid "Location Singular Label"
|
8145 |
msgstr "Štítek jednotného umístění"
|
8146 |
|
8147 |
+
#: app/libraries/main.php:5637
|
8148 |
msgid "Organizer Plural Label"
|
8149 |
msgstr "Štítek množného organizátora"
|
8150 |
|
8151 |
+
#: app/libraries/main.php:5638
|
8152 |
msgid "Organizer Singular Label"
|
8153 |
msgstr "Štítek jednotného organizátora"
|
8154 |
|
8155 |
+
#: app/libraries/main.php:5639
|
8156 |
msgid "Speaker Plural Label"
|
8157 |
msgstr "Štítek množného řečníka"
|
8158 |
|
8159 |
+
#: app/libraries/main.php:5640
|
8160 |
msgid "Speaker Singular Label"
|
8161 |
msgstr "Štítek jednotného řečníka"
|
8162 |
|
8163 |
+
#: app/libraries/main.php:5646
|
8164 |
msgid "Sunday abbreviation"
|
8165 |
msgstr "Neděle zkratka"
|
8166 |
|
8167 |
+
#: app/libraries/main.php:5647
|
8168 |
msgid "Monday abbreviation"
|
8169 |
msgstr "Pondělí zkratka"
|
8170 |
|
8171 |
+
#: app/libraries/main.php:5648
|
8172 |
msgid "Tuesday abbreviation"
|
8173 |
msgstr "Úterý zkratka"
|
8174 |
|
8175 |
+
#: app/libraries/main.php:5649
|
8176 |
msgid "Wednesday abbreviation"
|
8177 |
msgstr "Středa zkratka"
|
8178 |
|
8179 |
+
#: app/libraries/main.php:5650
|
8180 |
msgid "Thursday abbreviation"
|
8181 |
msgstr "Čtvrtek zkratka"
|
8182 |
|
8183 |
+
#: app/libraries/main.php:5651
|
8184 |
msgid "Friday abbreviation"
|
8185 |
msgstr "Pátek zkratka"
|
8186 |
|
8187 |
+
#: app/libraries/main.php:5652
|
8188 |
msgid "Saturday abbreviation"
|
8189 |
msgstr "Sobota zkratka"
|
8190 |
|
8191 |
+
#: app/libraries/main.php:5656
|
8192 |
msgid "Others"
|
8193 |
msgstr "Další"
|
8194 |
|
8195 |
+
#: app/libraries/main.php:5658
|
8196 |
msgid "Booking Success Message"
|
8197 |
msgstr "Zpráva o úspěchu rezervace"
|
8198 |
|
8199 |
+
#: app/libraries/main.php:5658
|
8200 |
#, fuzzy
|
8201 |
#| msgid ""
|
8202 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
8208 |
"Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
|
8209 |
"ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
|
8210 |
|
8211 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
8212 |
msgid "Register Button"
|
8213 |
msgstr "Registrační tlačítko"
|
8214 |
|
8215 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
8216 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8217 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8218 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8219 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8220 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
8221 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
8222 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8223 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8224 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
8230 |
msgid "REGISTER"
|
8231 |
msgstr "REGISTROVAT"
|
8232 |
|
8233 |
+
#: app/libraries/main.php:5660
|
8234 |
msgid "View Detail Button"
|
8235 |
msgstr "Tlačítko Zobrazit detail"
|
8236 |
|
8237 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
8238 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8239 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8240 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8241 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8242 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
8243 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8244 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8245 |
msgid "View Detail"
|
8246 |
msgstr "Zobrazit detail"
|
8247 |
|
8248 |
+
#: app/libraries/main.php:5661
|
8249 |
msgid "Event Detail Button"
|
8250 |
msgstr "Tlačítko Detail události"
|
8251 |
|
8252 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
8253 |
msgid "Event Detail"
|
8254 |
msgstr "Zobrazit událost"
|
8255 |
|
8256 |
+
#: app/libraries/main.php:5663
|
8257 |
msgid "More Info Link"
|
8258 |
msgstr "Odkaz na více informací"
|
8259 |
|
8260 |
+
#: app/libraries/main.php:5666
|
8261 |
msgid "Ticket (Singular)"
|
8262 |
msgstr "Vstupenka (Jednotné)"
|
8263 |
|
8264 |
+
#: app/libraries/main.php:5667
|
8265 |
msgid "Tickets (Plural)"
|
8266 |
msgstr "Vstupenky (Množné)"
|
8267 |
|
8268 |
+
#: app/libraries/main.php:5754
|
8269 |
msgid "EventON"
|
8270 |
msgstr "EventON"
|
8271 |
|
8272 |
+
#: app/libraries/main.php:5755
|
8273 |
msgid "The Events Calendar"
|
8274 |
msgstr "The Events Calendar"
|
8275 |
|
8276 |
+
#: app/libraries/main.php:5756
|
8277 |
msgid "Events Schedule WP Plugin"
|
8278 |
msgstr "Events Schedule WP Plugin"
|
8279 |
|
8280 |
+
#: app/libraries/main.php:5757
|
8281 |
msgid "Calendarize It"
|
8282 |
msgstr "Calendarize It"
|
8283 |
|
8284 |
+
#: app/libraries/main.php:5758
|
8285 |
#, fuzzy
|
8286 |
#| msgid "Event Speakers"
|
8287 |
msgid "Event Espresso"
|
8288 |
msgstr "Řečník události"
|
8289 |
|
8290 |
+
#: app/libraries/main.php:5759
|
8291 |
#, fuzzy
|
8292 |
#| msgid "Event Repeating (Recurring events)"
|
8293 |
msgid "Events Manager (Recurring)"
|
8294 |
msgstr "Opakování události (opakující se události)"
|
8295 |
|
8296 |
+
#: app/libraries/main.php:5760
|
8297 |
#, fuzzy
|
8298 |
#| msgid "Modern Events Calendar (Lite)"
|
8299 |
msgid "Events Manager (Single)"
|
8300 |
msgstr "Modern Events Calendar (Lite)"
|
8301 |
|
8302 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
8303 |
msgid "Confirmed"
|
8304 |
msgstr "Potvrzeno"
|
8305 |
|
8306 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
8307 |
msgid "Rejected"
|
8308 |
msgstr "Odmítnuto"
|
8309 |
|
8310 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
8311 |
msgid "Pending"
|
8312 |
msgstr "Nevyřízený"
|
8313 |
|
8314 |
+
#: app/libraries/main.php:5882
|
8315 |
msgid "Waiting"
|
8316 |
msgstr "Čekající"
|
8317 |
|
8318 |
+
#: app/libraries/main.php:5925
|
8319 |
#, fuzzy
|
8320 |
#| msgid "Sunday"
|
8321 |
msgid "Sun"
|
8322 |
msgstr "Neděle"
|
8323 |
|
8324 |
+
#: app/libraries/main.php:5925
|
8325 |
#, fuzzy
|
8326 |
#| msgid "Monday"
|
8327 |
msgid "Mon"
|
8328 |
msgstr "Pondělí"
|
8329 |
|
8330 |
+
#: app/libraries/main.php:5925
|
8331 |
#, fuzzy
|
8332 |
#| msgid "Tel"
|
8333 |
msgid "Tue"
|
8334 |
msgstr "Tel"
|
8335 |
|
8336 |
+
#: app/libraries/main.php:5925
|
8337 |
msgid "Wed"
|
8338 |
msgstr ""
|
8339 |
|
8340 |
+
#: app/libraries/main.php:5925
|
8341 |
msgid "Thu"
|
8342 |
msgstr ""
|
8343 |
|
8344 |
+
#: app/libraries/main.php:5925
|
8345 |
#, fuzzy
|
8346 |
#| msgid "Friday"
|
8347 |
msgid "Fri"
|
8348 |
msgstr "Pátek"
|
8349 |
|
8350 |
+
#: app/libraries/main.php:5925
|
8351 |
#, fuzzy
|
8352 |
#| msgid "Start"
|
8353 |
msgid "Sat"
|
8354 |
msgstr "Začátek"
|
8355 |
|
8356 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
8357 |
#: app/libraries/render.php:432
|
8358 |
msgid "Skin controller does not exist."
|
8359 |
msgstr "Ovladač vzhledu neexistuje."
|
8360 |
|
8361 |
+
#: app/libraries/main.php:6302
|
8362 |
msgid "Sold Out"
|
8363 |
msgstr "Vyprodáno"
|
8364 |
|
8365 |
+
#: app/libraries/main.php:6310
|
8366 |
#, fuzzy
|
8367 |
#| msgid "Ticket"
|
8368 |
msgid "Last Few Tickets"
|
8369 |
msgstr "Vstupenka"
|
8370 |
|
8371 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
8372 |
#, fuzzy
|
8373 |
#| msgid "hours"
|
8374 |
msgid "Hours"
|
8375 |
msgstr "hodiny"
|
8376 |
|
8377 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
8378 |
#, fuzzy
|
8379 |
#| msgid "minutes"
|
8380 |
msgid "Minutes"
|
8381 |
msgstr "minuty"
|
8382 |
|
8383 |
+
#: app/libraries/main.php:6652
|
8384 |
msgid "AM / PM"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: app/libraries/main.php:6653
|
8388 |
+
msgid "AM"
|
8389 |
+
msgstr "dop."
|
8390 |
+
|
8391 |
+
#: app/libraries/main.php:6654
|
8392 |
+
msgid "PM"
|
8393 |
+
msgstr "odp."
|
8394 |
+
|
8395 |
+
#: app/libraries/main.php:6662
|
8396 |
msgid "Ongoing..."
|
8397 |
msgstr ""
|
8398 |
|
8399 |
+
#: app/libraries/main.php:6663
|
8400 |
#, fuzzy
|
8401 |
#| msgid "Expired Events"
|
8402 |
msgid "Expired!"
|
8406 |
msgid "Please verify your email."
|
8407 |
msgstr "Prosím, ověřte svůj e-mail."
|
8408 |
|
8409 |
+
#: app/libraries/notifications.php:158
|
8410 |
msgid "Your booking is received."
|
8411 |
msgstr "Vaše rezervace je přijata."
|
8412 |
|
8413 |
+
#: app/libraries/notifications.php:268
|
8414 |
msgid "Your booking is confirmed."
|
8415 |
msgstr "Vaše rezervace je potvrzena."
|
8416 |
|
8417 |
+
#: app/libraries/notifications.php:425
|
8418 |
msgid "booking canceled."
|
8419 |
msgstr "rezervace zrušena."
|
8420 |
|
8421 |
+
#: app/libraries/notifications.php:503
|
8422 |
msgid "A new booking is received."
|
8423 |
msgstr "Je přijata nová rezervace."
|
8424 |
|
8425 |
+
#: app/libraries/notifications.php:707
|
8426 |
msgid "A new event is added."
|
8427 |
msgstr "Je přidána se nová událost."
|
8428 |
|
8429 |
+
#: app/libraries/notifications.php:779
|
8430 |
msgid "Your event is published."
|
8431 |
msgstr "Vaše událost je zveřejněna."
|
8432 |
|
8433 |
+
#: app/libraries/notifications.php:912
|
8434 |
#, php-format
|
8435 |
msgid "%s to %s"
|
8436 |
msgstr ""
|
8437 |
|
8438 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
8439 |
+
#: app/libraries/notifications.php:1060
|
8440 |
msgid "to"
|
8441 |
msgstr "do"
|
8442 |
|
8443 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
8444 |
msgid "+ Add to Google Calendar"
|
8445 |
msgstr "+ Přidat do Google kalendáře"
|
8446 |
|
8447 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
8448 |
msgid "+ iCal export"
|
8449 |
msgstr "+ iCal export"
|
8450 |
|
8451 |
+
#: app/libraries/notifications.php:1139
|
8452 |
msgid "Yes"
|
8453 |
msgstr "Ano"
|
8454 |
|
8455 |
+
#: app/libraries/notifications.php:1139
|
8456 |
msgid "No"
|
8457 |
msgstr "Ne"
|
8458 |
|
8459 |
+
#: app/libraries/skins.php:1069
|
8460 |
#, fuzzy
|
8461 |
#| msgid "Select All"
|
8462 |
msgid "Select"
|
8463 |
msgstr "Vybrat vše"
|
8464 |
|
8465 |
+
#: app/modules/attendees-list/details.php:39
|
8466 |
msgid "Event Attendees"
|
8467 |
msgstr "Účastníci akce"
|
8468 |
|
8469 |
+
#: app/modules/attendees-list/details.php:41
|
8470 |
msgid "No attendee found! Be the first one to book!"
|
8471 |
msgstr "Nebyl nalezen žádný účastník! Buďte první, kdo provede rezervaci!"
|
8472 |
|
8473 |
+
#: app/modules/attendees-list/details.php:62
|
8474 |
#, fuzzy
|
8475 |
#| msgid "Tickets"
|
8476 |
msgid "tickets"
|
8477 |
msgstr "Vstupenky"
|
8478 |
|
8479 |
+
#: app/modules/attendees-list/details.php:92
|
8480 |
+
#, fuzzy, php-format
|
8481 |
+
#| msgid "%s tickets"
|
8482 |
+
msgid "%s ticket"
|
8483 |
+
msgid_plural "%s tickets"
|
8484 |
+
msgstr[0] "%s vstupenky"
|
8485 |
+
msgstr[1] "%s vstupenky"
|
8486 |
+
msgstr[2] "%s vstupenky"
|
8487 |
+
|
8488 |
#: app/modules/booking/steps/checkout.php:37
|
8489 |
msgid "Checkout"
|
8490 |
msgstr "Překontrolovat"
|
8538 |
msgid "Fill other attendees information like the first form."
|
8539 |
msgstr "Vyplňte informace o dalších účastnících, jako v prvním formuláři."
|
8540 |
|
8541 |
+
#: app/modules/booking/steps/tickets.php:32
|
8542 |
msgid "Book Event"
|
8543 |
msgstr "Rezervovat událost"
|
8544 |
|
8545 |
+
#: app/modules/booking/steps/tickets.php:59
|
8546 |
#, fuzzy
|
8547 |
#| msgid "Ticket time"
|
8548 |
msgid "1 Ticket selected."
|
8549 |
msgstr "Čas vstupenky"
|
8550 |
|
8551 |
+
#: app/modules/booking/steps/tickets.php:64
|
8552 |
#, php-format
|
8553 |
msgid "Available %s: <span>%s</span>"
|
8554 |
msgstr "K dispozici %s: <span>%s</span>"
|
8555 |
|
8556 |
+
#: app/modules/booking/steps/tickets.php:69
|
8557 |
#, php-format
|
8558 |
msgid "The %s ticket sales has stopped!"
|
8559 |
msgstr ""
|
8560 |
|
8561 |
+
#: app/modules/booking/steps/tickets.php:70
|
8562 |
#, php-format
|
8563 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8564 |
msgstr ""
|
8580 |
msgid "Get Directions"
|
8581 |
msgstr "Získat směr"
|
8582 |
|
8583 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
8584 |
msgid "Share this event"
|
8585 |
msgstr "Sdílet tuto událost"
|
8586 |
|
8635 |
msgid "Go to occurrence page"
|
8636 |
msgstr "Přejít na stránku výskytu"
|
8637 |
|
8638 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
8639 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8640 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8641 |
msgid "Time"
|
8769 |
msgid "No Events"
|
8770 |
msgstr "Žádné události"
|
8771 |
|
8772 |
+
#: app/skins/single.php:393
|
8773 |
msgid "Home"
|
8774 |
msgstr "Domů"
|
8775 |
|
8776 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
8777 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8778 |
#: app/skins/single/modern.php:292
|
8779 |
msgid "Sold out!"
|
8780 |
msgstr "Vyprodáno!"
|
8781 |
|
8782 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
8783 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8784 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8785 |
#: app/skins/single/modern.php:55
|
8786 |
msgid "Phone"
|
8787 |
msgstr "Telefon"
|
8788 |
|
8789 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
8790 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8791 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8792 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
8795 |
msgid "Website"
|
8796 |
msgstr "Webová stránka"
|
8797 |
|
8798 |
+
#: app/skins/single.php:1261
|
8799 |
msgid "Speakers:"
|
8800 |
msgstr "Řečník:"
|
8801 |
|
9380 |
|
9381 |
#~ msgid "Can I Override MEC Template ?"
|
9382 |
#~ msgstr "Mohu přepsat šablonu MEC?"
|
|
|
|
|
|
Binary file
|
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-06-
|
6 |
-
"PO-Revision-Date: 2020-06-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -19,7 +19,7 @@ msgstr ""
|
|
19 |
|
20 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
21 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
22 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
23 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
24 |
msgid "Modern Events Calendar"
|
25 |
msgstr "Moderner Event Kalender "
|
@@ -348,7 +348,7 @@ msgid "Edit Event"
|
|
348 |
msgstr "Event Bearbeiten"
|
349 |
|
350 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
351 |
-
#: app/features/popup/event.php:
|
352 |
msgid "View Event"
|
353 |
msgstr "Veranstaltung ansehen"
|
354 |
|
@@ -370,8 +370,8 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
370 |
#: app/features/mec/meta_boxes/search_form.php:654
|
371 |
#: app/features/mec/meta_boxes/search_form.php:760
|
372 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
373 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
374 |
-
#: app/libraries/skins.php:
|
375 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
376 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
377 |
#: app/skins/single/modern.php:137
|
@@ -381,7 +381,7 @@ msgstr "Kategorie"
|
|
381 |
#: app/features/events.php:186 app/features/events.php:3193
|
382 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
383 |
#: app/features/mec/meta_boxes/filter.php:69
|
384 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
385 |
msgid "Categories"
|
386 |
msgstr "Kategorien"
|
387 |
|
@@ -468,7 +468,7 @@ msgid "Event Repeating"
|
|
468 |
msgstr "Wiederholende Veranstaltung"
|
469 |
|
470 |
#: app/features/events.php:336 app/features/events.php:1215
|
471 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
472 |
msgid "Hourly Schedule"
|
473 |
msgstr "Stundenplan"
|
474 |
|
@@ -498,18 +498,18 @@ msgstr "Links"
|
|
498 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
499 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
500 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
501 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
502 |
-
#: app/features/popup/event.php:
|
503 |
-
#: app/libraries/main.php:
|
504 |
-
#: app/skins/single.php:
|
505 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
506 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
507 |
msgid "Organizer"
|
508 |
msgstr "Veranstalter"
|
509 |
|
510 |
#: app/features/events.php:340 app/features/events.php:1092
|
511 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
512 |
-
#: app/skins/single.php:
|
513 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
514 |
#: app/skins/single/modern.php:234
|
515 |
msgid "Cost"
|
@@ -533,8 +533,8 @@ msgstr "Gäste Daten"
|
|
533 |
#: app/features/events.php:3769 app/features/fes.php:223
|
534 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
535 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
536 |
-
#: app/features/popup/event.php:
|
537 |
-
#: app/libraries/notifications.php:
|
538 |
msgid "Name"
|
539 |
msgstr "Name"
|
540 |
|
@@ -546,9 +546,9 @@ msgstr "Name"
|
|
546 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
547 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
548 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
549 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
550 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
551 |
-
#: app/skins/single.php:
|
552 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
553 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
554 |
#: app/skins/single/modern.php:62
|
@@ -564,7 +564,7 @@ msgstr "Datum und Uhrzeit"
|
|
564 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
565 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
566 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
567 |
-
#: app/features/mec.php:
|
568 |
#: app/features/mec/meta_boxes/display_options.php:278
|
569 |
#: app/features/mec/meta_boxes/display_options.php:517
|
570 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -588,12 +588,12 @@ msgstr "Start Datum"
|
|
588 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
589 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
590 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
591 |
-
#: app/features/mec.php:
|
592 |
msgid "End Date"
|
593 |
msgstr "Ende Datum"
|
594 |
|
595 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
596 |
-
#: app/features/popup/event.php:
|
597 |
#, fuzzy
|
598 |
#| msgid "All Day Event"
|
599 |
msgid "All-day Event"
|
@@ -635,7 +635,7 @@ msgstr ""
|
|
635 |
#: app/features/events.php:2151 app/features/events.php:2166
|
636 |
#: app/features/events.php:2196 app/features/events.php:2209
|
637 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
638 |
-
#: app/features/locations.php:
|
639 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
640 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
641 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -699,8 +699,8 @@ msgstr ""
|
|
699 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
700 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
701 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
702 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
703 |
-
#: app/features/popup/event.php:
|
704 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
705 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
706 |
#: app/skins/single/modern.php:160
|
@@ -720,7 +720,7 @@ msgid "Repeats"
|
|
720 |
msgstr "Wiederholend"
|
721 |
|
722 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
723 |
-
#: app/features/mec.php:
|
724 |
#: app/skins/full_calendar/tpl.php:121
|
725 |
msgid "Daily"
|
726 |
msgstr "Täglich"
|
@@ -744,13 +744,13 @@ msgid "Weekly"
|
|
744 |
msgstr "Wöchentlich"
|
745 |
|
746 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
747 |
-
#: app/features/mec.php:
|
748 |
#: app/skins/full_calendar/tpl.php:119
|
749 |
msgid "Monthly"
|
750 |
msgstr "Monatlich"
|
751 |
|
752 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
753 |
-
#: app/features/mec.php:
|
754 |
#: app/skins/full_calendar/tpl.php:118
|
755 |
msgid "Yearly"
|
756 |
msgstr "Jährlich"
|
@@ -878,7 +878,7 @@ msgstr "Nächstes Auftreten von anderen Events."
|
|
878 |
#: app/features/events.php:1088 app/features/events.php:3431
|
879 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
880 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
881 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
882 |
#: app/widgets/single.php:103
|
883 |
msgid "Event Cost"
|
884 |
msgstr ""
|
@@ -897,8 +897,8 @@ msgstr "Ausschluss bestimmter Tage"
|
|
897 |
#: app/features/events.php:1124 app/features/events.php:2330
|
898 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
899 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
900 |
-
#: app/modules/booking/steps/tickets.php:
|
901 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
902 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
903 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
904 |
msgid "Date"
|
@@ -983,7 +983,7 @@ msgstr "Beschreibung"
|
|
983 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
984 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
985 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
986 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
987 |
#: app/modules/speakers/details.php:18
|
988 |
msgid "Speakers"
|
989 |
msgstr "Sprecher"
|
@@ -998,7 +998,7 @@ msgid "Event Links"
|
|
998 |
msgstr "Veranstaltungslinks"
|
999 |
|
1000 |
#: app/features/events.php:1408 app/features/events.php:1414
|
1001 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
1002 |
msgid "Event Link"
|
1003 |
msgstr "Veranstaltungslink"
|
1004 |
|
@@ -1026,8 +1026,8 @@ msgid "URL Shortener"
|
|
1026 |
msgstr ""
|
1027 |
|
1028 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1029 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
1030 |
-
#: app/skins/single.php:
|
1031 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1032 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1033 |
#: app/widgets/single.php:107
|
@@ -1068,8 +1068,8 @@ msgid "Total User Booking Limits"
|
|
1068 |
msgstr "Gesamt Verfügbare Plätze"
|
1069 |
|
1070 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1071 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
1072 |
-
#: app/modules/booking/steps/tickets.php:
|
1073 |
msgid "Tickets"
|
1074 |
msgstr "Tickets"
|
1075 |
|
@@ -1097,7 +1097,7 @@ msgstr "Gesamt Verfügbare Plätze"
|
|
1097 |
|
1098 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1099 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1100 |
-
#: app/modules/booking/steps/tickets.php:
|
1101 |
#: app/skins/available_spot/tpl.php:142
|
1102 |
msgid "Unlimited"
|
1103 |
msgstr "Unlimitiert"
|
@@ -1257,7 +1257,7 @@ msgstr "Preis pro Datum"
|
|
1257 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1258 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1259 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1260 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1261 |
msgid "Label"
|
1262 |
msgstr "Label"
|
1263 |
|
@@ -1473,8 +1473,8 @@ msgstr "Teilnehmer Liste"
|
|
1473 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1474 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1475 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1476 |
-
#: app/features/locations.php:
|
1477 |
-
#: app/features/locations.php:
|
1478 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1479 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1480 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1488,10 +1488,10 @@ msgstr "Teilnehmer Liste"
|
|
1488 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1489 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1490 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1491 |
-
#: app/features/popup/event.php:
|
1492 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1493 |
-
#: app/libraries/main.php:
|
1494 |
-
#: app/skins/single.php:
|
1495 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1496 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1497 |
#: app/skins/single/modern.php:113
|
@@ -1533,7 +1533,7 @@ msgstr "Kopie"
|
|
1533 |
|
1534 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1535 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1536 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1537 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1538 |
msgid "ID"
|
1539 |
msgstr "ID"
|
@@ -1555,7 +1555,7 @@ msgstr "%s Email"
|
|
1555 |
|
1556 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1557 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1558 |
-
#: app/libraries/main.php:
|
1559 |
msgid "Ticket"
|
1560 |
msgstr "Ticket"
|
1561 |
|
@@ -1761,7 +1761,7 @@ msgid "eg. yourname@gmail.com"
|
|
1761 |
msgstr "z.B. IhrName@ihrewebseite.de"
|
1762 |
|
1763 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1764 |
-
#: app/features/popup/event.php:
|
1765 |
msgid "eg. John Smith"
|
1766 |
msgstr "z.B. Max Mustermann"
|
1767 |
|
@@ -1789,8 +1789,8 @@ msgstr "Bild entfernen"
|
|
1789 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1790 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1791 |
#: app/features/mec/meta_boxes/filter.php:72
|
1792 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1793 |
-
#: app/skins/single.php:
|
1794 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1795 |
#: app/skins/single/modern.php:249
|
1796 |
msgid "Labels"
|
@@ -2615,7 +2615,7 @@ msgid "Featured"
|
|
2615 |
msgstr "Vorgeschlagen"
|
2616 |
|
2617 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2618 |
-
#: app/libraries/main.php:
|
2619 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2620 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2621 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2633,30 +2633,30 @@ msgstr "Abgesagt"
|
|
2633 |
msgid "You can show featured and canceled events by a different style!"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2637 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2638 |
-
#: app/modules/booking/steps/tickets.php:
|
2639 |
msgid "Count"
|
2640 |
msgstr "Zähler"
|
2641 |
|
2642 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2643 |
#: app/features/organizers.php:207
|
2644 |
msgid "Slug"
|
2645 |
msgstr "Slug"
|
2646 |
|
2647 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2648 |
#, php-format
|
2649 |
msgid "Event %s"
|
2650 |
msgstr "Event %s"
|
2651 |
|
2652 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2653 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2654 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2655 |
msgid "Locations"
|
2656 |
msgstr "Orte"
|
2657 |
|
2658 |
-
#: app/features/locations.php:
|
2659 |
-
#: app/features/locations.php:
|
2660 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2661 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2662 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2671,102 +2671,102 @@ msgstr "Orte"
|
|
2671 |
msgid "Address"
|
2672 |
msgstr "Adresse"
|
2673 |
|
2674 |
-
#: app/features/locations.php:
|
2675 |
msgid "Enter the location address"
|
2676 |
msgstr "Geben Sie die Veranstaltungsanschrift ein"
|
2677 |
|
2678 |
-
#: app/features/locations.php:
|
2679 |
-
#: app/features/locations.php:
|
2680 |
msgid "Latitude"
|
2681 |
msgstr "Breitengrad z.B. 49.0069646 "
|
2682 |
|
2683 |
-
#: app/features/locations.php:
|
2684 |
msgid "Geo latitude (Optional)"
|
2685 |
msgstr "Geologischer Breitengrad (Optional)"
|
2686 |
|
2687 |
-
#: app/features/locations.php:
|
2688 |
-
#: app/features/locations.php:
|
2689 |
msgid "Longitude"
|
2690 |
msgstr "Längengrad z.B. 8.4118636 "
|
2691 |
|
2692 |
-
#: app/features/locations.php:
|
2693 |
msgid "Geo longitude (Optional)"
|
2694 |
msgstr "Geologischer Längengrad (Optional)"
|
2695 |
|
2696 |
-
#: app/features/locations.php:
|
2697 |
-
#: app/features/locations.php:
|
2698 |
#, fuzzy
|
2699 |
#| msgid "Locations"
|
2700 |
msgid "Location Website"
|
2701 |
msgstr "Orte"
|
2702 |
|
2703 |
-
#: app/features/locations.php:
|
2704 |
#, fuzzy
|
2705 |
#| msgid "Geo latitude (Optional)"
|
2706 |
msgid "Location Website (Optional)"
|
2707 |
msgstr "Geologischer Breitengrad (Optional)"
|
2708 |
|
2709 |
-
#: app/features/locations.php:
|
2710 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2711 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2712 |
msgid "Thumbnail"
|
2713 |
msgstr "Miniaturansicht"
|
2714 |
|
2715 |
-
#: app/features/locations.php:
|
2716 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2717 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2718 |
msgid "Upload/Add image"
|
2719 |
msgstr "Bild hochladen/hinzufügen"
|
2720 |
|
2721 |
-
#: app/features/locations.php:
|
2722 |
-
#: app/features/locations.php:
|
2723 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2724 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2725 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2726 |
msgid "Remove image"
|
2727 |
msgstr "Bild entfernen"
|
2728 |
|
2729 |
-
#: app/features/locations.php:
|
2730 |
msgid "Hide location"
|
2731 |
msgstr "Ort verbergen"
|
2732 |
|
2733 |
-
#: app/features/locations.php:
|
2734 |
msgid "Insert a new location"
|
2735 |
msgstr "Neuen Ort hinzufügen"
|
2736 |
|
2737 |
-
#: app/features/locations.php:
|
2738 |
msgid "Choose one of saved locations or insert new one below."
|
2739 |
msgstr ""
|
2740 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
2741 |
|
2742 |
-
#: app/features/locations.php:
|
2743 |
msgid "Location Name"
|
2744 |
msgstr "Name Veranstaltungsort"
|
2745 |
|
2746 |
-
#: app/features/locations.php:
|
2747 |
msgid "eg. City Hall"
|
2748 |
msgstr ""
|
2749 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
2750 |
"Westfalenhalle"
|
2751 |
|
2752 |
-
#: app/features/locations.php:
|
2753 |
-
#: app/features/popup/event.php:
|
2754 |
msgid "Event Location"
|
2755 |
msgstr "Veranstaltungsort"
|
2756 |
|
2757 |
-
#: app/features/locations.php:
|
2758 |
msgid "eg. City hall, Manhattan, New York"
|
2759 |
msgstr ""
|
2760 |
"z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
|
2761 |
"Ring 1, 76297 Stutensee"
|
2762 |
|
2763 |
-
#: app/features/locations.php:
|
2764 |
#, fuzzy
|
2765 |
#| msgid "Longitude"
|
2766 |
msgid "Latitude/Longitude"
|
2767 |
msgstr "Längengrad z.B. 8.4118636 "
|
2768 |
|
2769 |
-
#: app/features/locations.php:
|
2770 |
msgid ""
|
2771 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2772 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2775,24 +2775,24 @@ msgid ""
|
|
2775 |
"the location on the map to find lat long coordinates."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: app/features/locations.php:
|
2779 |
msgid "Get Latitude and Longitude"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: app/features/locations.php:
|
2783 |
-
#: app/features/popup/event.php:
|
2784 |
msgid "Choose image"
|
2785 |
msgstr "Bild wählen"
|
2786 |
|
2787 |
-
#: app/features/locations.php:
|
2788 |
msgid "Don't show map in single event page"
|
2789 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2790 |
|
2791 |
-
#: app/features/locations.php:
|
2792 |
msgid "Other Locations"
|
2793 |
msgstr "Andere Orte"
|
2794 |
|
2795 |
-
#: app/features/locations.php:
|
2796 |
#, fuzzy
|
2797 |
#| msgid ""
|
2798 |
#| "You can select extra organizers in addition to main organizer if you like."
|
@@ -2868,7 +2868,7 @@ msgstr "Support"
|
|
2868 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2869 |
#: app/features/mec/meta_boxes/filter.php:71
|
2870 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2871 |
-
#: app/libraries/main.php:
|
2872 |
msgid "Organizers"
|
2873 |
msgstr "Veranstalter"
|
2874 |
|
@@ -2907,7 +2907,7 @@ msgstr "Export"
|
|
2907 |
msgid "MEC - Go Pro"
|
2908 |
msgstr "Support"
|
2909 |
|
2910 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2911 |
#: app/features/mec/go-pro.php:9
|
2912 |
msgid "Go Pro"
|
2913 |
msgstr ""
|
@@ -2966,73 +2966,73 @@ msgstr "Separates Fenster"
|
|
2966 |
msgid "Modal Popup"
|
2967 |
msgstr "Modal 1"
|
2968 |
|
2969 |
-
#: app/features/mec.php:
|
2970 |
msgid "Total Bookings"
|
2971 |
msgstr "Gesamte Buchungen"
|
2972 |
|
2973 |
-
#: app/features/mec.php:
|
2974 |
msgid "Modern Events Calendar (Lite)"
|
2975 |
msgstr "Moderner Event Kalender (Lite)"
|
2976 |
|
2977 |
-
#: app/features/mec.php:
|
2978 |
#: app/features/mec/settings.php:428
|
2979 |
msgid "Upcoming Events"
|
2980 |
msgstr "Bevorstehende Events"
|
2981 |
|
2982 |
-
#: app/features/mec.php:
|
2983 |
#, fuzzy
|
2984 |
#| msgid "Update %s"
|
2985 |
msgid "News & Updates"
|
2986 |
msgstr "Update %s"
|
2987 |
|
2988 |
-
#: app/features/mec.php:
|
2989 |
msgid "Blog"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: app/features/mec.php:
|
2993 |
msgid "Help"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: app/features/mec.php:
|
2997 |
msgid "This Month"
|
2998 |
msgstr "Diesen Monat"
|
2999 |
|
3000 |
-
#: app/features/mec.php:
|
3001 |
msgid "Last Month"
|
3002 |
msgstr "Letzten Monat"
|
3003 |
|
3004 |
-
#: app/features/mec.php:
|
3005 |
msgid "This Year"
|
3006 |
msgstr "Diese Jahr"
|
3007 |
|
3008 |
-
#: app/features/mec.php:
|
3009 |
msgid "Last Year"
|
3010 |
msgstr "Letztes Jahr"
|
3011 |
|
3012 |
-
#: app/features/mec.php:
|
3013 |
msgid "Bar"
|
3014 |
msgstr "Bar"
|
3015 |
|
3016 |
-
#: app/features/mec.php:
|
3017 |
msgid "Line"
|
3018 |
msgstr "Linie"
|
3019 |
|
3020 |
-
#: app/features/mec.php:
|
3021 |
msgid "Filter"
|
3022 |
msgstr "Filter"
|
3023 |
|
3024 |
-
#: app/features/mec.php:
|
3025 |
#, php-format
|
3026 |
msgid "Total Sells (%s)"
|
3027 |
msgstr "Alle Verkäufe (%s)"
|
3028 |
|
3029 |
-
#: app/features/mec.php:
|
3030 |
#, fuzzy
|
3031 |
#| msgid "Modern Events Calendar"
|
3032 |
msgid "Print Calendar"
|
3033 |
msgstr "Moderner Event Kalender "
|
3034 |
|
3035 |
-
#: app/features/mec.php:
|
3036 |
#, fuzzy
|
3037 |
#| msgid "Multiple Day Events"
|
3038 |
msgid "Display Events"
|
@@ -3421,7 +3421,7 @@ msgstr "Einstellungen gespeichert!"
|
|
3421 |
#: app/features/mec/notifications.php:923
|
3422 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3423 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3424 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3425 |
msgid "Verified"
|
3426 |
msgstr "Verifiziert"
|
3427 |
|
@@ -4595,8 +4595,8 @@ msgstr "Such Formular anzeigen"
|
|
4595 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4596 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4597 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4598 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4599 |
-
#: app/libraries/skins.php:
|
4600 |
msgid "Speaker"
|
4601 |
msgstr "Sprecher"
|
4602 |
|
@@ -4612,7 +4612,7 @@ msgstr "Sprecher"
|
|
4612 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4613 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4614 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4615 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4616 |
msgid "Tag"
|
4617 |
msgstr "Schlagwort"
|
4618 |
|
@@ -5406,7 +5406,7 @@ msgstr ""
|
|
5406 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
5407 |
|
5408 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5409 |
-
#: app/libraries/notifications.php:
|
5410 |
msgid "Booking Reminder"
|
5411 |
msgstr "Buchungs Erinnerung"
|
5412 |
|
@@ -5438,7 +5438,7 @@ msgstr "Tage"
|
|
5438 |
msgid "Please, insert comma to separate reminder days."
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5442 |
#: app/libraries/main.php:584
|
5443 |
msgid "New Event"
|
5444 |
msgstr "Neue Veranstaltung"
|
@@ -5654,7 +5654,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5654 |
msgstr ""
|
5655 |
|
5656 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5657 |
-
#: app/libraries/main.php:
|
5658 |
msgid "Weekdays"
|
5659 |
msgstr "Wochentage"
|
5660 |
|
@@ -6455,7 +6455,7 @@ msgstr ""
|
|
6455 |
"bearbeiten und auf der Seite für einzelne Events an."
|
6456 |
|
6457 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6458 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
6459 |
msgid "Related Events"
|
6460 |
msgstr "Vorgeschlagene Veranstaltungen"
|
6461 |
|
@@ -7118,7 +7118,7 @@ msgid "Insert organizer email address."
|
|
7118 |
msgstr "Veranstalter Email-Adresse einfügen"
|
7119 |
|
7120 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7121 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
7122 |
msgid "Link to organizer page"
|
7123 |
msgstr "Link zur Seite des Veranstalters"
|
7124 |
|
@@ -7137,44 +7137,44 @@ msgstr "Kontaktdaten"
|
|
7137 |
msgid "Event Main %s"
|
7138 |
msgstr "Hauptevent % s"
|
7139 |
|
7140 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
7141 |
msgid "Hide organizer"
|
7142 |
msgstr "Veranstalter verbergen"
|
7143 |
|
7144 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
7145 |
msgid "Insert a new organizer"
|
7146 |
msgstr "Neuen Veranstalter einfügen"
|
7147 |
|
7148 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
7149 |
msgid "Choose one of saved organizers or insert new one below."
|
7150 |
msgstr ""
|
7151 |
"Wählen Sie einen der gespeicherten Veranstalter aus oder legen Sie einen "
|
7152 |
"neuen Veranstalter an."
|
7153 |
|
7154 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
7155 |
msgid "Phone number."
|
7156 |
msgstr "Telefon"
|
7157 |
|
7158 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
7159 |
msgid "eg. +1 (234) 5678"
|
7160 |
msgstr "z.B. +49 (1234) 56789"
|
7161 |
|
7162 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
7163 |
msgid "Email address."
|
7164 |
msgstr "Mailadresse"
|
7165 |
|
7166 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
7167 |
msgid "eg. john@smith.com"
|
7168 |
msgstr "z.B.. max@mustermann.com"
|
7169 |
|
7170 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
7171 |
#, fuzzy
|
7172 |
#| msgid "http://webnus.net"
|
7173 |
msgid "eg. https://webnus.net"
|
7174 |
msgstr "http://webnus.net"
|
7175 |
|
7176 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
7177 |
-
#: app/skins/single.php:
|
7178 |
msgid "Other Organizers"
|
7179 |
msgstr "Andere Veranstalter"
|
7180 |
|
@@ -7201,68 +7201,58 @@ msgstr "Veranstaltungsnotiz"
|
|
7201 |
msgid "Event name is required"
|
7202 |
msgstr ""
|
7203 |
|
7204 |
-
#: app/features/popup/event.php:
|
7205 |
-
#: app/libraries/main.php:6643
|
7206 |
-
msgid "AM"
|
7207 |
-
msgstr "AM"
|
7208 |
-
|
7209 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
7210 |
-
#: app/libraries/main.php:6644
|
7211 |
-
msgid "PM"
|
7212 |
-
msgstr "PM"
|
7213 |
-
|
7214 |
-
#: app/features/popup/event.php:256
|
7215 |
#, fuzzy
|
7216 |
#| msgid "Choose one of saved locations or insert new one below."
|
7217 |
msgid "Choose one of saved locations or insert new one."
|
7218 |
msgstr ""
|
7219 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
7220 |
|
7221 |
-
#: app/features/popup/event.php:
|
7222 |
#, fuzzy
|
7223 |
#| msgid "Location"
|
7224 |
msgid "Add Location"
|
7225 |
msgstr "Ort"
|
7226 |
|
7227 |
-
#: app/features/popup/event.php:
|
7228 |
#, fuzzy
|
7229 |
#| msgid "Organizer"
|
7230 |
msgid "Add Organizer"
|
7231 |
msgstr "Veranstalter"
|
7232 |
|
7233 |
-
#: app/features/popup/event.php:
|
7234 |
#, fuzzy
|
7235 |
#| msgid "Categories"
|
7236 |
msgid "All Categories"
|
7237 |
msgstr "Kategorien"
|
7238 |
|
7239 |
-
#: app/features/popup/event.php:
|
7240 |
msgid "Most Used"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
-
#: app/features/popup/event.php:
|
7244 |
#, fuzzy
|
7245 |
#| msgid "Add New Coupon"
|
7246 |
msgid "Add New Category"
|
7247 |
msgstr "Gutschein hinzufügen"
|
7248 |
|
7249 |
-
#: app/features/popup/event.php:
|
7250 |
#, fuzzy
|
7251 |
#| msgid "Featured Image"
|
7252 |
msgid "Set Featured Image"
|
7253 |
msgstr "Ausgewähltes Bild"
|
7254 |
|
7255 |
-
#: app/features/popup/event.php:
|
7256 |
msgid "Your Event Has Been Created."
|
7257 |
msgstr ""
|
7258 |
|
7259 |
-
#: app/features/popup/event.php:
|
7260 |
msgid "Prev"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#: app/features/popup/event.php:
|
7264 |
#: app/modules/booking/steps/form.php:188
|
7265 |
-
#: app/modules/booking/steps/tickets.php:
|
7266 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7267 |
msgid "Next"
|
7268 |
msgstr "Weiter"
|
@@ -7505,11 +7495,11 @@ msgstr "Suche %s"
|
|
7505 |
msgid "No search result."
|
7506 |
msgstr "Kein Suchergebnis"
|
7507 |
|
7508 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7509 |
-
#: app/libraries/notifications.php:
|
7510 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7511 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7512 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
7513 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7514 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7515 |
#, fuzzy
|
@@ -7601,12 +7591,12 @@ msgstr ""
|
|
7601 |
msgid "%s Price"
|
7602 |
msgstr "%s Preis"
|
7603 |
|
7604 |
-
#: app/libraries/book.php:
|
7605 |
msgid "Discount"
|
7606 |
msgstr "Rabatt"
|
7607 |
|
7608 |
-
#: app/libraries/book.php:
|
7609 |
-
#: app/modules/booking/default.php:
|
7610 |
msgid "Download Invoice"
|
7611 |
msgstr "Download Rechnung"
|
7612 |
|
@@ -7631,51 +7621,51 @@ msgctxt "plugin link"
|
|
7631 |
msgid "Upgrade"
|
7632 |
msgstr ""
|
7633 |
|
7634 |
-
#: app/libraries/factory.php:
|
7635 |
msgid "day"
|
7636 |
msgstr "Tag"
|
7637 |
|
7638 |
-
#: app/libraries/factory.php:
|
7639 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7640 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7641 |
msgid "days"
|
7642 |
msgstr "Tage"
|
7643 |
|
7644 |
-
#: app/libraries/factory.php:
|
7645 |
msgid "hour"
|
7646 |
msgstr "Stunde"
|
7647 |
|
7648 |
-
#: app/libraries/factory.php:
|
7649 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7650 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7651 |
msgid "hours"
|
7652 |
msgstr "Stunden"
|
7653 |
|
7654 |
-
#: app/libraries/factory.php:
|
7655 |
msgid "minute"
|
7656 |
msgstr "Minute"
|
7657 |
|
7658 |
-
#: app/libraries/factory.php:
|
7659 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7660 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7661 |
msgid "minutes"
|
7662 |
msgstr "Minuten"
|
7663 |
|
7664 |
-
#: app/libraries/factory.php:
|
7665 |
msgid "second"
|
7666 |
msgstr "Sekunde"
|
7667 |
|
7668 |
-
#: app/libraries/factory.php:
|
7669 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7670 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7671 |
msgid "seconds"
|
7672 |
msgstr "Sekunden"
|
7673 |
|
7674 |
-
#: app/libraries/factory.php:
|
7675 |
msgid "MEC Single Sidebar"
|
7676 |
msgstr "MEC Single Sidebar"
|
7677 |
|
7678 |
-
#: app/libraries/factory.php:
|
7679 |
msgid "Custom sidebar for single and modal page of MEC."
|
7680 |
msgstr "Custom sidebar for single and modal page of MEC."
|
7681 |
|
@@ -7741,31 +7731,31 @@ msgstr "Slideransicht"
|
|
7741 |
msgid "Timeline View"
|
7742 |
msgstr "Stundenplan"
|
7743 |
|
7744 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7745 |
msgid "SU"
|
7746 |
msgstr "SO"
|
7747 |
|
7748 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7749 |
msgid "MO"
|
7750 |
msgstr "MO"
|
7751 |
|
7752 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7753 |
msgid "TU"
|
7754 |
msgstr "DI"
|
7755 |
|
7756 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7757 |
msgid "WE"
|
7758 |
msgstr "MI"
|
7759 |
|
7760 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7761 |
msgid "TH"
|
7762 |
msgstr "DO"
|
7763 |
|
7764 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7765 |
msgid "FR"
|
7766 |
msgstr "FR"
|
7767 |
|
7768 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7769 |
msgid "SA"
|
7770 |
msgstr "SA"
|
7771 |
|
@@ -8088,113 +8078,113 @@ msgstr "Ein neues Label für diese Option einfügen"
|
|
8088 |
msgid "Free"
|
8089 |
msgstr "kostenfrei"
|
8090 |
|
8091 |
-
#: app/libraries/main.php:
|
8092 |
msgid "M.E. Calender"
|
8093 |
msgstr "M.E. Calender"
|
8094 |
|
8095 |
-
#: app/libraries/main.php:
|
8096 |
#, php-format
|
8097 |
msgid "Copy of %s"
|
8098 |
msgstr "Kopie von %s"
|
8099 |
|
8100 |
-
#: app/libraries/main.php:
|
8101 |
msgid "Booked an event."
|
8102 |
msgstr "Eine Veranstaltung wurde gebucht."
|
8103 |
|
8104 |
-
#: app/libraries/main.php:
|
8105 |
#, php-format
|
8106 |
msgid "%s booked %s event."
|
8107 |
msgstr "%s gebuchtes %s Event"
|
8108 |
|
8109 |
-
#: app/libraries/main.php:
|
8110 |
msgid "Taxonomies"
|
8111 |
msgstr "Klassifizierung "
|
8112 |
|
8113 |
-
#: app/libraries/main.php:
|
8114 |
msgid "Category Plural Label"
|
8115 |
msgstr "Kategorien"
|
8116 |
|
8117 |
-
#: app/libraries/main.php:
|
8118 |
msgid "Category Singular Label"
|
8119 |
msgstr "Kategorie"
|
8120 |
|
8121 |
-
#: app/libraries/main.php:
|
8122 |
msgid "Label Plural Label"
|
8123 |
msgstr "Labels"
|
8124 |
|
8125 |
-
#: app/libraries/main.php:
|
8126 |
msgid "Label Singular Label"
|
8127 |
msgstr "Label"
|
8128 |
|
8129 |
-
#: app/libraries/main.php:
|
8130 |
msgid "label"
|
8131 |
msgstr "label"
|
8132 |
|
8133 |
-
#: app/libraries/main.php:
|
8134 |
msgid "Location Plural Label"
|
8135 |
msgstr "Veranstaltungsorte"
|
8136 |
|
8137 |
-
#: app/libraries/main.php:
|
8138 |
msgid "Location Singular Label"
|
8139 |
msgstr "Veranstaltungsort"
|
8140 |
|
8141 |
-
#: app/libraries/main.php:
|
8142 |
msgid "Organizer Plural Label"
|
8143 |
msgstr "Veranstalter"
|
8144 |
|
8145 |
-
#: app/libraries/main.php:
|
8146 |
msgid "Organizer Singular Label"
|
8147 |
msgstr "Veranstalter"
|
8148 |
|
8149 |
-
#: app/libraries/main.php:
|
8150 |
#, fuzzy
|
8151 |
#| msgid "Label Plural Label"
|
8152 |
msgid "Speaker Plural Label"
|
8153 |
msgstr "Labels"
|
8154 |
|
8155 |
-
#: app/libraries/main.php:
|
8156 |
#, fuzzy
|
8157 |
#| msgid "Label Singular Label"
|
8158 |
msgid "Speaker Singular Label"
|
8159 |
msgstr "Label"
|
8160 |
|
8161 |
-
#: app/libraries/main.php:
|
8162 |
msgid "Sunday abbreviation"
|
8163 |
msgstr "Sonntag Abkürzung"
|
8164 |
|
8165 |
-
#: app/libraries/main.php:
|
8166 |
msgid "Monday abbreviation"
|
8167 |
msgstr "Montag Abkürzung"
|
8168 |
|
8169 |
-
#: app/libraries/main.php:
|
8170 |
msgid "Tuesday abbreviation"
|
8171 |
msgstr "Dienstag Abkürzung"
|
8172 |
|
8173 |
-
#: app/libraries/main.php:
|
8174 |
msgid "Wednesday abbreviation"
|
8175 |
msgstr "Mittwoch Abkürzung"
|
8176 |
|
8177 |
-
#: app/libraries/main.php:
|
8178 |
msgid "Thursday abbreviation"
|
8179 |
msgstr "Donnerstag Abkürzung"
|
8180 |
|
8181 |
-
#: app/libraries/main.php:
|
8182 |
msgid "Friday abbreviation"
|
8183 |
msgstr "Freitag Abkürzung"
|
8184 |
|
8185 |
-
#: app/libraries/main.php:
|
8186 |
msgid "Saturday abbreviation"
|
8187 |
msgstr "Samstag Abkürzung "
|
8188 |
|
8189 |
-
#: app/libraries/main.php:
|
8190 |
msgid "Others"
|
8191 |
msgstr "Andere"
|
8192 |
|
8193 |
-
#: app/libraries/main.php:
|
8194 |
msgid "Booking Success Message"
|
8195 |
msgstr "Buchung erfolgreich Mitteilung"
|
8196 |
|
8197 |
-
#: app/libraries/main.php:
|
8198 |
#, fuzzy
|
8199 |
#| msgid ""
|
8200 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -8206,17 +8196,17 @@ msgstr ""
|
|
8206 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
8207 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
8208 |
|
8209 |
-
#: app/libraries/main.php:
|
8210 |
msgid "Register Button"
|
8211 |
msgstr "Register Button"
|
8212 |
|
8213 |
-
#: app/libraries/main.php:
|
8214 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8215 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8216 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8217 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8218 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
8219 |
-
#: app/skins/single.php:
|
8220 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8221 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8222 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -8228,161 +8218,169 @@ msgstr "Register Button"
|
|
8228 |
msgid "REGISTER"
|
8229 |
msgstr "ANMELDEN"
|
8230 |
|
8231 |
-
#: app/libraries/main.php:
|
8232 |
msgid "View Detail Button"
|
8233 |
msgstr "Ansicht Detail Button"
|
8234 |
|
8235 |
-
#: app/libraries/main.php:
|
8236 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8237 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8238 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8239 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8240 |
-
#: app/skins/single.php:
|
8241 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8242 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8243 |
msgid "View Detail"
|
8244 |
msgstr "Details "
|
8245 |
|
8246 |
-
#: app/libraries/main.php:
|
8247 |
msgid "Event Detail Button"
|
8248 |
msgstr "Event Detail Button"
|
8249 |
|
8250 |
-
#: app/libraries/main.php:
|
8251 |
msgid "Event Detail"
|
8252 |
msgstr "Veranstaltungsdetails"
|
8253 |
|
8254 |
-
#: app/libraries/main.php:
|
8255 |
msgid "More Info Link"
|
8256 |
msgstr "Link Mehr Informationen"
|
8257 |
|
8258 |
-
#: app/libraries/main.php:
|
8259 |
msgid "Ticket (Singular)"
|
8260 |
msgstr "Ticket"
|
8261 |
|
8262 |
-
#: app/libraries/main.php:
|
8263 |
msgid "Tickets (Plural)"
|
8264 |
msgstr "Tickets"
|
8265 |
|
8266 |
-
#: app/libraries/main.php:
|
8267 |
msgid "EventON"
|
8268 |
msgstr "EventON"
|
8269 |
|
8270 |
-
#: app/libraries/main.php:
|
8271 |
msgid "The Events Calendar"
|
8272 |
msgstr "The Events Calendar"
|
8273 |
|
8274 |
-
#: app/libraries/main.php:
|
8275 |
msgid "Events Schedule WP Plugin"
|
8276 |
msgstr "Event Zeitplan WP-Plugin"
|
8277 |
|
8278 |
-
#: app/libraries/main.php:
|
8279 |
msgid "Calendarize It"
|
8280 |
msgstr ""
|
8281 |
|
8282 |
-
#: app/libraries/main.php:
|
8283 |
#, fuzzy
|
8284 |
#| msgid "No Search Options"
|
8285 |
msgid "Event Espresso"
|
8286 |
msgstr "Keine Suchoptionen"
|
8287 |
|
8288 |
-
#: app/libraries/main.php:
|
8289 |
msgid "Events Manager (Recurring)"
|
8290 |
msgstr "Wiederholende Veranstaltung"
|
8291 |
|
8292 |
-
#: app/libraries/main.php:
|
8293 |
msgid "Events Manager (Single)"
|
8294 |
msgstr "Moderner Event Kalender"
|
8295 |
|
8296 |
-
#: app/libraries/main.php:
|
8297 |
msgid "Confirmed"
|
8298 |
msgstr "Bestätigt"
|
8299 |
|
8300 |
-
#: app/libraries/main.php:
|
8301 |
msgid "Rejected"
|
8302 |
msgstr "Abgelehnt"
|
8303 |
|
8304 |
-
#: app/libraries/main.php:
|
8305 |
msgid "Pending"
|
8306 |
msgstr "Ausstehend"
|
8307 |
|
8308 |
-
#: app/libraries/main.php:
|
8309 |
msgid "Waiting"
|
8310 |
msgstr "in Bearbeitung"
|
8311 |
|
8312 |
-
#: app/libraries/main.php:
|
8313 |
#, fuzzy
|
8314 |
#| msgid "Sunday"
|
8315 |
msgid "Sun"
|
8316 |
msgstr "Sonntag"
|
8317 |
|
8318 |
-
#: app/libraries/main.php:
|
8319 |
#, fuzzy
|
8320 |
#| msgid "Month"
|
8321 |
msgid "Mon"
|
8322 |
msgstr "Monat "
|
8323 |
|
8324 |
-
#: app/libraries/main.php:
|
8325 |
#, fuzzy
|
8326 |
#| msgid "Tel"
|
8327 |
msgid "Tue"
|
8328 |
msgstr "Tel"
|
8329 |
|
8330 |
-
#: app/libraries/main.php:
|
8331 |
msgid "Wed"
|
8332 |
msgstr ""
|
8333 |
|
8334 |
-
#: app/libraries/main.php:
|
8335 |
msgid "Thu"
|
8336 |
msgstr ""
|
8337 |
|
8338 |
-
#: app/libraries/main.php:
|
8339 |
#, fuzzy
|
8340 |
#| msgid "Friday"
|
8341 |
msgid "Fri"
|
8342 |
msgstr "Freitag"
|
8343 |
|
8344 |
-
#: app/libraries/main.php:
|
8345 |
#, fuzzy
|
8346 |
#| msgid "Start"
|
8347 |
msgid "Sat"
|
8348 |
msgstr "Start"
|
8349 |
|
8350 |
-
#: app/libraries/main.php:
|
8351 |
#: app/libraries/render.php:432
|
8352 |
msgid "Skin controller does not exist."
|
8353 |
msgstr "Skin contoller existiert nicht."
|
8354 |
|
8355 |
-
#: app/libraries/main.php:
|
8356 |
msgid "Sold Out"
|
8357 |
msgstr "Ausgebucht"
|
8358 |
|
8359 |
-
#: app/libraries/main.php:
|
8360 |
msgid "Last Few Tickets"
|
8361 |
msgstr "Nur noch wenige Tickets verfügbar."
|
8362 |
|
8363 |
-
#: app/libraries/main.php:
|
8364 |
#, fuzzy
|
8365 |
#| msgid "Hour"
|
8366 |
msgid "Hours"
|
8367 |
msgstr "Stunde"
|
8368 |
|
8369 |
-
#: app/libraries/main.php:
|
8370 |
#, fuzzy
|
8371 |
#| msgid "minutes"
|
8372 |
msgid "Minutes"
|
8373 |
msgstr "Minuten"
|
8374 |
|
8375 |
-
#: app/libraries/main.php:
|
8376 |
msgid "AM / PM"
|
8377 |
msgstr ""
|
8378 |
|
8379 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8380 |
#, fuzzy
|
8381 |
#| msgid "Loading..."
|
8382 |
msgid "Ongoing..."
|
8383 |
msgstr "Laden…"
|
8384 |
|
8385 |
-
#: app/libraries/main.php:
|
8386 |
#, fuzzy
|
8387 |
#| msgid "Expired Events"
|
8388 |
msgid "Expired!"
|
@@ -8392,72 +8390,80 @@ msgstr "Abgelaufene Events"
|
|
8392 |
msgid "Please verify your email."
|
8393 |
msgstr "Bitte bestätigen Sie Ihre email."
|
8394 |
|
8395 |
-
#: app/libraries/notifications.php:
|
8396 |
msgid "Your booking is received."
|
8397 |
msgstr "Ihre Buchung ist eingegangen"
|
8398 |
|
8399 |
-
#: app/libraries/notifications.php:
|
8400 |
msgid "Your booking is confirmed."
|
8401 |
msgstr "Ihre Buchung wurde bestätigt."
|
8402 |
|
8403 |
-
#: app/libraries/notifications.php:
|
8404 |
msgid "booking canceled."
|
8405 |
msgstr "Ihre Buchung wurde storniert"
|
8406 |
|
8407 |
-
#: app/libraries/notifications.php:
|
8408 |
msgid "A new booking is received."
|
8409 |
msgstr "Eine neue Buchung ist eingegangen."
|
8410 |
|
8411 |
-
#: app/libraries/notifications.php:
|
8412 |
msgid "A new event is added."
|
8413 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
8414 |
|
8415 |
-
#: app/libraries/notifications.php:
|
8416 |
msgid "Your event is published."
|
8417 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
8418 |
|
8419 |
-
#: app/libraries/notifications.php:
|
8420 |
#, php-format
|
8421 |
msgid "%s to %s"
|
8422 |
msgstr "%s zu %s"
|
8423 |
|
8424 |
-
#: app/libraries/notifications.php:
|
8425 |
-
#: app/libraries/notifications.php:
|
8426 |
msgid "to"
|
8427 |
msgstr ""
|
8428 |
|
8429 |
-
#: app/libraries/notifications.php:
|
8430 |
msgid "+ Add to Google Calendar"
|
8431 |
msgstr "+ zum Google Calendar hinzufügen"
|
8432 |
|
8433 |
-
#: app/libraries/notifications.php:
|
8434 |
msgid "+ iCal export"
|
8435 |
msgstr "+ zu iCal exportieren"
|
8436 |
|
8437 |
-
#: app/libraries/notifications.php:
|
8438 |
msgid "Yes"
|
8439 |
msgstr "Ja"
|
8440 |
|
8441 |
-
#: app/libraries/notifications.php:
|
8442 |
msgid "No"
|
8443 |
msgstr "Nein"
|
8444 |
|
8445 |
-
#: app/libraries/skins.php:
|
8446 |
msgid "Select"
|
8447 |
msgstr "Auswählen"
|
8448 |
|
8449 |
-
#: app/modules/attendees-list/details.php:
|
8450 |
msgid "Event Attendees"
|
8451 |
msgstr "Event Teilnehmer"
|
8452 |
|
8453 |
-
#: app/modules/attendees-list/details.php:
|
8454 |
msgid "No attendee found! Be the first one to book!"
|
8455 |
msgstr "Keine Teilnehmer gefunden! Seien Sie der erste Teilnehmer der bucht!"
|
8456 |
|
8457 |
-
#: app/modules/attendees-list/details.php:
|
8458 |
msgid "tickets"
|
8459 |
msgstr "Tickets"
|
8460 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8461 |
#: app/modules/booking/steps/checkout.php:37
|
8462 |
msgid "Checkout"
|
8463 |
msgstr "Zur Kasse gehen"
|
@@ -8511,27 +8517,27 @@ msgstr ""
|
|
8511 |
"Teilnehmer Informationen für die weiteren Tickets übernehmen. (Das Ticket "
|
8512 |
"ist nicht an einen Namen gebunden)"
|
8513 |
|
8514 |
-
#: app/modules/booking/steps/tickets.php:
|
8515 |
msgid "Book Event"
|
8516 |
msgstr "Veranstaltung buchen"
|
8517 |
|
8518 |
-
#: app/modules/booking/steps/tickets.php:
|
8519 |
#, fuzzy
|
8520 |
#| msgid "No user selected!"
|
8521 |
msgid "1 Ticket selected."
|
8522 |
msgstr "Kein Nutzer ausgewählt"
|
8523 |
|
8524 |
-
#: app/modules/booking/steps/tickets.php:
|
8525 |
#, php-format
|
8526 |
msgid "Available %s: <span>%s</span>"
|
8527 |
msgstr "Verfügbar %s: <span>%s</span>"
|
8528 |
|
8529 |
-
#: app/modules/booking/steps/tickets.php:
|
8530 |
#, php-format
|
8531 |
msgid "The %s ticket sales has stopped!"
|
8532 |
msgstr ""
|
8533 |
|
8534 |
-
#: app/modules/booking/steps/tickets.php:
|
8535 |
#, php-format
|
8536 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8537 |
msgstr ""
|
@@ -8554,7 +8560,7 @@ msgstr "Adresse von..."
|
|
8554 |
msgid "Get Directions"
|
8555 |
msgstr "Wegbeschreibung"
|
8556 |
|
8557 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
8558 |
msgid "Share this event"
|
8559 |
msgstr "Diese Veranstaltung teilen"
|
8560 |
|
@@ -8609,7 +8615,7 @@ msgstr "Nächstes Event"
|
|
8609 |
msgid "Go to occurrence page"
|
8610 |
msgstr "Zum Event"
|
8611 |
|
8612 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
8613 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8614 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8615 |
msgid "Time"
|
@@ -8743,24 +8749,24 @@ msgstr "Veranstaltungen für %s"
|
|
8743 |
msgid "No Events"
|
8744 |
msgstr "Keine Veranstaltungen"
|
8745 |
|
8746 |
-
#: app/skins/single.php:
|
8747 |
msgid "Home"
|
8748 |
msgstr ""
|
8749 |
|
8750 |
-
#: app/skins/single.php:
|
8751 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8752 |
#: app/skins/single/modern.php:292
|
8753 |
msgid "Sold out!"
|
8754 |
msgstr "Ausverkauft!"
|
8755 |
|
8756 |
-
#: app/skins/single.php:
|
8757 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8758 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8759 |
#: app/skins/single/modern.php:55
|
8760 |
msgid "Phone"
|
8761 |
msgstr "Phone"
|
8762 |
|
8763 |
-
#: app/skins/single.php:
|
8764 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8765 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8766 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -8769,7 +8775,7 @@ msgstr "Phone"
|
|
8769 |
msgid "Website"
|
8770 |
msgstr "Website"
|
8771 |
|
8772 |
-
#: app/skins/single.php:
|
8773 |
msgid "Speakers:"
|
8774 |
msgstr "Veranstalter"
|
8775 |
|
@@ -9385,9 +9391,6 @@ msgstr "http://webnus.net"
|
|
9385 |
#~ msgid "Can I Override MEC Template ?"
|
9386 |
#~ msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
|
9387 |
|
9388 |
-
#~ msgid "%s tickets"
|
9389 |
-
#~ msgstr "%s tickets"
|
9390 |
-
|
9391 |
#, fuzzy
|
9392 |
#~| msgid "Discount is not valid for this event!"
|
9393 |
#~ msgid "Event is not repeating. No dates exist for this event!"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
6 |
+
"PO-Revision-Date: 2020-06-16 16:46+0430\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
19 |
|
20 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
21 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
22 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
23 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
24 |
msgid "Modern Events Calendar"
|
25 |
msgstr "Moderner Event Kalender "
|
348 |
msgstr "Event Bearbeiten"
|
349 |
|
350 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
351 |
+
#: app/features/popup/event.php:252
|
352 |
msgid "View Event"
|
353 |
msgstr "Veranstaltung ansehen"
|
354 |
|
370 |
#: app/features/mec/meta_boxes/search_form.php:654
|
371 |
#: app/features/mec/meta_boxes/search_form.php:760
|
372 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
373 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
374 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
375 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
376 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
377 |
#: app/skins/single/modern.php:137
|
381 |
#: app/features/events.php:186 app/features/events.php:3193
|
382 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
383 |
#: app/features/mec/meta_boxes/filter.php:69
|
384 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
385 |
msgid "Categories"
|
386 |
msgstr "Kategorien"
|
387 |
|
468 |
msgstr "Wiederholende Veranstaltung"
|
469 |
|
470 |
#: app/features/events.php:336 app/features/events.php:1215
|
471 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
472 |
msgid "Hourly Schedule"
|
473 |
msgstr "Stundenplan"
|
474 |
|
498 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
499 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
500 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
501 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
502 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
503 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
504 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
505 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
506 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
507 |
msgid "Organizer"
|
508 |
msgstr "Veranstalter"
|
509 |
|
510 |
#: app/features/events.php:340 app/features/events.php:1092
|
511 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
512 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
513 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
514 |
#: app/skins/single/modern.php:234
|
515 |
msgid "Cost"
|
533 |
#: app/features/events.php:3769 app/features/fes.php:223
|
534 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
535 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
536 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
537 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
538 |
msgid "Name"
|
539 |
msgstr "Name"
|
540 |
|
546 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
547 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
548 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
549 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
550 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
551 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
552 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
553 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
554 |
#: app/skins/single/modern.php:62
|
564 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
565 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
566 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
567 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
568 |
#: app/features/mec/meta_boxes/display_options.php:278
|
569 |
#: app/features/mec/meta_boxes/display_options.php:517
|
570 |
#: app/features/mec/meta_boxes/display_options.php:623
|
588 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
589 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
590 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
591 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
592 |
msgid "End Date"
|
593 |
msgstr "Ende Datum"
|
594 |
|
595 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
596 |
+
#: app/features/popup/event.php:109
|
597 |
#, fuzzy
|
598 |
#| msgid "All Day Event"
|
599 |
msgid "All-day Event"
|
635 |
#: app/features/events.php:2151 app/features/events.php:2166
|
636 |
#: app/features/events.php:2196 app/features/events.php:2209
|
637 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
638 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
639 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
640 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
641 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
699 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
700 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
701 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
702 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
703 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
704 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
705 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
706 |
#: app/skins/single/modern.php:160
|
720 |
msgstr "Wiederholend"
|
721 |
|
722 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
723 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
724 |
#: app/skins/full_calendar/tpl.php:121
|
725 |
msgid "Daily"
|
726 |
msgstr "Täglich"
|
744 |
msgstr "Wöchentlich"
|
745 |
|
746 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
747 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
748 |
#: app/skins/full_calendar/tpl.php:119
|
749 |
msgid "Monthly"
|
750 |
msgstr "Monatlich"
|
751 |
|
752 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
753 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
754 |
#: app/skins/full_calendar/tpl.php:118
|
755 |
msgid "Yearly"
|
756 |
msgstr "Jährlich"
|
878 |
#: app/features/events.php:1088 app/features/events.php:3431
|
879 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
880 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
881 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
882 |
#: app/widgets/single.php:103
|
883 |
msgid "Event Cost"
|
884 |
msgstr ""
|
897 |
#: app/features/events.php:1124 app/features/events.php:2330
|
898 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
899 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
900 |
+
#: app/modules/booking/steps/tickets.php:36
|
901 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
902 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
903 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
904 |
msgid "Date"
|
983 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
984 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
985 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
986 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
987 |
#: app/modules/speakers/details.php:18
|
988 |
msgid "Speakers"
|
989 |
msgstr "Sprecher"
|
998 |
msgstr "Veranstaltungslinks"
|
999 |
|
1000 |
#: app/features/events.php:1408 app/features/events.php:1414
|
1001 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
1002 |
msgid "Event Link"
|
1003 |
msgstr "Veranstaltungslink"
|
1004 |
|
1026 |
msgstr ""
|
1027 |
|
1028 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1029 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
1030 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
1031 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1032 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1033 |
#: app/widgets/single.php:107
|
1068 |
msgstr "Gesamt Verfügbare Plätze"
|
1069 |
|
1070 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1071 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
1072 |
+
#: app/modules/booking/steps/tickets.php:64
|
1073 |
msgid "Tickets"
|
1074 |
msgstr "Tickets"
|
1075 |
|
1097 |
|
1098 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1099 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1100 |
+
#: app/modules/booking/steps/tickets.php:64
|
1101 |
#: app/skins/available_spot/tpl.php:142
|
1102 |
msgid "Unlimited"
|
1103 |
msgstr "Unlimitiert"
|
1257 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1258 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1259 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1260 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1261 |
msgid "Label"
|
1262 |
msgstr "Label"
|
1263 |
|
1473 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1474 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1475 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1476 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1477 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1478 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1479 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1480 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1488 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1489 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1490 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1491 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1492 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1493 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1494 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1495 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1496 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1497 |
#: app/skins/single/modern.php:113
|
1533 |
|
1534 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1535 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1536 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1537 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1538 |
msgid "ID"
|
1539 |
msgstr "ID"
|
1555 |
|
1556 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1557 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1558 |
+
#: app/libraries/main.php:5666
|
1559 |
msgid "Ticket"
|
1560 |
msgstr "Ticket"
|
1561 |
|
1761 |
msgstr "z.B. IhrName@ihrewebseite.de"
|
1762 |
|
1763 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1764 |
+
#: app/features/popup/event.php:183
|
1765 |
msgid "eg. John Smith"
|
1766 |
msgstr "z.B. Max Mustermann"
|
1767 |
|
1789 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1790 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1791 |
#: app/features/mec/meta_boxes/filter.php:72
|
1792 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1793 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1794 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1795 |
#: app/skins/single/modern.php:249
|
1796 |
msgid "Labels"
|
2615 |
msgstr "Vorgeschlagen"
|
2616 |
|
2617 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2618 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2619 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2620 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2621 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2633 |
msgid "You can show featured and canceled events by a different style!"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2637 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2638 |
+
#: app/modules/booking/steps/tickets.php:62
|
2639 |
msgid "Count"
|
2640 |
msgstr "Zähler"
|
2641 |
|
2642 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2643 |
#: app/features/organizers.php:207
|
2644 |
msgid "Slug"
|
2645 |
msgstr "Slug"
|
2646 |
|
2647 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2648 |
#, php-format
|
2649 |
msgid "Event %s"
|
2650 |
msgstr "Event %s"
|
2651 |
|
2652 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2653 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2654 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2655 |
msgid "Locations"
|
2656 |
msgstr "Orte"
|
2657 |
|
2658 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2659 |
+
#: app/features/locations.php:262
|
2660 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2661 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2662 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2671 |
msgid "Address"
|
2672 |
msgstr "Adresse"
|
2673 |
|
2674 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2675 |
msgid "Enter the location address"
|
2676 |
msgstr "Geben Sie die Veranstaltungsanschrift ein"
|
2677 |
|
2678 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2679 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2680 |
msgid "Latitude"
|
2681 |
msgstr "Breitengrad z.B. 49.0069646 "
|
2682 |
|
2683 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2684 |
msgid "Geo latitude (Optional)"
|
2685 |
msgstr "Geologischer Breitengrad (Optional)"
|
2686 |
|
2687 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2688 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2689 |
msgid "Longitude"
|
2690 |
msgstr "Längengrad z.B. 8.4118636 "
|
2691 |
|
2692 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2693 |
msgid "Geo longitude (Optional)"
|
2694 |
msgstr "Geologischer Längengrad (Optional)"
|
2695 |
|
2696 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2697 |
+
#: app/features/locations.php:372
|
2698 |
#, fuzzy
|
2699 |
#| msgid "Locations"
|
2700 |
msgid "Location Website"
|
2701 |
msgstr "Orte"
|
2702 |
|
2703 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2704 |
#, fuzzy
|
2705 |
#| msgid "Geo latitude (Optional)"
|
2706 |
msgid "Location Website (Optional)"
|
2707 |
msgstr "Geologischer Breitengrad (Optional)"
|
2708 |
|
2709 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2710 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2711 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2712 |
msgid "Thumbnail"
|
2713 |
msgstr "Miniaturansicht"
|
2714 |
|
2715 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2716 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2717 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2718 |
msgid "Upload/Add image"
|
2719 |
msgstr "Bild hochladen/hinzufügen"
|
2720 |
|
2721 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2722 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2723 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2724 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2725 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2726 |
msgid "Remove image"
|
2727 |
msgstr "Bild entfernen"
|
2728 |
|
2729 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2730 |
msgid "Hide location"
|
2731 |
msgstr "Ort verbergen"
|
2732 |
|
2733 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2734 |
msgid "Insert a new location"
|
2735 |
msgstr "Neuen Ort hinzufügen"
|
2736 |
|
2737 |
+
#: app/features/locations.php:334
|
2738 |
msgid "Choose one of saved locations or insert new one below."
|
2739 |
msgstr ""
|
2740 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
2741 |
|
2742 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2743 |
msgid "Location Name"
|
2744 |
msgstr "Name Veranstaltungsort"
|
2745 |
|
2746 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2747 |
msgid "eg. City Hall"
|
2748 |
msgstr ""
|
2749 |
"z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
|
2750 |
"Westfalenhalle"
|
2751 |
|
2752 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2753 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2754 |
msgid "Event Location"
|
2755 |
msgstr "Veranstaltungsort"
|
2756 |
|
2757 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2758 |
msgid "eg. City hall, Manhattan, New York"
|
2759 |
msgstr ""
|
2760 |
"z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
|
2761 |
"Ring 1, 76297 Stutensee"
|
2762 |
|
2763 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2764 |
#, fuzzy
|
2765 |
#| msgid "Longitude"
|
2766 |
msgid "Latitude/Longitude"
|
2767 |
msgstr "Längengrad z.B. 8.4118636 "
|
2768 |
|
2769 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2770 |
msgid ""
|
2771 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2772 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2775 |
"the location on the map to find lat long coordinates."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2779 |
msgid "Get Latitude and Longitude"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2783 |
+
#: app/features/popup/event.php:202
|
2784 |
msgid "Choose image"
|
2785 |
msgstr "Bild wählen"
|
2786 |
|
2787 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2788 |
msgid "Don't show map in single event page"
|
2789 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2790 |
|
2791 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2792 |
msgid "Other Locations"
|
2793 |
msgstr "Andere Orte"
|
2794 |
|
2795 |
+
#: app/features/locations.php:398
|
2796 |
#, fuzzy
|
2797 |
#| msgid ""
|
2798 |
#| "You can select extra organizers in addition to main organizer if you like."
|
2868 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2869 |
#: app/features/mec/meta_boxes/filter.php:71
|
2870 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2871 |
+
#: app/libraries/main.php:5637
|
2872 |
msgid "Organizers"
|
2873 |
msgstr "Veranstalter"
|
2874 |
|
2907 |
msgid "MEC - Go Pro"
|
2908 |
msgstr "Support"
|
2909 |
|
2910 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2911 |
#: app/features/mec/go-pro.php:9
|
2912 |
msgid "Go Pro"
|
2913 |
msgstr ""
|
2966 |
msgid "Modal Popup"
|
2967 |
msgstr "Modal 1"
|
2968 |
|
2969 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2970 |
msgid "Total Bookings"
|
2971 |
msgstr "Gesamte Buchungen"
|
2972 |
|
2973 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2974 |
msgid "Modern Events Calendar (Lite)"
|
2975 |
msgstr "Moderner Event Kalender (Lite)"
|
2976 |
|
2977 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2978 |
#: app/features/mec/settings.php:428
|
2979 |
msgid "Upcoming Events"
|
2980 |
msgstr "Bevorstehende Events"
|
2981 |
|
2982 |
+
#: app/features/mec.php:1201
|
2983 |
#, fuzzy
|
2984 |
#| msgid "Update %s"
|
2985 |
msgid "News & Updates"
|
2986 |
msgstr "Update %s"
|
2987 |
|
2988 |
+
#: app/features/mec.php:1214
|
2989 |
msgid "Blog"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: app/features/mec.php:1214
|
2993 |
msgid "Help"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: app/features/mec.php:1260
|
2997 |
msgid "This Month"
|
2998 |
msgstr "Diesen Monat"
|
2999 |
|
3000 |
+
#: app/features/mec.php:1266
|
3001 |
msgid "Last Month"
|
3002 |
msgstr "Letzten Monat"
|
3003 |
|
3004 |
+
#: app/features/mec.php:1272
|
3005 |
msgid "This Year"
|
3006 |
msgstr "Diese Jahr"
|
3007 |
|
3008 |
+
#: app/features/mec.php:1278
|
3009 |
msgid "Last Year"
|
3010 |
msgstr "Letztes Jahr"
|
3011 |
|
3012 |
+
#: app/features/mec.php:1290
|
3013 |
msgid "Bar"
|
3014 |
msgstr "Bar"
|
3015 |
|
3016 |
+
#: app/features/mec.php:1291
|
3017 |
msgid "Line"
|
3018 |
msgstr "Linie"
|
3019 |
|
3020 |
+
#: app/features/mec.php:1293
|
3021 |
msgid "Filter"
|
3022 |
msgstr "Filter"
|
3023 |
|
3024 |
+
#: app/features/mec.php:1309
|
3025 |
#, php-format
|
3026 |
msgid "Total Sells (%s)"
|
3027 |
msgstr "Alle Verkäufe (%s)"
|
3028 |
|
3029 |
+
#: app/features/mec.php:1337
|
3030 |
#, fuzzy
|
3031 |
#| msgid "Modern Events Calendar"
|
3032 |
msgid "Print Calendar"
|
3033 |
msgstr "Moderner Event Kalender "
|
3034 |
|
3035 |
+
#: app/features/mec.php:1352
|
3036 |
#, fuzzy
|
3037 |
#| msgid "Multiple Day Events"
|
3038 |
msgid "Display Events"
|
3421 |
#: app/features/mec/notifications.php:923
|
3422 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3423 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3424 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3425 |
msgid "Verified"
|
3426 |
msgstr "Verifiziert"
|
3427 |
|
4595 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4596 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4597 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4598 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4599 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4600 |
msgid "Speaker"
|
4601 |
msgstr "Sprecher"
|
4602 |
|
4612 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4613 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4614 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4615 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4616 |
msgid "Tag"
|
4617 |
msgstr "Schlagwort"
|
4618 |
|
5406 |
"Informieren, dass eine neue Buchung eingegangen ist."
|
5407 |
|
5408 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5409 |
+
#: app/libraries/notifications.php:587
|
5410 |
msgid "Booking Reminder"
|
5411 |
msgstr "Buchungs Erinnerung"
|
5412 |
|
5438 |
msgid "Please, insert comma to separate reminder days."
|
5439 |
msgstr ""
|
5440 |
|
5441 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5442 |
#: app/libraries/main.php:584
|
5443 |
msgid "New Event"
|
5444 |
msgstr "Neue Veranstaltung"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5657 |
+
#: app/libraries/main.php:5644
|
5658 |
msgid "Weekdays"
|
5659 |
msgstr "Wochentage"
|
5660 |
|
6455 |
"bearbeiten und auf der Seite für einzelne Events an."
|
6456 |
|
6457 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6458 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
6459 |
msgid "Related Events"
|
6460 |
msgstr "Vorgeschlagene Veranstaltungen"
|
6461 |
|
7118 |
msgstr "Veranstalter Email-Adresse einfügen"
|
7119 |
|
7120 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7121 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
7122 |
msgid "Link to organizer page"
|
7123 |
msgstr "Link zur Seite des Veranstalters"
|
7124 |
|
7137 |
msgid "Event Main %s"
|
7138 |
msgstr "Hauptevent % s"
|
7139 |
|
7140 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
7141 |
msgid "Hide organizer"
|
7142 |
msgstr "Veranstalter verbergen"
|
7143 |
|
7144 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
7145 |
msgid "Insert a new organizer"
|
7146 |
msgstr "Neuen Veranstalter einfügen"
|
7147 |
|
7148 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
7149 |
msgid "Choose one of saved organizers or insert new one below."
|
7150 |
msgstr ""
|
7151 |
"Wählen Sie einen der gespeicherten Veranstalter aus oder legen Sie einen "
|
7152 |
"neuen Veranstalter an."
|
7153 |
|
7154 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
7155 |
msgid "Phone number."
|
7156 |
msgstr "Telefon"
|
7157 |
|
7158 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
7159 |
msgid "eg. +1 (234) 5678"
|
7160 |
msgstr "z.B. +49 (1234) 56789"
|
7161 |
|
7162 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
7163 |
msgid "Email address."
|
7164 |
msgstr "Mailadresse"
|
7165 |
|
7166 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
7167 |
msgid "eg. john@smith.com"
|
7168 |
msgstr "z.B.. max@mustermann.com"
|
7169 |
|
7170 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
7171 |
#, fuzzy
|
7172 |
#| msgid "http://webnus.net"
|
7173 |
msgid "eg. https://webnus.net"
|
7174 |
msgstr "http://webnus.net"
|
7175 |
|
7176 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
7177 |
+
#: app/skins/single.php:1152
|
7178 |
msgid "Other Organizers"
|
7179 |
msgstr "Andere Veranstalter"
|
7180 |
|
7201 |
msgid "Event name is required"
|
7202 |
msgstr ""
|
7203 |
|
7204 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7205 |
#, fuzzy
|
7206 |
#| msgid "Choose one of saved locations or insert new one below."
|
7207 |
msgid "Choose one of saved locations or insert new one."
|
7208 |
msgstr ""
|
7209 |
"Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
|
7210 |
|
7211 |
+
#: app/features/popup/event.php:130
|
7212 |
#, fuzzy
|
7213 |
#| msgid "Location"
|
7214 |
msgid "Add Location"
|
7215 |
msgstr "Ort"
|
7216 |
|
7217 |
+
#: app/features/popup/event.php:177
|
7218 |
#, fuzzy
|
7219 |
#| msgid "Organizer"
|
7220 |
msgid "Add Organizer"
|
7221 |
msgstr "Veranstalter"
|
7222 |
|
7223 |
+
#: app/features/popup/event.php:217
|
7224 |
#, fuzzy
|
7225 |
#| msgid "Categories"
|
7226 |
msgid "All Categories"
|
7227 |
msgstr "Kategorien"
|
7228 |
|
7229 |
+
#: app/features/popup/event.php:218
|
7230 |
msgid "Most Used"
|
7231 |
msgstr ""
|
7232 |
|
7233 |
+
#: app/features/popup/event.php:229
|
7234 |
#, fuzzy
|
7235 |
#| msgid "Add New Coupon"
|
7236 |
msgid "Add New Category"
|
7237 |
msgstr "Gutschein hinzufügen"
|
7238 |
|
7239 |
+
#: app/features/popup/event.php:240
|
7240 |
#, fuzzy
|
7241 |
#| msgid "Featured Image"
|
7242 |
msgid "Set Featured Image"
|
7243 |
msgstr "Ausgewähltes Bild"
|
7244 |
|
7245 |
+
#: app/features/popup/event.php:250
|
7246 |
msgid "Your Event Has Been Created."
|
7247 |
msgstr ""
|
7248 |
|
7249 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
7250 |
msgid "Prev"
|
7251 |
msgstr ""
|
7252 |
|
7253 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
7254 |
#: app/modules/booking/steps/form.php:188
|
7255 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
7256 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7257 |
msgid "Next"
|
7258 |
msgstr "Weiter"
|
7495 |
msgid "No search result."
|
7496 |
msgstr "Kein Suchergebnis"
|
7497 |
|
7498 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
7499 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
7500 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7501 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7502 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
7503 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7504 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7505 |
#, fuzzy
|
7591 |
msgid "%s Price"
|
7592 |
msgstr "%s Preis"
|
7593 |
|
7594 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
7595 |
msgid "Discount"
|
7596 |
msgstr "Rabatt"
|
7597 |
|
7598 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
7599 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
7600 |
msgid "Download Invoice"
|
7601 |
msgstr "Download Rechnung"
|
7602 |
|
7621 |
msgid "Upgrade"
|
7622 |
msgstr ""
|
7623 |
|
7624 |
+
#: app/libraries/factory.php:369
|
7625 |
msgid "day"
|
7626 |
msgstr "Tag"
|
7627 |
|
7628 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
7629 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7630 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7631 |
msgid "days"
|
7632 |
msgstr "Tage"
|
7633 |
|
7634 |
+
#: app/libraries/factory.php:371
|
7635 |
msgid "hour"
|
7636 |
msgstr "Stunde"
|
7637 |
|
7638 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
7639 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7640 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7641 |
msgid "hours"
|
7642 |
msgstr "Stunden"
|
7643 |
|
7644 |
+
#: app/libraries/factory.php:373
|
7645 |
msgid "minute"
|
7646 |
msgstr "Minute"
|
7647 |
|
7648 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7649 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7650 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7651 |
msgid "minutes"
|
7652 |
msgstr "Minuten"
|
7653 |
|
7654 |
+
#: app/libraries/factory.php:375
|
7655 |
msgid "second"
|
7656 |
msgstr "Sekunde"
|
7657 |
|
7658 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7659 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7660 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7661 |
msgid "seconds"
|
7662 |
msgstr "Sekunden"
|
7663 |
|
7664 |
+
#: app/libraries/factory.php:428
|
7665 |
msgid "MEC Single Sidebar"
|
7666 |
msgstr "MEC Single Sidebar"
|
7667 |
|
7668 |
+
#: app/libraries/factory.php:429
|
7669 |
msgid "Custom sidebar for single and modal page of MEC."
|
7670 |
msgstr "Custom sidebar for single and modal page of MEC."
|
7671 |
|
7731 |
msgid "Timeline View"
|
7732 |
msgstr "Stundenplan"
|
7733 |
|
7734 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7735 |
msgid "SU"
|
7736 |
msgstr "SO"
|
7737 |
|
7738 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7739 |
msgid "MO"
|
7740 |
msgstr "MO"
|
7741 |
|
7742 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7743 |
msgid "TU"
|
7744 |
msgstr "DI"
|
7745 |
|
7746 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7747 |
msgid "WE"
|
7748 |
msgstr "MI"
|
7749 |
|
7750 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7751 |
msgid "TH"
|
7752 |
msgstr "DO"
|
7753 |
|
7754 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7755 |
msgid "FR"
|
7756 |
msgstr "FR"
|
7757 |
|
7758 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7759 |
msgid "SA"
|
7760 |
msgstr "SA"
|
7761 |
|
8078 |
msgid "Free"
|
8079 |
msgstr "kostenfrei"
|
8080 |
|
8081 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
8082 |
msgid "M.E. Calender"
|
8083 |
msgstr "M.E. Calender"
|
8084 |
|
8085 |
+
#: app/libraries/main.php:4105
|
8086 |
#, php-format
|
8087 |
msgid "Copy of %s"
|
8088 |
msgstr "Kopie von %s"
|
8089 |
|
8090 |
+
#: app/libraries/main.php:4923
|
8091 |
msgid "Booked an event."
|
8092 |
msgstr "Eine Veranstaltung wurde gebucht."
|
8093 |
|
8094 |
+
#: app/libraries/main.php:4964
|
8095 |
#, php-format
|
8096 |
msgid "%s booked %s event."
|
8097 |
msgstr "%s gebuchtes %s Event"
|
8098 |
|
8099 |
+
#: app/libraries/main.php:5629
|
8100 |
msgid "Taxonomies"
|
8101 |
msgstr "Klassifizierung "
|
8102 |
|
8103 |
+
#: app/libraries/main.php:5631
|
8104 |
msgid "Category Plural Label"
|
8105 |
msgstr "Kategorien"
|
8106 |
|
8107 |
+
#: app/libraries/main.php:5632
|
8108 |
msgid "Category Singular Label"
|
8109 |
msgstr "Kategorie"
|
8110 |
|
8111 |
+
#: app/libraries/main.php:5633
|
8112 |
msgid "Label Plural Label"
|
8113 |
msgstr "Labels"
|
8114 |
|
8115 |
+
#: app/libraries/main.php:5634
|
8116 |
msgid "Label Singular Label"
|
8117 |
msgstr "Label"
|
8118 |
|
8119 |
+
#: app/libraries/main.php:5634
|
8120 |
msgid "label"
|
8121 |
msgstr "label"
|
8122 |
|
8123 |
+
#: app/libraries/main.php:5635
|
8124 |
msgid "Location Plural Label"
|
8125 |
msgstr "Veranstaltungsorte"
|
8126 |
|
8127 |
+
#: app/libraries/main.php:5636
|
8128 |
msgid "Location Singular Label"
|
8129 |
msgstr "Veranstaltungsort"
|
8130 |
|
8131 |
+
#: app/libraries/main.php:5637
|
8132 |
msgid "Organizer Plural Label"
|
8133 |
msgstr "Veranstalter"
|
8134 |
|
8135 |
+
#: app/libraries/main.php:5638
|
8136 |
msgid "Organizer Singular Label"
|
8137 |
msgstr "Veranstalter"
|
8138 |
|
8139 |
+
#: app/libraries/main.php:5639
|
8140 |
#, fuzzy
|
8141 |
#| msgid "Label Plural Label"
|
8142 |
msgid "Speaker Plural Label"
|
8143 |
msgstr "Labels"
|
8144 |
|
8145 |
+
#: app/libraries/main.php:5640
|
8146 |
#, fuzzy
|
8147 |
#| msgid "Label Singular Label"
|
8148 |
msgid "Speaker Singular Label"
|
8149 |
msgstr "Label"
|
8150 |
|
8151 |
+
#: app/libraries/main.php:5646
|
8152 |
msgid "Sunday abbreviation"
|
8153 |
msgstr "Sonntag Abkürzung"
|
8154 |
|
8155 |
+
#: app/libraries/main.php:5647
|
8156 |
msgid "Monday abbreviation"
|
8157 |
msgstr "Montag Abkürzung"
|
8158 |
|
8159 |
+
#: app/libraries/main.php:5648
|
8160 |
msgid "Tuesday abbreviation"
|
8161 |
msgstr "Dienstag Abkürzung"
|
8162 |
|
8163 |
+
#: app/libraries/main.php:5649
|
8164 |
msgid "Wednesday abbreviation"
|
8165 |
msgstr "Mittwoch Abkürzung"
|
8166 |
|
8167 |
+
#: app/libraries/main.php:5650
|
8168 |
msgid "Thursday abbreviation"
|
8169 |
msgstr "Donnerstag Abkürzung"
|
8170 |
|
8171 |
+
#: app/libraries/main.php:5651
|
8172 |
msgid "Friday abbreviation"
|
8173 |
msgstr "Freitag Abkürzung"
|
8174 |
|
8175 |
+
#: app/libraries/main.php:5652
|
8176 |
msgid "Saturday abbreviation"
|
8177 |
msgstr "Samstag Abkürzung "
|
8178 |
|
8179 |
+
#: app/libraries/main.php:5656
|
8180 |
msgid "Others"
|
8181 |
msgstr "Andere"
|
8182 |
|
8183 |
+
#: app/libraries/main.php:5658
|
8184 |
msgid "Booking Success Message"
|
8185 |
msgstr "Buchung erfolgreich Mitteilung"
|
8186 |
|
8187 |
+
#: app/libraries/main.php:5658
|
8188 |
#, fuzzy
|
8189 |
#| msgid ""
|
8190 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
8196 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
8197 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
8198 |
|
8199 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
8200 |
msgid "Register Button"
|
8201 |
msgstr "Register Button"
|
8202 |
|
8203 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
8204 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8205 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8206 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8207 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8208 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
8209 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
8210 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8211 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8212 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
8218 |
msgid "REGISTER"
|
8219 |
msgstr "ANMELDEN"
|
8220 |
|
8221 |
+
#: app/libraries/main.php:5660
|
8222 |
msgid "View Detail Button"
|
8223 |
msgstr "Ansicht Detail Button"
|
8224 |
|
8225 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
8226 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8227 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8228 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8229 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8230 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
8231 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8232 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8233 |
msgid "View Detail"
|
8234 |
msgstr "Details "
|
8235 |
|
8236 |
+
#: app/libraries/main.php:5661
|
8237 |
msgid "Event Detail Button"
|
8238 |
msgstr "Event Detail Button"
|
8239 |
|
8240 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
8241 |
msgid "Event Detail"
|
8242 |
msgstr "Veranstaltungsdetails"
|
8243 |
|
8244 |
+
#: app/libraries/main.php:5663
|
8245 |
msgid "More Info Link"
|
8246 |
msgstr "Link Mehr Informationen"
|
8247 |
|
8248 |
+
#: app/libraries/main.php:5666
|
8249 |
msgid "Ticket (Singular)"
|
8250 |
msgstr "Ticket"
|
8251 |
|
8252 |
+
#: app/libraries/main.php:5667
|
8253 |
msgid "Tickets (Plural)"
|
8254 |
msgstr "Tickets"
|
8255 |
|
8256 |
+
#: app/libraries/main.php:5754
|
8257 |
msgid "EventON"
|
8258 |
msgstr "EventON"
|
8259 |
|
8260 |
+
#: app/libraries/main.php:5755
|
8261 |
msgid "The Events Calendar"
|
8262 |
msgstr "The Events Calendar"
|
8263 |
|
8264 |
+
#: app/libraries/main.php:5756
|
8265 |
msgid "Events Schedule WP Plugin"
|
8266 |
msgstr "Event Zeitplan WP-Plugin"
|
8267 |
|
8268 |
+
#: app/libraries/main.php:5757
|
8269 |
msgid "Calendarize It"
|
8270 |
msgstr ""
|
8271 |
|
8272 |
+
#: app/libraries/main.php:5758
|
8273 |
#, fuzzy
|
8274 |
#| msgid "No Search Options"
|
8275 |
msgid "Event Espresso"
|
8276 |
msgstr "Keine Suchoptionen"
|
8277 |
|
8278 |
+
#: app/libraries/main.php:5759
|
8279 |
msgid "Events Manager (Recurring)"
|
8280 |
msgstr "Wiederholende Veranstaltung"
|
8281 |
|
8282 |
+
#: app/libraries/main.php:5760
|
8283 |
msgid "Events Manager (Single)"
|
8284 |
msgstr "Moderner Event Kalender"
|
8285 |
|
8286 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
8287 |
msgid "Confirmed"
|
8288 |
msgstr "Bestätigt"
|
8289 |
|
8290 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
8291 |
msgid "Rejected"
|
8292 |
msgstr "Abgelehnt"
|
8293 |
|
8294 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
8295 |
msgid "Pending"
|
8296 |
msgstr "Ausstehend"
|
8297 |
|
8298 |
+
#: app/libraries/main.php:5882
|
8299 |
msgid "Waiting"
|
8300 |
msgstr "in Bearbeitung"
|
8301 |
|
8302 |
+
#: app/libraries/main.php:5925
|
8303 |
#, fuzzy
|
8304 |
#| msgid "Sunday"
|
8305 |
msgid "Sun"
|
8306 |
msgstr "Sonntag"
|
8307 |
|
8308 |
+
#: app/libraries/main.php:5925
|
8309 |
#, fuzzy
|
8310 |
#| msgid "Month"
|
8311 |
msgid "Mon"
|
8312 |
msgstr "Monat "
|
8313 |
|
8314 |
+
#: app/libraries/main.php:5925
|
8315 |
#, fuzzy
|
8316 |
#| msgid "Tel"
|
8317 |
msgid "Tue"
|
8318 |
msgstr "Tel"
|
8319 |
|
8320 |
+
#: app/libraries/main.php:5925
|
8321 |
msgid "Wed"
|
8322 |
msgstr ""
|
8323 |
|
8324 |
+
#: app/libraries/main.php:5925
|
8325 |
msgid "Thu"
|
8326 |
msgstr ""
|
8327 |
|
8328 |
+
#: app/libraries/main.php:5925
|
8329 |
#, fuzzy
|
8330 |
#| msgid "Friday"
|
8331 |
msgid "Fri"
|
8332 |
msgstr "Freitag"
|
8333 |
|
8334 |
+
#: app/libraries/main.php:5925
|
8335 |
#, fuzzy
|
8336 |
#| msgid "Start"
|
8337 |
msgid "Sat"
|
8338 |
msgstr "Start"
|
8339 |
|
8340 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
8341 |
#: app/libraries/render.php:432
|
8342 |
msgid "Skin controller does not exist."
|
8343 |
msgstr "Skin contoller existiert nicht."
|
8344 |
|
8345 |
+
#: app/libraries/main.php:6302
|
8346 |
msgid "Sold Out"
|
8347 |
msgstr "Ausgebucht"
|
8348 |
|
8349 |
+
#: app/libraries/main.php:6310
|
8350 |
msgid "Last Few Tickets"
|
8351 |
msgstr "Nur noch wenige Tickets verfügbar."
|
8352 |
|
8353 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
8354 |
#, fuzzy
|
8355 |
#| msgid "Hour"
|
8356 |
msgid "Hours"
|
8357 |
msgstr "Stunde"
|
8358 |
|
8359 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
8360 |
#, fuzzy
|
8361 |
#| msgid "minutes"
|
8362 |
msgid "Minutes"
|
8363 |
msgstr "Minuten"
|
8364 |
|
8365 |
+
#: app/libraries/main.php:6652
|
8366 |
msgid "AM / PM"
|
8367 |
msgstr ""
|
8368 |
|
8369 |
+
#: app/libraries/main.php:6653
|
8370 |
+
msgid "AM"
|
8371 |
+
msgstr "AM"
|
8372 |
+
|
8373 |
+
#: app/libraries/main.php:6654
|
8374 |
+
msgid "PM"
|
8375 |
+
msgstr "PM"
|
8376 |
+
|
8377 |
+
#: app/libraries/main.php:6662
|
8378 |
#, fuzzy
|
8379 |
#| msgid "Loading..."
|
8380 |
msgid "Ongoing..."
|
8381 |
msgstr "Laden…"
|
8382 |
|
8383 |
+
#: app/libraries/main.php:6663
|
8384 |
#, fuzzy
|
8385 |
#| msgid "Expired Events"
|
8386 |
msgid "Expired!"
|
8390 |
msgid "Please verify your email."
|
8391 |
msgstr "Bitte bestätigen Sie Ihre email."
|
8392 |
|
8393 |
+
#: app/libraries/notifications.php:158
|
8394 |
msgid "Your booking is received."
|
8395 |
msgstr "Ihre Buchung ist eingegangen"
|
8396 |
|
8397 |
+
#: app/libraries/notifications.php:268
|
8398 |
msgid "Your booking is confirmed."
|
8399 |
msgstr "Ihre Buchung wurde bestätigt."
|
8400 |
|
8401 |
+
#: app/libraries/notifications.php:425
|
8402 |
msgid "booking canceled."
|
8403 |
msgstr "Ihre Buchung wurde storniert"
|
8404 |
|
8405 |
+
#: app/libraries/notifications.php:503
|
8406 |
msgid "A new booking is received."
|
8407 |
msgstr "Eine neue Buchung ist eingegangen."
|
8408 |
|
8409 |
+
#: app/libraries/notifications.php:707
|
8410 |
msgid "A new event is added."
|
8411 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
8412 |
|
8413 |
+
#: app/libraries/notifications.php:779
|
8414 |
msgid "Your event is published."
|
8415 |
msgstr "Die Veranstaltung wurde veröffentlicht."
|
8416 |
|
8417 |
+
#: app/libraries/notifications.php:912
|
8418 |
#, php-format
|
8419 |
msgid "%s to %s"
|
8420 |
msgstr "%s zu %s"
|
8421 |
|
8422 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
8423 |
+
#: app/libraries/notifications.php:1060
|
8424 |
msgid "to"
|
8425 |
msgstr ""
|
8426 |
|
8427 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
8428 |
msgid "+ Add to Google Calendar"
|
8429 |
msgstr "+ zum Google Calendar hinzufügen"
|
8430 |
|
8431 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
8432 |
msgid "+ iCal export"
|
8433 |
msgstr "+ zu iCal exportieren"
|
8434 |
|
8435 |
+
#: app/libraries/notifications.php:1139
|
8436 |
msgid "Yes"
|
8437 |
msgstr "Ja"
|
8438 |
|
8439 |
+
#: app/libraries/notifications.php:1139
|
8440 |
msgid "No"
|
8441 |
msgstr "Nein"
|
8442 |
|
8443 |
+
#: app/libraries/skins.php:1069
|
8444 |
msgid "Select"
|
8445 |
msgstr "Auswählen"
|
8446 |
|
8447 |
+
#: app/modules/attendees-list/details.php:39
|
8448 |
msgid "Event Attendees"
|
8449 |
msgstr "Event Teilnehmer"
|
8450 |
|
8451 |
+
#: app/modules/attendees-list/details.php:41
|
8452 |
msgid "No attendee found! Be the first one to book!"
|
8453 |
msgstr "Keine Teilnehmer gefunden! Seien Sie der erste Teilnehmer der bucht!"
|
8454 |
|
8455 |
+
#: app/modules/attendees-list/details.php:62
|
8456 |
msgid "tickets"
|
8457 |
msgstr "Tickets"
|
8458 |
|
8459 |
+
#: app/modules/attendees-list/details.php:92
|
8460 |
+
#, fuzzy, php-format
|
8461 |
+
#| msgid "%s tickets"
|
8462 |
+
msgid "%s ticket"
|
8463 |
+
msgid_plural "%s tickets"
|
8464 |
+
msgstr[0] "%s tickets"
|
8465 |
+
msgstr[1] "%s tickets"
|
8466 |
+
|
8467 |
#: app/modules/booking/steps/checkout.php:37
|
8468 |
msgid "Checkout"
|
8469 |
msgstr "Zur Kasse gehen"
|
8517 |
"Teilnehmer Informationen für die weiteren Tickets übernehmen. (Das Ticket "
|
8518 |
"ist nicht an einen Namen gebunden)"
|
8519 |
|
8520 |
+
#: app/modules/booking/steps/tickets.php:32
|
8521 |
msgid "Book Event"
|
8522 |
msgstr "Veranstaltung buchen"
|
8523 |
|
8524 |
+
#: app/modules/booking/steps/tickets.php:59
|
8525 |
#, fuzzy
|
8526 |
#| msgid "No user selected!"
|
8527 |
msgid "1 Ticket selected."
|
8528 |
msgstr "Kein Nutzer ausgewählt"
|
8529 |
|
8530 |
+
#: app/modules/booking/steps/tickets.php:64
|
8531 |
#, php-format
|
8532 |
msgid "Available %s: <span>%s</span>"
|
8533 |
msgstr "Verfügbar %s: <span>%s</span>"
|
8534 |
|
8535 |
+
#: app/modules/booking/steps/tickets.php:69
|
8536 |
#, php-format
|
8537 |
msgid "The %s ticket sales has stopped!"
|
8538 |
msgstr ""
|
8539 |
|
8540 |
+
#: app/modules/booking/steps/tickets.php:70
|
8541 |
#, php-format
|
8542 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8543 |
msgstr ""
|
8560 |
msgid "Get Directions"
|
8561 |
msgstr "Wegbeschreibung"
|
8562 |
|
8563 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
8564 |
msgid "Share this event"
|
8565 |
msgstr "Diese Veranstaltung teilen"
|
8566 |
|
8615 |
msgid "Go to occurrence page"
|
8616 |
msgstr "Zum Event"
|
8617 |
|
8618 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
8619 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8620 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8621 |
msgid "Time"
|
8749 |
msgid "No Events"
|
8750 |
msgstr "Keine Veranstaltungen"
|
8751 |
|
8752 |
+
#: app/skins/single.php:393
|
8753 |
msgid "Home"
|
8754 |
msgstr ""
|
8755 |
|
8756 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
8757 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8758 |
#: app/skins/single/modern.php:292
|
8759 |
msgid "Sold out!"
|
8760 |
msgstr "Ausverkauft!"
|
8761 |
|
8762 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
8763 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8764 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8765 |
#: app/skins/single/modern.php:55
|
8766 |
msgid "Phone"
|
8767 |
msgstr "Phone"
|
8768 |
|
8769 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
8770 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8771 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8772 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
8775 |
msgid "Website"
|
8776 |
msgstr "Website"
|
8777 |
|
8778 |
+
#: app/skins/single.php:1261
|
8779 |
msgid "Speakers:"
|
8780 |
msgstr "Veranstalter"
|
8781 |
|
9391 |
#~ msgid "Can I Override MEC Template ?"
|
9392 |
#~ msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
|
9393 |
|
|
|
|
|
|
|
9394 |
#, fuzzy
|
9395 |
#~| msgid "Discount is not valid for this event!"
|
9396 |
#~ msgid "Event is not repeating. No dates exist for this event!"
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-06-
|
5 |
-
"PO-Revision-Date: 2020-06-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -13,11 +13,12 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;_x;_ex;esc_attr__;"
|
14 |
"esc_attr_e;esc_attr_x;_n;_nx\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
|
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
19 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
20 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
21 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
22 |
msgid "Modern Events Calendar"
|
23 |
msgstr ""
|
@@ -296,7 +297,7 @@ msgid "Edit Event"
|
|
296 |
msgstr ""
|
297 |
|
298 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
299 |
-
#: app/features/popup/event.php:
|
300 |
msgid "View Event"
|
301 |
msgstr ""
|
302 |
|
@@ -318,8 +319,8 @@ msgstr ""
|
|
318 |
#: app/features/mec/meta_boxes/search_form.php:654
|
319 |
#: app/features/mec/meta_boxes/search_form.php:760
|
320 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
321 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
322 |
-
#: app/libraries/skins.php:
|
323 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
324 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
325 |
#: app/skins/single/modern.php:137
|
@@ -329,7 +330,7 @@ msgstr ""
|
|
329 |
#: app/features/events.php:186 app/features/events.php:3193
|
330 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
331 |
#: app/features/mec/meta_boxes/filter.php:69
|
332 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
333 |
msgid "Categories"
|
334 |
msgstr ""
|
335 |
|
@@ -414,7 +415,7 @@ msgid "Event Repeating"
|
|
414 |
msgstr ""
|
415 |
|
416 |
#: app/features/events.php:336 app/features/events.php:1215
|
417 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
418 |
msgid "Hourly Schedule"
|
419 |
msgstr ""
|
420 |
|
@@ -444,18 +445,18 @@ msgstr ""
|
|
444 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
445 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
446 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
447 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
448 |
-
#: app/features/popup/event.php:
|
449 |
-
#: app/libraries/main.php:
|
450 |
-
#: app/skins/single.php:
|
451 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
452 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
453 |
msgid "Organizer"
|
454 |
msgstr ""
|
455 |
|
456 |
#: app/features/events.php:340 app/features/events.php:1092
|
457 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
458 |
-
#: app/skins/single.php:
|
459 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
460 |
#: app/skins/single/modern.php:234
|
461 |
msgid "Cost"
|
@@ -477,8 +478,8 @@ msgstr ""
|
|
477 |
#: app/features/events.php:3769 app/features/fes.php:223
|
478 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
479 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
480 |
-
#: app/features/popup/event.php:
|
481 |
-
#: app/libraries/notifications.php:
|
482 |
msgid "Name"
|
483 |
msgstr ""
|
484 |
|
@@ -490,9 +491,9 @@ msgstr ""
|
|
490 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
491 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
492 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
493 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
494 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
495 |
-
#: app/skins/single.php:
|
496 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
497 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
498 |
#: app/skins/single/modern.php:62
|
@@ -508,7 +509,7 @@ msgstr ""
|
|
508 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
509 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
510 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
511 |
-
#: app/features/mec.php:
|
512 |
#: app/features/mec/meta_boxes/display_options.php:278
|
513 |
#: app/features/mec/meta_boxes/display_options.php:517
|
514 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -532,12 +533,12 @@ msgstr ""
|
|
532 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
533 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
534 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
535 |
-
#: app/features/mec.php:
|
536 |
msgid "End Date"
|
537 |
msgstr ""
|
538 |
|
539 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
540 |
-
#: app/features/popup/event.php:
|
541 |
msgid "All-day Event"
|
542 |
msgstr ""
|
543 |
|
@@ -569,7 +570,7 @@ msgstr ""
|
|
569 |
#: app/features/events.php:2151 app/features/events.php:2166
|
570 |
#: app/features/events.php:2196 app/features/events.php:2209
|
571 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
572 |
-
#: app/features/locations.php:
|
573 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
574 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
575 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -633,8 +634,8 @@ msgstr ""
|
|
633 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
634 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
635 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
636 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
637 |
-
#: app/features/popup/event.php:
|
638 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
639 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
640 |
#: app/skins/single/modern.php:160
|
@@ -654,7 +655,7 @@ msgid "Repeats"
|
|
654 |
msgstr ""
|
655 |
|
656 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
657 |
-
#: app/features/mec.php:
|
658 |
#: app/skins/full_calendar/tpl.php:121
|
659 |
msgid "Daily"
|
660 |
msgstr ""
|
@@ -678,13 +679,13 @@ msgid "Weekly"
|
|
678 |
msgstr ""
|
679 |
|
680 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
681 |
-
#: app/features/mec.php:
|
682 |
#: app/skins/full_calendar/tpl.php:119
|
683 |
msgid "Monthly"
|
684 |
msgstr ""
|
685 |
|
686 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
687 |
-
#: app/features/mec.php:
|
688 |
#: app/skins/full_calendar/tpl.php:118
|
689 |
msgid "Yearly"
|
690 |
msgstr ""
|
@@ -802,7 +803,7 @@ msgstr ""
|
|
802 |
#: app/features/events.php:1088 app/features/events.php:3431
|
803 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
804 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
805 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
806 |
#: app/widgets/single.php:103
|
807 |
msgid "Event Cost"
|
808 |
msgstr ""
|
@@ -818,8 +819,8 @@ msgstr ""
|
|
818 |
#: app/features/events.php:1124 app/features/events.php:2330
|
819 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
820 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
821 |
-
#: app/modules/booking/steps/tickets.php:
|
822 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
823 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
824 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
825 |
msgid "Date"
|
@@ -904,7 +905,7 @@ msgstr ""
|
|
904 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
905 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
906 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
907 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
908 |
#: app/modules/speakers/details.php:18
|
909 |
msgid "Speakers"
|
910 |
msgstr ""
|
@@ -919,7 +920,7 @@ msgid "Event Links"
|
|
919 |
msgstr ""
|
920 |
|
921 |
#: app/features/events.php:1408 app/features/events.php:1414
|
922 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
923 |
msgid "Event Link"
|
924 |
msgstr ""
|
925 |
|
@@ -940,8 +941,8 @@ msgid "URL Shortener"
|
|
940 |
msgstr ""
|
941 |
|
942 |
#: app/features/events.php:1424 app/features/events.php:1437
|
943 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
944 |
-
#: app/skins/single.php:
|
945 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
946 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
947 |
#: app/widgets/single.php:107
|
@@ -975,8 +976,8 @@ msgid "Total User Booking Limits"
|
|
975 |
msgstr ""
|
976 |
|
977 |
#: app/features/events.php:1463 app/features/events.php:1605
|
978 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
979 |
-
#: app/modules/booking/steps/tickets.php:
|
980 |
msgid "Tickets"
|
981 |
msgstr ""
|
982 |
|
@@ -1000,7 +1001,7 @@ msgstr ""
|
|
1000 |
|
1001 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1002 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1003 |
-
#: app/modules/booking/steps/tickets.php:
|
1004 |
#: app/skins/available_spot/tpl.php:142
|
1005 |
msgid "Unlimited"
|
1006 |
msgstr ""
|
@@ -1152,7 +1153,7 @@ msgstr ""
|
|
1152 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1153 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1154 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1155 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1156 |
msgid "Label"
|
1157 |
msgstr ""
|
1158 |
|
@@ -1364,8 +1365,8 @@ msgstr ""
|
|
1364 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1365 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1366 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1367 |
-
#: app/features/locations.php:
|
1368 |
-
#: app/features/locations.php:
|
1369 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1370 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1371 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1379,10 +1380,10 @@ msgstr ""
|
|
1379 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1380 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1381 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1382 |
-
#: app/features/popup/event.php:
|
1383 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1384 |
-
#: app/libraries/main.php:
|
1385 |
-
#: app/skins/single.php:
|
1386 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1387 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1388 |
#: app/skins/single/modern.php:113
|
@@ -1424,7 +1425,7 @@ msgstr ""
|
|
1424 |
|
1425 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1426 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1427 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1428 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1429 |
msgid "ID"
|
1430 |
msgstr ""
|
@@ -1446,7 +1447,7 @@ msgstr ""
|
|
1446 |
|
1447 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1448 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1449 |
-
#: app/libraries/main.php:
|
1450 |
msgid "Ticket"
|
1451 |
msgstr ""
|
1452 |
|
@@ -1635,7 +1636,7 @@ msgid "eg. yourname@gmail.com"
|
|
1635 |
msgstr ""
|
1636 |
|
1637 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1638 |
-
#: app/features/popup/event.php:
|
1639 |
msgid "eg. John Smith"
|
1640 |
msgstr ""
|
1641 |
|
@@ -1656,8 +1657,8 @@ msgstr ""
|
|
1656 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1657 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1658 |
#: app/features/mec/meta_boxes/filter.php:72
|
1659 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1660 |
-
#: app/skins/single.php:
|
1661 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1662 |
#: app/skins/single/modern.php:249
|
1663 |
msgid "Labels"
|
@@ -2382,7 +2383,7 @@ msgid "Featured"
|
|
2382 |
msgstr ""
|
2383 |
|
2384 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2385 |
-
#: app/libraries/main.php:
|
2386 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2387 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2388 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2400,30 +2401,30 @@ msgstr ""
|
|
2400 |
msgid "You can show featured and canceled events by a different style!"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2404 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2405 |
-
#: app/modules/booking/steps/tickets.php:
|
2406 |
msgid "Count"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2410 |
#: app/features/organizers.php:207
|
2411 |
msgid "Slug"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2415 |
#, php-format
|
2416 |
msgid "Event %s"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2420 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2421 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2422 |
msgid "Locations"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: app/features/locations.php:
|
2426 |
-
#: app/features/locations.php:
|
2427 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2428 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2429 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2438,91 +2439,91 @@ msgstr ""
|
|
2438 |
msgid "Address"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: app/features/locations.php:
|
2442 |
msgid "Enter the location address"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: app/features/locations.php:
|
2446 |
-
#: app/features/locations.php:
|
2447 |
msgid "Latitude"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: app/features/locations.php:
|
2451 |
msgid "Geo latitude (Optional)"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: app/features/locations.php:
|
2455 |
-
#: app/features/locations.php:
|
2456 |
msgid "Longitude"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: app/features/locations.php:
|
2460 |
msgid "Geo longitude (Optional)"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: app/features/locations.php:
|
2464 |
-
#: app/features/locations.php:
|
2465 |
msgid "Location Website"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: app/features/locations.php:
|
2469 |
msgid "Location Website (Optional)"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: app/features/locations.php:
|
2473 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2474 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2475 |
msgid "Thumbnail"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: app/features/locations.php:
|
2479 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2480 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2481 |
msgid "Upload/Add image"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: app/features/locations.php:
|
2485 |
-
#: app/features/locations.php:
|
2486 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2487 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2488 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2489 |
msgid "Remove image"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: app/features/locations.php:
|
2493 |
msgid "Hide location"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: app/features/locations.php:
|
2497 |
msgid "Insert a new location"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: app/features/locations.php:
|
2501 |
msgid "Choose one of saved locations or insert new one below."
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: app/features/locations.php:
|
2505 |
msgid "Location Name"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: app/features/locations.php:
|
2509 |
msgid "eg. City Hall"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: app/features/locations.php:
|
2513 |
-
#: app/features/popup/event.php:
|
2514 |
msgid "Event Location"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: app/features/locations.php:
|
2518 |
msgid "eg. City hall, Manhattan, New York"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: app/features/locations.php:
|
2522 |
msgid "Latitude/Longitude"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: app/features/locations.php:
|
2526 |
msgid ""
|
2527 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2528 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2531,24 +2532,24 @@ msgid ""
|
|
2531 |
"the location on the map to find lat long coordinates."
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: app/features/locations.php:
|
2535 |
msgid "Get Latitude and Longitude"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: app/features/locations.php:
|
2539 |
-
#: app/features/popup/event.php:
|
2540 |
msgid "Choose image"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: app/features/locations.php:
|
2544 |
msgid "Don't show map in single event page"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: app/features/locations.php:
|
2548 |
msgid "Other Locations"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: app/features/locations.php:
|
2552 |
msgid ""
|
2553 |
"You can select extra locations in addition to main location if you like."
|
2554 |
msgstr ""
|
@@ -2613,7 +2614,7 @@ msgstr ""
|
|
2613 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2614 |
#: app/features/mec/meta_boxes/filter.php:71
|
2615 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2616 |
-
#: app/libraries/main.php:
|
2617 |
msgid "Organizers"
|
2618 |
msgstr ""
|
2619 |
|
@@ -2646,7 +2647,7 @@ msgstr ""
|
|
2646 |
msgid "MEC - Go Pro"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2650 |
#: app/features/mec/go-pro.php:9
|
2651 |
msgid "Go Pro"
|
2652 |
msgstr ""
|
@@ -2703,69 +2704,69 @@ msgstr ""
|
|
2703 |
msgid "Modal Popup"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: app/features/mec.php:
|
2707 |
msgid "Total Bookings"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: app/features/mec.php:
|
2711 |
msgid "Modern Events Calendar (Lite)"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: app/features/mec.php:
|
2715 |
#: app/features/mec/settings.php:428
|
2716 |
msgid "Upcoming Events"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
#: app/features/mec.php:
|
2720 |
msgid "News & Updates"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#: app/features/mec.php:
|
2724 |
msgid "Blog"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: app/features/mec.php:
|
2728 |
msgid "Help"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: app/features/mec.php:
|
2732 |
msgid "This Month"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: app/features/mec.php:
|
2736 |
msgid "Last Month"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: app/features/mec.php:
|
2740 |
msgid "This Year"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: app/features/mec.php:
|
2744 |
msgid "Last Year"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: app/features/mec.php:
|
2748 |
msgid "Bar"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
-
#: app/features/mec.php:
|
2752 |
msgid "Line"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: app/features/mec.php:
|
2756 |
msgid "Filter"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#: app/features/mec.php:
|
2760 |
#, php-format
|
2761 |
msgid "Total Sells (%s)"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: app/features/mec.php:
|
2765 |
msgid "Print Calendar"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: app/features/mec.php:
|
2769 |
msgid "Display Events"
|
2770 |
msgstr ""
|
2771 |
|
@@ -3146,7 +3147,7 @@ msgstr ""
|
|
3146 |
#: app/features/mec/notifications.php:923
|
3147 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3148 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3149 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3150 |
msgid "Verified"
|
3151 |
msgstr ""
|
3152 |
|
@@ -4259,8 +4260,8 @@ msgstr ""
|
|
4259 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4260 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4261 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4262 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4263 |
-
#: app/libraries/skins.php:
|
4264 |
msgid "Speaker"
|
4265 |
msgstr ""
|
4266 |
|
@@ -4276,7 +4277,7 @@ msgstr ""
|
|
4276 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4277 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4278 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4279 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4280 |
msgid "Tag"
|
4281 |
msgstr ""
|
4282 |
|
@@ -5003,7 +5004,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
5003 |
msgstr ""
|
5004 |
|
5005 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5006 |
-
#: app/libraries/notifications.php:
|
5007 |
msgid "Booking Reminder"
|
5008 |
msgstr ""
|
5009 |
|
@@ -5031,7 +5032,7 @@ msgstr ""
|
|
5031 |
msgid "Please, insert comma to separate reminder days."
|
5032 |
msgstr ""
|
5033 |
|
5034 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5035 |
#: app/libraries/main.php:584
|
5036 |
msgid "New Event"
|
5037 |
msgstr ""
|
@@ -5225,7 +5226,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5225 |
msgstr ""
|
5226 |
|
5227 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5228 |
-
#: app/libraries/main.php:
|
5229 |
msgid "Weekdays"
|
5230 |
msgstr ""
|
5231 |
|
@@ -5884,7 +5885,7 @@ msgid ""
|
|
5884 |
msgstr ""
|
5885 |
|
5886 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
5887 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
5888 |
msgid "Related Events"
|
5889 |
msgstr ""
|
5890 |
|
@@ -6433,7 +6434,7 @@ msgid "Insert organizer email address."
|
|
6433 |
msgstr ""
|
6434 |
|
6435 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
6436 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
6437 |
msgid "Link to organizer page"
|
6438 |
msgstr ""
|
6439 |
|
@@ -6450,40 +6451,40 @@ msgstr ""
|
|
6450 |
msgid "Event Main %s"
|
6451 |
msgstr ""
|
6452 |
|
6453 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
6454 |
msgid "Hide organizer"
|
6455 |
msgstr ""
|
6456 |
|
6457 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
6458 |
msgid "Insert a new organizer"
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
6462 |
msgid "Choose one of saved organizers or insert new one below."
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
6466 |
msgid "Phone number."
|
6467 |
msgstr ""
|
6468 |
|
6469 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
6470 |
msgid "eg. +1 (234) 5678"
|
6471 |
msgstr ""
|
6472 |
|
6473 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
6474 |
msgid "Email address."
|
6475 |
msgstr ""
|
6476 |
|
6477 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
6478 |
msgid "eg. john@smith.com"
|
6479 |
msgstr ""
|
6480 |
|
6481 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
6482 |
msgid "eg. https://webnus.net"
|
6483 |
msgstr ""
|
6484 |
|
6485 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
6486 |
-
#: app/skins/single.php:
|
6487 |
msgid "Other Organizers"
|
6488 |
msgstr ""
|
6489 |
|
@@ -6504,55 +6505,45 @@ msgstr ""
|
|
6504 |
msgid "Event name is required"
|
6505 |
msgstr ""
|
6506 |
|
6507 |
-
#: app/features/popup/event.php:
|
6508 |
-
#: app/libraries/main.php:6643
|
6509 |
-
msgid "AM"
|
6510 |
-
msgstr ""
|
6511 |
-
|
6512 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
6513 |
-
#: app/libraries/main.php:6644
|
6514 |
-
msgid "PM"
|
6515 |
-
msgstr ""
|
6516 |
-
|
6517 |
-
#: app/features/popup/event.php:256
|
6518 |
msgid "Choose one of saved locations or insert new one."
|
6519 |
msgstr ""
|
6520 |
|
6521 |
-
#: app/features/popup/event.php:
|
6522 |
msgid "Add Location"
|
6523 |
msgstr ""
|
6524 |
|
6525 |
-
#: app/features/popup/event.php:
|
6526 |
msgid "Add Organizer"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
-
#: app/features/popup/event.php:
|
6530 |
msgid "All Categories"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
-
#: app/features/popup/event.php:
|
6534 |
msgid "Most Used"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
-
#: app/features/popup/event.php:
|
6538 |
msgid "Add New Category"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
-
#: app/features/popup/event.php:
|
6542 |
msgid "Set Featured Image"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
-
#: app/features/popup/event.php:
|
6546 |
msgid "Your Event Has Been Created."
|
6547 |
msgstr ""
|
6548 |
|
6549 |
-
#: app/features/popup/event.php:
|
6550 |
msgid "Prev"
|
6551 |
msgstr ""
|
6552 |
|
6553 |
-
#: app/features/popup/event.php:
|
6554 |
#: app/modules/booking/steps/form.php:188
|
6555 |
-
#: app/modules/booking/steps/tickets.php:
|
6556 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
6557 |
msgid "Next"
|
6558 |
msgstr ""
|
@@ -6756,11 +6747,11 @@ msgstr ""
|
|
6756 |
msgid "No search result."
|
6757 |
msgstr ""
|
6758 |
|
6759 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
6760 |
-
#: app/libraries/notifications.php:
|
6761 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
6762 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
6763 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
6764 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
6765 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
6766 |
msgid "All Day"
|
@@ -6834,12 +6825,12 @@ msgstr ""
|
|
6834 |
msgid "%s Price"
|
6835 |
msgstr ""
|
6836 |
|
6837 |
-
#: app/libraries/book.php:
|
6838 |
msgid "Discount"
|
6839 |
msgstr ""
|
6840 |
|
6841 |
-
#: app/libraries/book.php:
|
6842 |
-
#: app/modules/booking/default.php:
|
6843 |
msgid "Download Invoice"
|
6844 |
msgstr ""
|
6845 |
|
@@ -6862,51 +6853,51 @@ msgctxt "plugin link"
|
|
6862 |
msgid "Upgrade"
|
6863 |
msgstr ""
|
6864 |
|
6865 |
-
#: app/libraries/factory.php:
|
6866 |
msgid "day"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
-
#: app/libraries/factory.php:
|
6870 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
6871 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
6872 |
msgid "days"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
-
#: app/libraries/factory.php:
|
6876 |
msgid "hour"
|
6877 |
msgstr ""
|
6878 |
|
6879 |
-
#: app/libraries/factory.php:
|
6880 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
6881 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
6882 |
msgid "hours"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#: app/libraries/factory.php:
|
6886 |
msgid "minute"
|
6887 |
msgstr ""
|
6888 |
|
6889 |
-
#: app/libraries/factory.php:
|
6890 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
6891 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
6892 |
msgid "minutes"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
-
#: app/libraries/factory.php:
|
6896 |
msgid "second"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
-
#: app/libraries/factory.php:
|
6900 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
6901 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
6902 |
msgid "seconds"
|
6903 |
msgstr ""
|
6904 |
|
6905 |
-
#: app/libraries/factory.php:
|
6906 |
msgid "MEC Single Sidebar"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
-
#: app/libraries/factory.php:
|
6910 |
msgid "Custom sidebar for single and modal page of MEC."
|
6911 |
msgstr ""
|
6912 |
|
@@ -6968,31 +6959,31 @@ msgstr ""
|
|
6968 |
msgid "Timeline View"
|
6969 |
msgstr ""
|
6970 |
|
6971 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
6972 |
msgid "SU"
|
6973 |
msgstr ""
|
6974 |
|
6975 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
6976 |
msgid "MO"
|
6977 |
msgstr ""
|
6978 |
|
6979 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
6980 |
msgid "TU"
|
6981 |
msgstr ""
|
6982 |
|
6983 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
6984 |
msgid "WE"
|
6985 |
msgstr ""
|
6986 |
|
6987 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
6988 |
msgid "TH"
|
6989 |
msgstr ""
|
6990 |
|
6991 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
6992 |
msgid "FR"
|
6993 |
msgstr ""
|
6994 |
|
6995 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
6996 |
msgid "SA"
|
6997 |
msgstr ""
|
6998 |
|
@@ -7295,125 +7286,125 @@ msgstr ""
|
|
7295 |
msgid "Free"
|
7296 |
msgstr ""
|
7297 |
|
7298 |
-
#: app/libraries/main.php:
|
7299 |
msgid "M.E. Calender"
|
7300 |
msgstr ""
|
7301 |
|
7302 |
-
#: app/libraries/main.php:
|
7303 |
#, php-format
|
7304 |
msgid "Copy of %s"
|
7305 |
msgstr ""
|
7306 |
|
7307 |
-
#: app/libraries/main.php:
|
7308 |
msgid "Booked an event."
|
7309 |
msgstr ""
|
7310 |
|
7311 |
-
#: app/libraries/main.php:
|
7312 |
#, php-format
|
7313 |
msgid "%s booked %s event."
|
7314 |
msgstr ""
|
7315 |
|
7316 |
-
#: app/libraries/main.php:
|
7317 |
msgid "Taxonomies"
|
7318 |
msgstr ""
|
7319 |
|
7320 |
-
#: app/libraries/main.php:
|
7321 |
msgid "Category Plural Label"
|
7322 |
msgstr ""
|
7323 |
|
7324 |
-
#: app/libraries/main.php:
|
7325 |
msgid "Category Singular Label"
|
7326 |
msgstr ""
|
7327 |
|
7328 |
-
#: app/libraries/main.php:
|
7329 |
msgid "Label Plural Label"
|
7330 |
msgstr ""
|
7331 |
|
7332 |
-
#: app/libraries/main.php:
|
7333 |
msgid "Label Singular Label"
|
7334 |
msgstr ""
|
7335 |
|
7336 |
-
#: app/libraries/main.php:
|
7337 |
msgid "label"
|
7338 |
msgstr ""
|
7339 |
|
7340 |
-
#: app/libraries/main.php:
|
7341 |
msgid "Location Plural Label"
|
7342 |
msgstr ""
|
7343 |
|
7344 |
-
#: app/libraries/main.php:
|
7345 |
msgid "Location Singular Label"
|
7346 |
msgstr ""
|
7347 |
|
7348 |
-
#: app/libraries/main.php:
|
7349 |
msgid "Organizer Plural Label"
|
7350 |
msgstr ""
|
7351 |
|
7352 |
-
#: app/libraries/main.php:
|
7353 |
msgid "Organizer Singular Label"
|
7354 |
msgstr ""
|
7355 |
|
7356 |
-
#: app/libraries/main.php:
|
7357 |
msgid "Speaker Plural Label"
|
7358 |
msgstr ""
|
7359 |
|
7360 |
-
#: app/libraries/main.php:
|
7361 |
msgid "Speaker Singular Label"
|
7362 |
msgstr ""
|
7363 |
|
7364 |
-
#: app/libraries/main.php:
|
7365 |
msgid "Sunday abbreviation"
|
7366 |
msgstr ""
|
7367 |
|
7368 |
-
#: app/libraries/main.php:
|
7369 |
msgid "Monday abbreviation"
|
7370 |
msgstr ""
|
7371 |
|
7372 |
-
#: app/libraries/main.php:
|
7373 |
msgid "Tuesday abbreviation"
|
7374 |
msgstr ""
|
7375 |
|
7376 |
-
#: app/libraries/main.php:
|
7377 |
msgid "Wednesday abbreviation"
|
7378 |
msgstr ""
|
7379 |
|
7380 |
-
#: app/libraries/main.php:
|
7381 |
msgid "Thursday abbreviation"
|
7382 |
msgstr ""
|
7383 |
|
7384 |
-
#: app/libraries/main.php:
|
7385 |
msgid "Friday abbreviation"
|
7386 |
msgstr ""
|
7387 |
|
7388 |
-
#: app/libraries/main.php:
|
7389 |
msgid "Saturday abbreviation"
|
7390 |
msgstr ""
|
7391 |
|
7392 |
-
#: app/libraries/main.php:
|
7393 |
msgid "Others"
|
7394 |
msgstr ""
|
7395 |
|
7396 |
-
#: app/libraries/main.php:
|
7397 |
msgid "Booking Success Message"
|
7398 |
msgstr ""
|
7399 |
|
7400 |
-
#: app/libraries/main.php:
|
7401 |
msgid ""
|
7402 |
"Thanks you for booking. Your tickets are booked, booking verification might "
|
7403 |
"be needed, please check your email."
|
7404 |
msgstr ""
|
7405 |
|
7406 |
-
#: app/libraries/main.php:
|
7407 |
msgid "Register Button"
|
7408 |
msgstr ""
|
7409 |
|
7410 |
-
#: app/libraries/main.php:
|
7411 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
7412 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
7413 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
7414 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
7415 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
7416 |
-
#: app/skins/single.php:
|
7417 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
7418 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
7419 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -7425,143 +7416,151 @@ msgstr ""
|
|
7425 |
msgid "REGISTER"
|
7426 |
msgstr ""
|
7427 |
|
7428 |
-
#: app/libraries/main.php:
|
7429 |
msgid "View Detail Button"
|
7430 |
msgstr ""
|
7431 |
|
7432 |
-
#: app/libraries/main.php:
|
7433 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
7434 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
7435 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
7436 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
7437 |
-
#: app/skins/single.php:
|
7438 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
7439 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
7440 |
msgid "View Detail"
|
7441 |
msgstr ""
|
7442 |
|
7443 |
-
#: app/libraries/main.php:
|
7444 |
msgid "Event Detail Button"
|
7445 |
msgstr ""
|
7446 |
|
7447 |
-
#: app/libraries/main.php:
|
7448 |
msgid "Event Detail"
|
7449 |
msgstr ""
|
7450 |
|
7451 |
-
#: app/libraries/main.php:
|
7452 |
msgid "More Info Link"
|
7453 |
msgstr ""
|
7454 |
|
7455 |
-
#: app/libraries/main.php:
|
7456 |
msgid "Ticket (Singular)"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
-
#: app/libraries/main.php:
|
7460 |
msgid "Tickets (Plural)"
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: app/libraries/main.php:
|
7464 |
msgid "EventON"
|
7465 |
msgstr ""
|
7466 |
|
7467 |
-
#: app/libraries/main.php:
|
7468 |
msgid "The Events Calendar"
|
7469 |
msgstr ""
|
7470 |
|
7471 |
-
#: app/libraries/main.php:
|
7472 |
msgid "Events Schedule WP Plugin"
|
7473 |
msgstr ""
|
7474 |
|
7475 |
-
#: app/libraries/main.php:
|
7476 |
msgid "Calendarize It"
|
7477 |
msgstr ""
|
7478 |
|
7479 |
-
#: app/libraries/main.php:
|
7480 |
msgid "Event Espresso"
|
7481 |
msgstr ""
|
7482 |
|
7483 |
-
#: app/libraries/main.php:
|
7484 |
msgid "Events Manager (Recurring)"
|
7485 |
msgstr ""
|
7486 |
|
7487 |
-
#: app/libraries/main.php:
|
7488 |
msgid "Events Manager (Single)"
|
7489 |
msgstr ""
|
7490 |
|
7491 |
-
#: app/libraries/main.php:
|
7492 |
msgid "Confirmed"
|
7493 |
msgstr ""
|
7494 |
|
7495 |
-
#: app/libraries/main.php:
|
7496 |
msgid "Rejected"
|
7497 |
msgstr ""
|
7498 |
|
7499 |
-
#: app/libraries/main.php:
|
7500 |
msgid "Pending"
|
7501 |
msgstr ""
|
7502 |
|
7503 |
-
#: app/libraries/main.php:
|
7504 |
msgid "Waiting"
|
7505 |
msgstr ""
|
7506 |
|
7507 |
-
#: app/libraries/main.php:
|
7508 |
msgid "Sun"
|
7509 |
msgstr ""
|
7510 |
|
7511 |
-
#: app/libraries/main.php:
|
7512 |
msgid "Mon"
|
7513 |
msgstr ""
|
7514 |
|
7515 |
-
#: app/libraries/main.php:
|
7516 |
msgid "Tue"
|
7517 |
msgstr ""
|
7518 |
|
7519 |
-
#: app/libraries/main.php:
|
7520 |
msgid "Wed"
|
7521 |
msgstr ""
|
7522 |
|
7523 |
-
#: app/libraries/main.php:
|
7524 |
msgid "Thu"
|
7525 |
msgstr ""
|
7526 |
|
7527 |
-
#: app/libraries/main.php:
|
7528 |
msgid "Fri"
|
7529 |
msgstr ""
|
7530 |
|
7531 |
-
#: app/libraries/main.php:
|
7532 |
msgid "Sat"
|
7533 |
msgstr ""
|
7534 |
|
7535 |
-
#: app/libraries/main.php:
|
7536 |
#: app/libraries/render.php:432
|
7537 |
msgid "Skin controller does not exist."
|
7538 |
msgstr ""
|
7539 |
|
7540 |
-
#: app/libraries/main.php:
|
7541 |
msgid "Sold Out"
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#: app/libraries/main.php:
|
7545 |
msgid "Last Few Tickets"
|
7546 |
msgstr ""
|
7547 |
|
7548 |
-
#: app/libraries/main.php:
|
7549 |
msgid "Hours"
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#: app/libraries/main.php:
|
7553 |
msgid "Minutes"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
-
#: app/libraries/main.php:
|
7557 |
msgid "AM / PM"
|
7558 |
msgstr ""
|
7559 |
|
7560 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7561 |
msgid "Ongoing..."
|
7562 |
msgstr ""
|
7563 |
|
7564 |
-
#: app/libraries/main.php:
|
7565 |
msgid "Expired!"
|
7566 |
msgstr ""
|
7567 |
|
@@ -7569,72 +7568,79 @@ msgstr ""
|
|
7569 |
msgid "Please verify your email."
|
7570 |
msgstr ""
|
7571 |
|
7572 |
-
#: app/libraries/notifications.php:
|
7573 |
msgid "Your booking is received."
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: app/libraries/notifications.php:
|
7577 |
msgid "Your booking is confirmed."
|
7578 |
msgstr ""
|
7579 |
|
7580 |
-
#: app/libraries/notifications.php:
|
7581 |
msgid "booking canceled."
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: app/libraries/notifications.php:
|
7585 |
msgid "A new booking is received."
|
7586 |
msgstr ""
|
7587 |
|
7588 |
-
#: app/libraries/notifications.php:
|
7589 |
msgid "A new event is added."
|
7590 |
msgstr ""
|
7591 |
|
7592 |
-
#: app/libraries/notifications.php:
|
7593 |
msgid "Your event is published."
|
7594 |
msgstr ""
|
7595 |
|
7596 |
-
#: app/libraries/notifications.php:
|
7597 |
#, php-format
|
7598 |
msgid "%s to %s"
|
7599 |
msgstr ""
|
7600 |
|
7601 |
-
#: app/libraries/notifications.php:
|
7602 |
-
#: app/libraries/notifications.php:
|
7603 |
msgid "to"
|
7604 |
msgstr ""
|
7605 |
|
7606 |
-
#: app/libraries/notifications.php:
|
7607 |
msgid "+ Add to Google Calendar"
|
7608 |
msgstr ""
|
7609 |
|
7610 |
-
#: app/libraries/notifications.php:
|
7611 |
msgid "+ iCal export"
|
7612 |
msgstr ""
|
7613 |
|
7614 |
-
#: app/libraries/notifications.php:
|
7615 |
msgid "Yes"
|
7616 |
msgstr ""
|
7617 |
|
7618 |
-
#: app/libraries/notifications.php:
|
7619 |
msgid "No"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
-
#: app/libraries/skins.php:
|
7623 |
msgid "Select"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
-
#: app/modules/attendees-list/details.php:
|
7627 |
msgid "Event Attendees"
|
7628 |
msgstr ""
|
7629 |
|
7630 |
-
#: app/modules/attendees-list/details.php:
|
7631 |
msgid "No attendee found! Be the first one to book!"
|
7632 |
msgstr ""
|
7633 |
|
7634 |
-
#: app/modules/attendees-list/details.php:
|
7635 |
msgid "tickets"
|
7636 |
msgstr ""
|
7637 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7638 |
#: app/modules/booking/steps/checkout.php:37
|
7639 |
msgid "Checkout"
|
7640 |
msgstr ""
|
@@ -7680,25 +7686,25 @@ msgstr ""
|
|
7680 |
msgid "Fill other attendees information like the first form."
|
7681 |
msgstr ""
|
7682 |
|
7683 |
-
#: app/modules/booking/steps/tickets.php:
|
7684 |
msgid "Book Event"
|
7685 |
msgstr ""
|
7686 |
|
7687 |
-
#: app/modules/booking/steps/tickets.php:
|
7688 |
msgid "1 Ticket selected."
|
7689 |
msgstr ""
|
7690 |
|
7691 |
-
#: app/modules/booking/steps/tickets.php:
|
7692 |
#, php-format
|
7693 |
msgid "Available %s: <span>%s</span>"
|
7694 |
msgstr ""
|
7695 |
|
7696 |
-
#: app/modules/booking/steps/tickets.php:
|
7697 |
#, php-format
|
7698 |
msgid "The %s ticket sales has stopped!"
|
7699 |
msgstr ""
|
7700 |
|
7701 |
-
#: app/modules/booking/steps/tickets.php:
|
7702 |
#, php-format
|
7703 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
7704 |
msgstr ""
|
@@ -7719,7 +7725,7 @@ msgstr ""
|
|
7719 |
msgid "Get Directions"
|
7720 |
msgstr ""
|
7721 |
|
7722 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
7723 |
msgid "Share this event"
|
7724 |
msgstr ""
|
7725 |
|
@@ -7770,7 +7776,7 @@ msgstr ""
|
|
7770 |
msgid "Go to occurrence page"
|
7771 |
msgstr ""
|
7772 |
|
7773 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
7774 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
7775 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
7776 |
msgid "Time"
|
@@ -7900,24 +7906,24 @@ msgstr ""
|
|
7900 |
msgid "No Events"
|
7901 |
msgstr ""
|
7902 |
|
7903 |
-
#: app/skins/single.php:
|
7904 |
msgid "Home"
|
7905 |
msgstr ""
|
7906 |
|
7907 |
-
#: app/skins/single.php:
|
7908 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
7909 |
#: app/skins/single/modern.php:292
|
7910 |
msgid "Sold out!"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
-
#: app/skins/single.php:
|
7914 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
7915 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
7916 |
#: app/skins/single/modern.php:55
|
7917 |
msgid "Phone"
|
7918 |
msgstr ""
|
7919 |
|
7920 |
-
#: app/skins/single.php:
|
7921 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
7922 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
7923 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -7926,7 +7932,7 @@ msgstr ""
|
|
7926 |
msgid "Website"
|
7927 |
msgstr ""
|
7928 |
|
7929 |
-
#: app/skins/single.php:
|
7930 |
msgid "Speakers:"
|
7931 |
msgstr ""
|
7932 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-06-16 16:46+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;_x;_ex;esc_attr__;"
|
14 |
"esc_attr_e;esc_attr_x;_n;_nx\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
20 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
21 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
22 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
23 |
msgid "Modern Events Calendar"
|
24 |
msgstr ""
|
297 |
msgstr ""
|
298 |
|
299 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
300 |
+
#: app/features/popup/event.php:252
|
301 |
msgid "View Event"
|
302 |
msgstr ""
|
303 |
|
319 |
#: app/features/mec/meta_boxes/search_form.php:654
|
320 |
#: app/features/mec/meta_boxes/search_form.php:760
|
321 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
322 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
323 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
324 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
325 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
326 |
#: app/skins/single/modern.php:137
|
330 |
#: app/features/events.php:186 app/features/events.php:3193
|
331 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
332 |
#: app/features/mec/meta_boxes/filter.php:69
|
333 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
334 |
msgid "Categories"
|
335 |
msgstr ""
|
336 |
|
415 |
msgstr ""
|
416 |
|
417 |
#: app/features/events.php:336 app/features/events.php:1215
|
418 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
419 |
msgid "Hourly Schedule"
|
420 |
msgstr ""
|
421 |
|
445 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
446 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
447 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
448 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
449 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
450 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
451 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
452 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
453 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
454 |
msgid "Organizer"
|
455 |
msgstr ""
|
456 |
|
457 |
#: app/features/events.php:340 app/features/events.php:1092
|
458 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
459 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
460 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
461 |
#: app/skins/single/modern.php:234
|
462 |
msgid "Cost"
|
478 |
#: app/features/events.php:3769 app/features/fes.php:223
|
479 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
480 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
481 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
482 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
483 |
msgid "Name"
|
484 |
msgstr ""
|
485 |
|
491 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
492 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
493 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
494 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
495 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
496 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
497 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
498 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
499 |
#: app/skins/single/modern.php:62
|
509 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
510 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
511 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
512 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
513 |
#: app/features/mec/meta_boxes/display_options.php:278
|
514 |
#: app/features/mec/meta_boxes/display_options.php:517
|
515 |
#: app/features/mec/meta_boxes/display_options.php:623
|
533 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
534 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
535 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
536 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
537 |
msgid "End Date"
|
538 |
msgstr ""
|
539 |
|
540 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
541 |
+
#: app/features/popup/event.php:109
|
542 |
msgid "All-day Event"
|
543 |
msgstr ""
|
544 |
|
570 |
#: app/features/events.php:2151 app/features/events.php:2166
|
571 |
#: app/features/events.php:2196 app/features/events.php:2209
|
572 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
573 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
574 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
575 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
576 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
634 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
635 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
636 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
637 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
638 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
639 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
640 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
641 |
#: app/skins/single/modern.php:160
|
655 |
msgstr ""
|
656 |
|
657 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
658 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
659 |
#: app/skins/full_calendar/tpl.php:121
|
660 |
msgid "Daily"
|
661 |
msgstr ""
|
679 |
msgstr ""
|
680 |
|
681 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
682 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
683 |
#: app/skins/full_calendar/tpl.php:119
|
684 |
msgid "Monthly"
|
685 |
msgstr ""
|
686 |
|
687 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
688 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
689 |
#: app/skins/full_calendar/tpl.php:118
|
690 |
msgid "Yearly"
|
691 |
msgstr ""
|
803 |
#: app/features/events.php:1088 app/features/events.php:3431
|
804 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
805 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
806 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
807 |
#: app/widgets/single.php:103
|
808 |
msgid "Event Cost"
|
809 |
msgstr ""
|
819 |
#: app/features/events.php:1124 app/features/events.php:2330
|
820 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
821 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
822 |
+
#: app/modules/booking/steps/tickets.php:36
|
823 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
824 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
825 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
826 |
msgid "Date"
|
905 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
906 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
907 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
908 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
909 |
#: app/modules/speakers/details.php:18
|
910 |
msgid "Speakers"
|
911 |
msgstr ""
|
920 |
msgstr ""
|
921 |
|
922 |
#: app/features/events.php:1408 app/features/events.php:1414
|
923 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
924 |
msgid "Event Link"
|
925 |
msgstr ""
|
926 |
|
941 |
msgstr ""
|
942 |
|
943 |
#: app/features/events.php:1424 app/features/events.php:1437
|
944 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
945 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
946 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
947 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
948 |
#: app/widgets/single.php:107
|
976 |
msgstr ""
|
977 |
|
978 |
#: app/features/events.php:1463 app/features/events.php:1605
|
979 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
980 |
+
#: app/modules/booking/steps/tickets.php:64
|
981 |
msgid "Tickets"
|
982 |
msgstr ""
|
983 |
|
1001 |
|
1002 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1003 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1004 |
+
#: app/modules/booking/steps/tickets.php:64
|
1005 |
#: app/skins/available_spot/tpl.php:142
|
1006 |
msgid "Unlimited"
|
1007 |
msgstr ""
|
1153 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1154 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1155 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1156 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1157 |
msgid "Label"
|
1158 |
msgstr ""
|
1159 |
|
1365 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1366 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1367 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1368 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1369 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1370 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1371 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1372 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1380 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1381 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1382 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1383 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1384 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1385 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1386 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1387 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1388 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1389 |
#: app/skins/single/modern.php:113
|
1425 |
|
1426 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1427 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1428 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1429 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1430 |
msgid "ID"
|
1431 |
msgstr ""
|
1447 |
|
1448 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1449 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1450 |
+
#: app/libraries/main.php:5666
|
1451 |
msgid "Ticket"
|
1452 |
msgstr ""
|
1453 |
|
1636 |
msgstr ""
|
1637 |
|
1638 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1639 |
+
#: app/features/popup/event.php:183
|
1640 |
msgid "eg. John Smith"
|
1641 |
msgstr ""
|
1642 |
|
1657 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1658 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1659 |
#: app/features/mec/meta_boxes/filter.php:72
|
1660 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1661 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1662 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1663 |
#: app/skins/single/modern.php:249
|
1664 |
msgid "Labels"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2386 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2387 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2388 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2389 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2401 |
msgid "You can show featured and canceled events by a different style!"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2405 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2406 |
+
#: app/modules/booking/steps/tickets.php:62
|
2407 |
msgid "Count"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2411 |
#: app/features/organizers.php:207
|
2412 |
msgid "Slug"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2416 |
#, php-format
|
2417 |
msgid "Event %s"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2421 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2422 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2423 |
msgid "Locations"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2427 |
+
#: app/features/locations.php:262
|
2428 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2429 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2430 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2439 |
msgid "Address"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2443 |
msgid "Enter the location address"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2447 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2448 |
msgid "Latitude"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2452 |
msgid "Geo latitude (Optional)"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2456 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2457 |
msgid "Longitude"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2461 |
msgid "Geo longitude (Optional)"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2465 |
+
#: app/features/locations.php:372
|
2466 |
msgid "Location Website"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2470 |
msgid "Location Website (Optional)"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2474 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2475 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2476 |
msgid "Thumbnail"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2480 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2481 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2482 |
msgid "Upload/Add image"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2486 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2487 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2488 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2489 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2490 |
msgid "Remove image"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2494 |
msgid "Hide location"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2498 |
msgid "Insert a new location"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
+
#: app/features/locations.php:334
|
2502 |
msgid "Choose one of saved locations or insert new one below."
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2506 |
msgid "Location Name"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2510 |
msgid "eg. City Hall"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2514 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2515 |
msgid "Event Location"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2519 |
msgid "eg. City hall, Manhattan, New York"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2523 |
msgid "Latitude/Longitude"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2527 |
msgid ""
|
2528 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2529 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2532 |
"the location on the map to find lat long coordinates."
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2536 |
msgid "Get Latitude and Longitude"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2540 |
+
#: app/features/popup/event.php:202
|
2541 |
msgid "Choose image"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2545 |
msgid "Don't show map in single event page"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2549 |
msgid "Other Locations"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: app/features/locations.php:398
|
2553 |
msgid ""
|
2554 |
"You can select extra locations in addition to main location if you like."
|
2555 |
msgstr ""
|
2614 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2615 |
#: app/features/mec/meta_boxes/filter.php:71
|
2616 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2617 |
+
#: app/libraries/main.php:5637
|
2618 |
msgid "Organizers"
|
2619 |
msgstr ""
|
2620 |
|
2647 |
msgid "MEC - Go Pro"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2651 |
#: app/features/mec/go-pro.php:9
|
2652 |
msgid "Go Pro"
|
2653 |
msgstr ""
|
2704 |
msgid "Modal Popup"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2708 |
msgid "Total Bookings"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2712 |
msgid "Modern Events Calendar (Lite)"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2716 |
#: app/features/mec/settings.php:428
|
2717 |
msgid "Upcoming Events"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: app/features/mec.php:1201
|
2721 |
msgid "News & Updates"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: app/features/mec.php:1214
|
2725 |
msgid "Blog"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: app/features/mec.php:1214
|
2729 |
msgid "Help"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: app/features/mec.php:1260
|
2733 |
msgid "This Month"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: app/features/mec.php:1266
|
2737 |
msgid "Last Month"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: app/features/mec.php:1272
|
2741 |
msgid "This Year"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: app/features/mec.php:1278
|
2745 |
msgid "Last Year"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: app/features/mec.php:1290
|
2749 |
msgid "Bar"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: app/features/mec.php:1291
|
2753 |
msgid "Line"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: app/features/mec.php:1293
|
2757 |
msgid "Filter"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: app/features/mec.php:1309
|
2761 |
#, php-format
|
2762 |
msgid "Total Sells (%s)"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: app/features/mec.php:1337
|
2766 |
msgid "Print Calendar"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: app/features/mec.php:1352
|
2770 |
msgid "Display Events"
|
2771 |
msgstr ""
|
2772 |
|
3147 |
#: app/features/mec/notifications.php:923
|
3148 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3149 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3150 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3151 |
msgid "Verified"
|
3152 |
msgstr ""
|
3153 |
|
4260 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4261 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4262 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4263 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4264 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4265 |
msgid "Speaker"
|
4266 |
msgstr ""
|
4267 |
|
4277 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4278 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4279 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4280 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4281 |
msgid "Tag"
|
4282 |
msgstr ""
|
4283 |
|
5004 |
msgstr ""
|
5005 |
|
5006 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5007 |
+
#: app/libraries/notifications.php:587
|
5008 |
msgid "Booking Reminder"
|
5009 |
msgstr ""
|
5010 |
|
5032 |
msgid "Please, insert comma to separate reminder days."
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5036 |
#: app/libraries/main.php:584
|
5037 |
msgid "New Event"
|
5038 |
msgstr ""
|
5226 |
msgstr ""
|
5227 |
|
5228 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5229 |
+
#: app/libraries/main.php:5644
|
5230 |
msgid "Weekdays"
|
5231 |
msgstr ""
|
5232 |
|
5885 |
msgstr ""
|
5886 |
|
5887 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
5888 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
5889 |
msgid "Related Events"
|
5890 |
msgstr ""
|
5891 |
|
6434 |
msgstr ""
|
6435 |
|
6436 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
6437 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
6438 |
msgid "Link to organizer page"
|
6439 |
msgstr ""
|
6440 |
|
6451 |
msgid "Event Main %s"
|
6452 |
msgstr ""
|
6453 |
|
6454 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
6455 |
msgid "Hide organizer"
|
6456 |
msgstr ""
|
6457 |
|
6458 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
6459 |
msgid "Insert a new organizer"
|
6460 |
msgstr ""
|
6461 |
|
6462 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
6463 |
msgid "Choose one of saved organizers or insert new one below."
|
6464 |
msgstr ""
|
6465 |
|
6466 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
6467 |
msgid "Phone number."
|
6468 |
msgstr ""
|
6469 |
|
6470 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
6471 |
msgid "eg. +1 (234) 5678"
|
6472 |
msgstr ""
|
6473 |
|
6474 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
6475 |
msgid "Email address."
|
6476 |
msgstr ""
|
6477 |
|
6478 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
6479 |
msgid "eg. john@smith.com"
|
6480 |
msgstr ""
|
6481 |
|
6482 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
6483 |
msgid "eg. https://webnus.net"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
6487 |
+
#: app/skins/single.php:1152
|
6488 |
msgid "Other Organizers"
|
6489 |
msgstr ""
|
6490 |
|
6505 |
msgid "Event name is required"
|
6506 |
msgstr ""
|
6507 |
|
6508 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6509 |
msgid "Choose one of saved locations or insert new one."
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: app/features/popup/event.php:130
|
6513 |
msgid "Add Location"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
+
#: app/features/popup/event.php:177
|
6517 |
msgid "Add Organizer"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
+
#: app/features/popup/event.php:217
|
6521 |
msgid "All Categories"
|
6522 |
msgstr ""
|
6523 |
|
6524 |
+
#: app/features/popup/event.php:218
|
6525 |
msgid "Most Used"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
+
#: app/features/popup/event.php:229
|
6529 |
msgid "Add New Category"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
+
#: app/features/popup/event.php:240
|
6533 |
msgid "Set Featured Image"
|
6534 |
msgstr ""
|
6535 |
|
6536 |
+
#: app/features/popup/event.php:250
|
6537 |
msgid "Your Event Has Been Created."
|
6538 |
msgstr ""
|
6539 |
|
6540 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
6541 |
msgid "Prev"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
6545 |
#: app/modules/booking/steps/form.php:188
|
6546 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
6547 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
6548 |
msgid "Next"
|
6549 |
msgstr ""
|
6747 |
msgid "No search result."
|
6748 |
msgstr ""
|
6749 |
|
6750 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
6751 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
6752 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
6753 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
6754 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
6755 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
6756 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
6757 |
msgid "All Day"
|
6825 |
msgid "%s Price"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
6829 |
msgid "Discount"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
6833 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
6834 |
msgid "Download Invoice"
|
6835 |
msgstr ""
|
6836 |
|
6853 |
msgid "Upgrade"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
+
#: app/libraries/factory.php:369
|
6857 |
msgid "day"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
6861 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
6862 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
6863 |
msgid "days"
|
6864 |
msgstr ""
|
6865 |
|
6866 |
+
#: app/libraries/factory.php:371
|
6867 |
msgid "hour"
|
6868 |
msgstr ""
|
6869 |
|
6870 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
6871 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
6872 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
6873 |
msgid "hours"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
+
#: app/libraries/factory.php:373
|
6877 |
msgid "minute"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
6881 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
6882 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
6883 |
msgid "minutes"
|
6884 |
msgstr ""
|
6885 |
|
6886 |
+
#: app/libraries/factory.php:375
|
6887 |
msgid "second"
|
6888 |
msgstr ""
|
6889 |
|
6890 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
6891 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
6892 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
6893 |
msgid "seconds"
|
6894 |
msgstr ""
|
6895 |
|
6896 |
+
#: app/libraries/factory.php:428
|
6897 |
msgid "MEC Single Sidebar"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
+
#: app/libraries/factory.php:429
|
6901 |
msgid "Custom sidebar for single and modal page of MEC."
|
6902 |
msgstr ""
|
6903 |
|
6959 |
msgid "Timeline View"
|
6960 |
msgstr ""
|
6961 |
|
6962 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
6963 |
msgid "SU"
|
6964 |
msgstr ""
|
6965 |
|
6966 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
6967 |
msgid "MO"
|
6968 |
msgstr ""
|
6969 |
|
6970 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
6971 |
msgid "TU"
|
6972 |
msgstr ""
|
6973 |
|
6974 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
6975 |
msgid "WE"
|
6976 |
msgstr ""
|
6977 |
|
6978 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
6979 |
msgid "TH"
|
6980 |
msgstr ""
|
6981 |
|
6982 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
6983 |
msgid "FR"
|
6984 |
msgstr ""
|
6985 |
|
6986 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
6987 |
msgid "SA"
|
6988 |
msgstr ""
|
6989 |
|
7286 |
msgid "Free"
|
7287 |
msgstr ""
|
7288 |
|
7289 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
7290 |
msgid "M.E. Calender"
|
7291 |
msgstr ""
|
7292 |
|
7293 |
+
#: app/libraries/main.php:4105
|
7294 |
#, php-format
|
7295 |
msgid "Copy of %s"
|
7296 |
msgstr ""
|
7297 |
|
7298 |
+
#: app/libraries/main.php:4923
|
7299 |
msgid "Booked an event."
|
7300 |
msgstr ""
|
7301 |
|
7302 |
+
#: app/libraries/main.php:4964
|
7303 |
#, php-format
|
7304 |
msgid "%s booked %s event."
|
7305 |
msgstr ""
|
7306 |
|
7307 |
+
#: app/libraries/main.php:5629
|
7308 |
msgid "Taxonomies"
|
7309 |
msgstr ""
|
7310 |
|
7311 |
+
#: app/libraries/main.php:5631
|
7312 |
msgid "Category Plural Label"
|
7313 |
msgstr ""
|
7314 |
|
7315 |
+
#: app/libraries/main.php:5632
|
7316 |
msgid "Category Singular Label"
|
7317 |
msgstr ""
|
7318 |
|
7319 |
+
#: app/libraries/main.php:5633
|
7320 |
msgid "Label Plural Label"
|
7321 |
msgstr ""
|
7322 |
|
7323 |
+
#: app/libraries/main.php:5634
|
7324 |
msgid "Label Singular Label"
|
7325 |
msgstr ""
|
7326 |
|
7327 |
+
#: app/libraries/main.php:5634
|
7328 |
msgid "label"
|
7329 |
msgstr ""
|
7330 |
|
7331 |
+
#: app/libraries/main.php:5635
|
7332 |
msgid "Location Plural Label"
|
7333 |
msgstr ""
|
7334 |
|
7335 |
+
#: app/libraries/main.php:5636
|
7336 |
msgid "Location Singular Label"
|
7337 |
msgstr ""
|
7338 |
|
7339 |
+
#: app/libraries/main.php:5637
|
7340 |
msgid "Organizer Plural Label"
|
7341 |
msgstr ""
|
7342 |
|
7343 |
+
#: app/libraries/main.php:5638
|
7344 |
msgid "Organizer Singular Label"
|
7345 |
msgstr ""
|
7346 |
|
7347 |
+
#: app/libraries/main.php:5639
|
7348 |
msgid "Speaker Plural Label"
|
7349 |
msgstr ""
|
7350 |
|
7351 |
+
#: app/libraries/main.php:5640
|
7352 |
msgid "Speaker Singular Label"
|
7353 |
msgstr ""
|
7354 |
|
7355 |
+
#: app/libraries/main.php:5646
|
7356 |
msgid "Sunday abbreviation"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
+
#: app/libraries/main.php:5647
|
7360 |
msgid "Monday abbreviation"
|
7361 |
msgstr ""
|
7362 |
|
7363 |
+
#: app/libraries/main.php:5648
|
7364 |
msgid "Tuesday abbreviation"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
+
#: app/libraries/main.php:5649
|
7368 |
msgid "Wednesday abbreviation"
|
7369 |
msgstr ""
|
7370 |
|
7371 |
+
#: app/libraries/main.php:5650
|
7372 |
msgid "Thursday abbreviation"
|
7373 |
msgstr ""
|
7374 |
|
7375 |
+
#: app/libraries/main.php:5651
|
7376 |
msgid "Friday abbreviation"
|
7377 |
msgstr ""
|
7378 |
|
7379 |
+
#: app/libraries/main.php:5652
|
7380 |
msgid "Saturday abbreviation"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
+
#: app/libraries/main.php:5656
|
7384 |
msgid "Others"
|
7385 |
msgstr ""
|
7386 |
|
7387 |
+
#: app/libraries/main.php:5658
|
7388 |
msgid "Booking Success Message"
|
7389 |
msgstr ""
|
7390 |
|
7391 |
+
#: app/libraries/main.php:5658
|
7392 |
msgid ""
|
7393 |
"Thanks you for booking. Your tickets are booked, booking verification might "
|
7394 |
"be needed, please check your email."
|
7395 |
msgstr ""
|
7396 |
|
7397 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
7398 |
msgid "Register Button"
|
7399 |
msgstr ""
|
7400 |
|
7401 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
7402 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
7403 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
7404 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
7405 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
7406 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
7407 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
7408 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
7409 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
7410 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
7416 |
msgid "REGISTER"
|
7417 |
msgstr ""
|
7418 |
|
7419 |
+
#: app/libraries/main.php:5660
|
7420 |
msgid "View Detail Button"
|
7421 |
msgstr ""
|
7422 |
|
7423 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
7424 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
7425 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
7426 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
7427 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
7428 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
7429 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
7430 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
7431 |
msgid "View Detail"
|
7432 |
msgstr ""
|
7433 |
|
7434 |
+
#: app/libraries/main.php:5661
|
7435 |
msgid "Event Detail Button"
|
7436 |
msgstr ""
|
7437 |
|
7438 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
7439 |
msgid "Event Detail"
|
7440 |
msgstr ""
|
7441 |
|
7442 |
+
#: app/libraries/main.php:5663
|
7443 |
msgid "More Info Link"
|
7444 |
msgstr ""
|
7445 |
|
7446 |
+
#: app/libraries/main.php:5666
|
7447 |
msgid "Ticket (Singular)"
|
7448 |
msgstr ""
|
7449 |
|
7450 |
+
#: app/libraries/main.php:5667
|
7451 |
msgid "Tickets (Plural)"
|
7452 |
msgstr ""
|
7453 |
|
7454 |
+
#: app/libraries/main.php:5754
|
7455 |
msgid "EventON"
|
7456 |
msgstr ""
|
7457 |
|
7458 |
+
#: app/libraries/main.php:5755
|
7459 |
msgid "The Events Calendar"
|
7460 |
msgstr ""
|
7461 |
|
7462 |
+
#: app/libraries/main.php:5756
|
7463 |
msgid "Events Schedule WP Plugin"
|
7464 |
msgstr ""
|
7465 |
|
7466 |
+
#: app/libraries/main.php:5757
|
7467 |
msgid "Calendarize It"
|
7468 |
msgstr ""
|
7469 |
|
7470 |
+
#: app/libraries/main.php:5758
|
7471 |
msgid "Event Espresso"
|
7472 |
msgstr ""
|
7473 |
|
7474 |
+
#: app/libraries/main.php:5759
|
7475 |
msgid "Events Manager (Recurring)"
|
7476 |
msgstr ""
|
7477 |
|
7478 |
+
#: app/libraries/main.php:5760
|
7479 |
msgid "Events Manager (Single)"
|
7480 |
msgstr ""
|
7481 |
|
7482 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
7483 |
msgid "Confirmed"
|
7484 |
msgstr ""
|
7485 |
|
7486 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
7487 |
msgid "Rejected"
|
7488 |
msgstr ""
|
7489 |
|
7490 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
7491 |
msgid "Pending"
|
7492 |
msgstr ""
|
7493 |
|
7494 |
+
#: app/libraries/main.php:5882
|
7495 |
msgid "Waiting"
|
7496 |
msgstr ""
|
7497 |
|
7498 |
+
#: app/libraries/main.php:5925
|
7499 |
msgid "Sun"
|
7500 |
msgstr ""
|
7501 |
|
7502 |
+
#: app/libraries/main.php:5925
|
7503 |
msgid "Mon"
|
7504 |
msgstr ""
|
7505 |
|
7506 |
+
#: app/libraries/main.php:5925
|
7507 |
msgid "Tue"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
+
#: app/libraries/main.php:5925
|
7511 |
msgid "Wed"
|
7512 |
msgstr ""
|
7513 |
|
7514 |
+
#: app/libraries/main.php:5925
|
7515 |
msgid "Thu"
|
7516 |
msgstr ""
|
7517 |
|
7518 |
+
#: app/libraries/main.php:5925
|
7519 |
msgid "Fri"
|
7520 |
msgstr ""
|
7521 |
|
7522 |
+
#: app/libraries/main.php:5925
|
7523 |
msgid "Sat"
|
7524 |
msgstr ""
|
7525 |
|
7526 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
7527 |
#: app/libraries/render.php:432
|
7528 |
msgid "Skin controller does not exist."
|
7529 |
msgstr ""
|
7530 |
|
7531 |
+
#: app/libraries/main.php:6302
|
7532 |
msgid "Sold Out"
|
7533 |
msgstr ""
|
7534 |
|
7535 |
+
#: app/libraries/main.php:6310
|
7536 |
msgid "Last Few Tickets"
|
7537 |
msgstr ""
|
7538 |
|
7539 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
7540 |
msgid "Hours"
|
7541 |
msgstr ""
|
7542 |
|
7543 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
7544 |
msgid "Minutes"
|
7545 |
msgstr ""
|
7546 |
|
7547 |
+
#: app/libraries/main.php:6652
|
7548 |
msgid "AM / PM"
|
7549 |
msgstr ""
|
7550 |
|
7551 |
+
#: app/libraries/main.php:6653
|
7552 |
+
msgid "AM"
|
7553 |
+
msgstr ""
|
7554 |
+
|
7555 |
+
#: app/libraries/main.php:6654
|
7556 |
+
msgid "PM"
|
7557 |
+
msgstr ""
|
7558 |
+
|
7559 |
+
#: app/libraries/main.php:6662
|
7560 |
msgid "Ongoing..."
|
7561 |
msgstr ""
|
7562 |
|
7563 |
+
#: app/libraries/main.php:6663
|
7564 |
msgid "Expired!"
|
7565 |
msgstr ""
|
7566 |
|
7568 |
msgid "Please verify your email."
|
7569 |
msgstr ""
|
7570 |
|
7571 |
+
#: app/libraries/notifications.php:158
|
7572 |
msgid "Your booking is received."
|
7573 |
msgstr ""
|
7574 |
|
7575 |
+
#: app/libraries/notifications.php:268
|
7576 |
msgid "Your booking is confirmed."
|
7577 |
msgstr ""
|
7578 |
|
7579 |
+
#: app/libraries/notifications.php:425
|
7580 |
msgid "booking canceled."
|
7581 |
msgstr ""
|
7582 |
|
7583 |
+
#: app/libraries/notifications.php:503
|
7584 |
msgid "A new booking is received."
|
7585 |
msgstr ""
|
7586 |
|
7587 |
+
#: app/libraries/notifications.php:707
|
7588 |
msgid "A new event is added."
|
7589 |
msgstr ""
|
7590 |
|
7591 |
+
#: app/libraries/notifications.php:779
|
7592 |
msgid "Your event is published."
|
7593 |
msgstr ""
|
7594 |
|
7595 |
+
#: app/libraries/notifications.php:912
|
7596 |
#, php-format
|
7597 |
msgid "%s to %s"
|
7598 |
msgstr ""
|
7599 |
|
7600 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
7601 |
+
#: app/libraries/notifications.php:1060
|
7602 |
msgid "to"
|
7603 |
msgstr ""
|
7604 |
|
7605 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
7606 |
msgid "+ Add to Google Calendar"
|
7607 |
msgstr ""
|
7608 |
|
7609 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
7610 |
msgid "+ iCal export"
|
7611 |
msgstr ""
|
7612 |
|
7613 |
+
#: app/libraries/notifications.php:1139
|
7614 |
msgid "Yes"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
+
#: app/libraries/notifications.php:1139
|
7618 |
msgid "No"
|
7619 |
msgstr ""
|
7620 |
|
7621 |
+
#: app/libraries/skins.php:1069
|
7622 |
msgid "Select"
|
7623 |
msgstr ""
|
7624 |
|
7625 |
+
#: app/modules/attendees-list/details.php:39
|
7626 |
msgid "Event Attendees"
|
7627 |
msgstr ""
|
7628 |
|
7629 |
+
#: app/modules/attendees-list/details.php:41
|
7630 |
msgid "No attendee found! Be the first one to book!"
|
7631 |
msgstr ""
|
7632 |
|
7633 |
+
#: app/modules/attendees-list/details.php:62
|
7634 |
msgid "tickets"
|
7635 |
msgstr ""
|
7636 |
|
7637 |
+
#: app/modules/attendees-list/details.php:92
|
7638 |
+
#, php-format
|
7639 |
+
msgid "%s ticket"
|
7640 |
+
msgid_plural "%s tickets"
|
7641 |
+
msgstr[0] ""
|
7642 |
+
msgstr[1] ""
|
7643 |
+
|
7644 |
#: app/modules/booking/steps/checkout.php:37
|
7645 |
msgid "Checkout"
|
7646 |
msgstr ""
|
7686 |
msgid "Fill other attendees information like the first form."
|
7687 |
msgstr ""
|
7688 |
|
7689 |
+
#: app/modules/booking/steps/tickets.php:32
|
7690 |
msgid "Book Event"
|
7691 |
msgstr ""
|
7692 |
|
7693 |
+
#: app/modules/booking/steps/tickets.php:59
|
7694 |
msgid "1 Ticket selected."
|
7695 |
msgstr ""
|
7696 |
|
7697 |
+
#: app/modules/booking/steps/tickets.php:64
|
7698 |
#, php-format
|
7699 |
msgid "Available %s: <span>%s</span>"
|
7700 |
msgstr ""
|
7701 |
|
7702 |
+
#: app/modules/booking/steps/tickets.php:69
|
7703 |
#, php-format
|
7704 |
msgid "The %s ticket sales has stopped!"
|
7705 |
msgstr ""
|
7706 |
|
7707 |
+
#: app/modules/booking/steps/tickets.php:70
|
7708 |
#, php-format
|
7709 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
7710 |
msgstr ""
|
7725 |
msgid "Get Directions"
|
7726 |
msgstr ""
|
7727 |
|
7728 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
7729 |
msgid "Share this event"
|
7730 |
msgstr ""
|
7731 |
|
7776 |
msgid "Go to occurrence page"
|
7777 |
msgstr ""
|
7778 |
|
7779 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
7780 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
7781 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
7782 |
msgid "Time"
|
7906 |
msgid "No Events"
|
7907 |
msgstr ""
|
7908 |
|
7909 |
+
#: app/skins/single.php:393
|
7910 |
msgid "Home"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
7914 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
7915 |
#: app/skins/single/modern.php:292
|
7916 |
msgid "Sold out!"
|
7917 |
msgstr ""
|
7918 |
|
7919 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
7920 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
7921 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
7922 |
#: app/skins/single/modern.php:55
|
7923 |
msgid "Phone"
|
7924 |
msgstr ""
|
7925 |
|
7926 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
7927 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
7928 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
7929 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
7932 |
msgid "Website"
|
7933 |
msgstr ""
|
7934 |
|
7935 |
+
#: app/skins/single.php:1261
|
7936 |
msgid "Speakers:"
|
7937 |
msgstr ""
|
7938 |
|
Binary file
|
@@ -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: 2020-06-
|
8 |
-
"PO-Revision-Date: 2020-06-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
|
18 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
19 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
20 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
21 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
22 |
msgid "Modern Events Calendar"
|
23 |
msgstr "Modern Events Calendar"
|
@@ -343,7 +343,7 @@ msgid "Edit Event"
|
|
343 |
msgstr "Editar Evento"
|
344 |
|
345 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
346 |
-
#: app/features/popup/event.php:
|
347 |
msgid "View Event"
|
348 |
msgstr "Ver evento"
|
349 |
|
@@ -365,8 +365,8 @@ msgstr "No hay eventos en la papelera"
|
|
365 |
#: app/features/mec/meta_boxes/search_form.php:654
|
366 |
#: app/features/mec/meta_boxes/search_form.php:760
|
367 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
368 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
369 |
-
#: app/libraries/skins.php:
|
370 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
371 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
372 |
#: app/skins/single/modern.php:137
|
@@ -376,7 +376,7 @@ msgstr "Categoría"
|
|
376 |
#: app/features/events.php:186 app/features/events.php:3193
|
377 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
378 |
#: app/features/mec/meta_boxes/filter.php:69
|
379 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
380 |
msgid "Categories"
|
381 |
msgstr "Categorías"
|
382 |
|
@@ -465,7 +465,7 @@ msgid "Event Repeating"
|
|
465 |
msgstr "Repetir el evento"
|
466 |
|
467 |
#: app/features/events.php:336 app/features/events.php:1215
|
468 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
469 |
msgid "Hourly Schedule"
|
470 |
msgstr "Programación horaria"
|
471 |
|
@@ -499,18 +499,18 @@ msgstr "Enlace"
|
|
499 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
500 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
501 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
502 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
503 |
-
#: app/features/popup/event.php:
|
504 |
-
#: app/libraries/main.php:
|
505 |
-
#: app/skins/single.php:
|
506 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
507 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
508 |
msgid "Organizer"
|
509 |
msgstr "Organizador"
|
510 |
|
511 |
#: app/features/events.php:340 app/features/events.php:1092
|
512 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
513 |
-
#: app/skins/single.php:
|
514 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
515 |
#: app/skins/single/modern.php:234
|
516 |
msgid "Cost"
|
@@ -534,8 +534,8 @@ msgstr "Datos del invitado"
|
|
534 |
#: app/features/events.php:3769 app/features/fes.php:223
|
535 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
536 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
537 |
-
#: app/features/popup/event.php:
|
538 |
-
#: app/libraries/notifications.php:
|
539 |
msgid "Name"
|
540 |
msgstr "Nombre"
|
541 |
|
@@ -547,9 +547,9 @@ msgstr "Nombre"
|
|
547 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
548 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
549 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
550 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
551 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
552 |
-
#: app/skins/single.php:
|
553 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
554 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
555 |
#: app/skins/single/modern.php:62
|
@@ -565,7 +565,7 @@ msgstr "Día y hora"
|
|
565 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
566 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
567 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
568 |
-
#: app/features/mec.php:
|
569 |
#: app/features/mec/meta_boxes/display_options.php:278
|
570 |
#: app/features/mec/meta_boxes/display_options.php:517
|
571 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -589,12 +589,12 @@ msgstr "Día de inicio"
|
|
589 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
590 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
591 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
592 |
-
#: app/features/mec.php:
|
593 |
msgid "End Date"
|
594 |
msgstr "Día final"
|
595 |
|
596 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
597 |
-
#: app/features/popup/event.php:
|
598 |
#, fuzzy
|
599 |
#| msgid "All Day Event"
|
600 |
msgid "All-day Event"
|
@@ -636,7 +636,7 @@ msgstr ""
|
|
636 |
#: app/features/events.php:2151 app/features/events.php:2166
|
637 |
#: app/features/events.php:2196 app/features/events.php:2209
|
638 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
639 |
-
#: app/features/locations.php:
|
640 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
641 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
642 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -700,8 +700,8 @@ msgstr ""
|
|
700 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
701 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
702 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
703 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
704 |
-
#: app/features/popup/event.php:
|
705 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
706 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
707 |
#: app/skins/single/modern.php:160
|
@@ -725,7 +725,7 @@ msgid "Repeats"
|
|
725 |
msgstr "Repeticiones"
|
726 |
|
727 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
728 |
-
#: app/features/mec.php:
|
729 |
#: app/skins/full_calendar/tpl.php:121
|
730 |
msgid "Daily"
|
731 |
msgstr "Diariamente"
|
@@ -749,13 +749,13 @@ msgid "Weekly"
|
|
749 |
msgstr "Semanal"
|
750 |
|
751 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
752 |
-
#: app/features/mec.php:
|
753 |
#: app/skins/full_calendar/tpl.php:119
|
754 |
msgid "Monthly"
|
755 |
msgstr "Mensual"
|
756 |
|
757 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
758 |
-
#: app/features/mec.php:
|
759 |
#: app/skins/full_calendar/tpl.php:118
|
760 |
msgid "Yearly"
|
761 |
msgstr "Anual"
|
@@ -895,7 +895,7 @@ msgstr "Próxima aparición de otros eventos"
|
|
895 |
#: app/features/events.php:1088 app/features/events.php:3431
|
896 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
897 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
898 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
899 |
#: app/widgets/single.php:103
|
900 |
msgid "Event Cost"
|
901 |
msgstr "Coste del evento"
|
@@ -913,8 +913,8 @@ msgstr "Excluir ciertos días"
|
|
913 |
#: app/features/events.php:1124 app/features/events.php:2330
|
914 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
915 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
916 |
-
#: app/modules/booking/steps/tickets.php:
|
917 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
918 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
919 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
920 |
msgid "Date"
|
@@ -999,7 +999,7 @@ msgstr "Descripción"
|
|
999 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
1000 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
1001 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
1002 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
1003 |
#: app/modules/speakers/details.php:18
|
1004 |
msgid "Speakers"
|
1005 |
msgstr ""
|
@@ -1016,7 +1016,7 @@ msgid "Event Links"
|
|
1016 |
msgstr "Enlaces de eventos"
|
1017 |
|
1018 |
#: app/features/events.php:1408 app/features/events.php:1414
|
1019 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
1020 |
msgid "Event Link"
|
1021 |
msgstr "Enlace del evento"
|
1022 |
|
@@ -1043,8 +1043,8 @@ msgid "URL Shortener"
|
|
1043 |
msgstr ""
|
1044 |
|
1045 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1046 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
1047 |
-
#: app/skins/single.php:
|
1048 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1049 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1050 |
#: app/widgets/single.php:107
|
@@ -1082,8 +1082,8 @@ msgid "Total User Booking Limits"
|
|
1082 |
msgstr "Límite total de reservas"
|
1083 |
|
1084 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1085 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
1086 |
-
#: app/modules/booking/steps/tickets.php:
|
1087 |
msgid "Tickets"
|
1088 |
msgstr "Tickets"
|
1089 |
|
@@ -1111,7 +1111,7 @@ msgstr "Límite total de reservas"
|
|
1111 |
|
1112 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1113 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1114 |
-
#: app/modules/booking/steps/tickets.php:
|
1115 |
#: app/skins/available_spot/tpl.php:142
|
1116 |
msgid "Unlimited"
|
1117 |
msgstr "Ilimitado"
|
@@ -1279,7 +1279,7 @@ msgstr ""
|
|
1279 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1280 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1281 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1282 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1283 |
msgid "Label"
|
1284 |
msgstr "Etiqueta"
|
1285 |
|
@@ -1499,8 +1499,8 @@ msgstr "Límite de asistentes"
|
|
1499 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1500 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1501 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1502 |
-
#: app/features/locations.php:
|
1503 |
-
#: app/features/locations.php:
|
1504 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1505 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1506 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1514,10 +1514,10 @@ msgstr "Límite de asistentes"
|
|
1514 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1515 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1516 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1517 |
-
#: app/features/popup/event.php:
|
1518 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1519 |
-
#: app/libraries/main.php:
|
1520 |
-
#: app/skins/single.php:
|
1521 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1522 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1523 |
#: app/skins/single/modern.php:113
|
@@ -1559,7 +1559,7 @@ msgstr "Duplicar"
|
|
1559 |
|
1560 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1561 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1562 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1563 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1564 |
msgid "ID"
|
1565 |
msgstr "ID"
|
@@ -1581,7 +1581,7 @@ msgstr "%s Correo electrónico"
|
|
1581 |
|
1582 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1583 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1584 |
-
#: app/libraries/main.php:
|
1585 |
msgid "Ticket"
|
1586 |
msgstr "Ticket"
|
1587 |
|
@@ -1800,7 +1800,7 @@ msgid "eg. yourname@gmail.com"
|
|
1800 |
msgstr "Ejemplo. sunombre@gmail.com"
|
1801 |
|
1802 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1803 |
-
#: app/features/popup/event.php:
|
1804 |
msgid "eg. John Smith"
|
1805 |
msgstr "ej. John Smith"
|
1806 |
|
@@ -1827,8 +1827,8 @@ msgstr "Eliminar imagen"
|
|
1827 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1828 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1829 |
#: app/features/mec/meta_boxes/filter.php:72
|
1830 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1831 |
-
#: app/skins/single.php:
|
1832 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1833 |
#: app/skins/single/modern.php:249
|
1834 |
msgid "Labels"
|
@@ -2620,7 +2620,7 @@ msgid "Featured"
|
|
2620 |
msgstr ""
|
2621 |
|
2622 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2623 |
-
#: app/libraries/main.php:
|
2624 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2625 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2626 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2638,30 +2638,30 @@ msgstr ""
|
|
2638 |
msgid "You can show featured and canceled events by a different style!"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2642 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2643 |
-
#: app/modules/booking/steps/tickets.php:
|
2644 |
msgid "Count"
|
2645 |
msgstr "Contador"
|
2646 |
|
2647 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2648 |
#: app/features/organizers.php:207
|
2649 |
msgid "Slug"
|
2650 |
msgstr "Slug"
|
2651 |
|
2652 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2653 |
#, php-format
|
2654 |
msgid "Event %s"
|
2655 |
msgstr "Evento %s"
|
2656 |
|
2657 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2658 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2659 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2660 |
msgid "Locations"
|
2661 |
msgstr "Lugar"
|
2662 |
|
2663 |
-
#: app/features/locations.php:
|
2664 |
-
#: app/features/locations.php:
|
2665 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2666 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2667 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2676,97 +2676,97 @@ msgstr "Lugar"
|
|
2676 |
msgid "Address"
|
2677 |
msgstr "Dirección"
|
2678 |
|
2679 |
-
#: app/features/locations.php:
|
2680 |
msgid "Enter the location address"
|
2681 |
msgstr "Introduce la dirección del lugar"
|
2682 |
|
2683 |
-
#: app/features/locations.php:
|
2684 |
-
#: app/features/locations.php:
|
2685 |
msgid "Latitude"
|
2686 |
msgstr "Latitud"
|
2687 |
|
2688 |
-
#: app/features/locations.php:
|
2689 |
msgid "Geo latitude (Optional)"
|
2690 |
msgstr "Geo latitud (Opcional)"
|
2691 |
|
2692 |
-
#: app/features/locations.php:
|
2693 |
-
#: app/features/locations.php:
|
2694 |
msgid "Longitude"
|
2695 |
msgstr "Longitud"
|
2696 |
|
2697 |
-
#: app/features/locations.php:
|
2698 |
msgid "Geo longitude (Optional)"
|
2699 |
msgstr "Geolongitud (opcional)"
|
2700 |
|
2701 |
-
#: app/features/locations.php:
|
2702 |
-
#: app/features/locations.php:
|
2703 |
#, fuzzy
|
2704 |
#| msgid "Locations"
|
2705 |
msgid "Location Website"
|
2706 |
msgstr "Lugar"
|
2707 |
|
2708 |
-
#: app/features/locations.php:
|
2709 |
#, fuzzy
|
2710 |
#| msgid "Geo latitude (Optional)"
|
2711 |
msgid "Location Website (Optional)"
|
2712 |
msgstr "Geo latitud (Opcional)"
|
2713 |
|
2714 |
-
#: app/features/locations.php:
|
2715 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2716 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2717 |
msgid "Thumbnail"
|
2718 |
msgstr "Miniatura"
|
2719 |
|
2720 |
-
#: app/features/locations.php:
|
2721 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2722 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2723 |
msgid "Upload/Add image"
|
2724 |
msgstr "Subir/Añadir imagen"
|
2725 |
|
2726 |
-
#: app/features/locations.php:
|
2727 |
-
#: app/features/locations.php:
|
2728 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2729 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2730 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2731 |
msgid "Remove image"
|
2732 |
msgstr "Eliminar imagen"
|
2733 |
|
2734 |
-
#: app/features/locations.php:
|
2735 |
msgid "Hide location"
|
2736 |
msgstr "Ocultar lugar"
|
2737 |
|
2738 |
-
#: app/features/locations.php:
|
2739 |
msgid "Insert a new location"
|
2740 |
msgstr "Insertar nuevo lugar"
|
2741 |
|
2742 |
-
#: app/features/locations.php:
|
2743 |
msgid "Choose one of saved locations or insert new one below."
|
2744 |
msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
|
2745 |
|
2746 |
-
#: app/features/locations.php:
|
2747 |
msgid "Location Name"
|
2748 |
msgstr "Nombre del lugar"
|
2749 |
|
2750 |
-
#: app/features/locations.php:
|
2751 |
msgid "eg. City Hall"
|
2752 |
msgstr "ej. Almería"
|
2753 |
|
2754 |
-
#: app/features/locations.php:
|
2755 |
-
#: app/features/popup/event.php:
|
2756 |
msgid "Event Location"
|
2757 |
msgstr "Lugar del evento"
|
2758 |
|
2759 |
-
#: app/features/locations.php:
|
2760 |
msgid "eg. City hall, Manhattan, New York"
|
2761 |
msgstr "ej. Almería, España"
|
2762 |
|
2763 |
-
#: app/features/locations.php:
|
2764 |
#, fuzzy
|
2765 |
#| msgid "Longitude"
|
2766 |
msgid "Latitude/Longitude"
|
2767 |
msgstr "Longitud"
|
2768 |
|
2769 |
-
#: app/features/locations.php:
|
2770 |
msgid ""
|
2771 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2772 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2775,26 +2775,26 @@ msgid ""
|
|
2775 |
"the location on the map to find lat long coordinates."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: app/features/locations.php:
|
2779 |
msgid "Get Latitude and Longitude"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: app/features/locations.php:
|
2783 |
-
#: app/features/popup/event.php:
|
2784 |
msgid "Choose image"
|
2785 |
msgstr "Elegir imagen"
|
2786 |
|
2787 |
-
#: app/features/locations.php:
|
2788 |
msgid "Don't show map in single event page"
|
2789 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
2790 |
|
2791 |
-
#: app/features/locations.php:
|
2792 |
#, fuzzy
|
2793 |
#| msgid "Locations"
|
2794 |
msgid "Other Locations"
|
2795 |
msgstr "Lugar"
|
2796 |
|
2797 |
-
#: app/features/locations.php:
|
2798 |
#, fuzzy
|
2799 |
#| msgid ""
|
2800 |
#| "You can select extra organizers in addition to main organizer if you like."
|
@@ -2868,7 +2868,7 @@ msgstr "Soporte"
|
|
2868 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2869 |
#: app/features/mec/meta_boxes/filter.php:71
|
2870 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2871 |
-
#: app/libraries/main.php:
|
2872 |
msgid "Organizers"
|
2873 |
msgstr "Organizadores"
|
2874 |
|
@@ -2909,7 +2909,7 @@ msgstr "Exportar"
|
|
2909 |
msgid "MEC - Go Pro"
|
2910 |
msgstr "Soporte"
|
2911 |
|
2912 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2913 |
#: app/features/mec/go-pro.php:9
|
2914 |
msgid "Go Pro"
|
2915 |
msgstr ""
|
@@ -2968,73 +2968,73 @@ msgstr "Ventana aparte"
|
|
2968 |
msgid "Modal Popup"
|
2969 |
msgstr "Modal 1"
|
2970 |
|
2971 |
-
#: app/features/mec.php:
|
2972 |
msgid "Total Bookings"
|
2973 |
msgstr "Total reservas"
|
2974 |
|
2975 |
-
#: app/features/mec.php:
|
2976 |
msgid "Modern Events Calendar (Lite)"
|
2977 |
msgstr "Modern Events Calendar (Lite)"
|
2978 |
|
2979 |
-
#: app/features/mec.php:
|
2980 |
#: app/features/mec/settings.php:428
|
2981 |
msgid "Upcoming Events"
|
2982 |
msgstr "Próximos Eventos"
|
2983 |
|
2984 |
-
#: app/features/mec.php:
|
2985 |
#, fuzzy
|
2986 |
#| msgid "Update %s"
|
2987 |
msgid "News & Updates"
|
2988 |
msgstr "Actualizar %s"
|
2989 |
|
2990 |
-
#: app/features/mec.php:
|
2991 |
msgid "Blog"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: app/features/mec.php:
|
2995 |
msgid "Help"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: app/features/mec.php:
|
2999 |
msgid "This Month"
|
3000 |
msgstr "Este mes"
|
3001 |
|
3002 |
-
#: app/features/mec.php:
|
3003 |
msgid "Last Month"
|
3004 |
msgstr "Último mes"
|
3005 |
|
3006 |
-
#: app/features/mec.php:
|
3007 |
msgid "This Year"
|
3008 |
msgstr "Este año"
|
3009 |
|
3010 |
-
#: app/features/mec.php:
|
3011 |
msgid "Last Year"
|
3012 |
msgstr "Año pasado"
|
3013 |
|
3014 |
-
#: app/features/mec.php:
|
3015 |
msgid "Bar"
|
3016 |
msgstr "Barra"
|
3017 |
|
3018 |
-
#: app/features/mec.php:
|
3019 |
msgid "Line"
|
3020 |
msgstr "Línea"
|
3021 |
|
3022 |
-
#: app/features/mec.php:
|
3023 |
msgid "Filter"
|
3024 |
msgstr "Filtrar"
|
3025 |
|
3026 |
-
#: app/features/mec.php:
|
3027 |
#, php-format
|
3028 |
msgid "Total Sells (%s)"
|
3029 |
msgstr "Ventas Totales (%s)"
|
3030 |
|
3031 |
-
#: app/features/mec.php:
|
3032 |
#, fuzzy
|
3033 |
#| msgid "Modern Events Calendar"
|
3034 |
msgid "Print Calendar"
|
3035 |
msgstr "Modern Events Calendar"
|
3036 |
|
3037 |
-
#: app/features/mec.php:
|
3038 |
#, fuzzy
|
3039 |
#| msgid "Display Event Price"
|
3040 |
msgid "Display Events"
|
@@ -3435,7 +3435,7 @@ msgstr "¡Ajustes guardados!"
|
|
3435 |
#: app/features/mec/notifications.php:923
|
3436 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3437 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3438 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3439 |
msgid "Verified"
|
3440 |
msgstr "Verificado"
|
3441 |
|
@@ -4628,8 +4628,8 @@ msgstr "Mostrar formulario búsqueda"
|
|
4628 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4629 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4630 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4631 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4632 |
-
#: app/libraries/skins.php:
|
4633 |
msgid "Speaker"
|
4634 |
msgstr ""
|
4635 |
|
@@ -4645,7 +4645,7 @@ msgstr ""
|
|
4645 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4646 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4647 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4648 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4649 |
#, fuzzy
|
4650 |
#| msgid "Tags"
|
4651 |
msgid "Tag"
|
@@ -5448,7 +5448,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
5448 |
msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
|
5449 |
|
5450 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5451 |
-
#: app/libraries/notifications.php:
|
5452 |
msgid "Booking Reminder"
|
5453 |
msgstr "Recordatorio de reserva"
|
5454 |
|
@@ -5480,7 +5480,7 @@ msgstr "Días"
|
|
5480 |
msgid "Please, insert comma to separate reminder days."
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5484 |
#: app/libraries/main.php:584
|
5485 |
msgid "New Event"
|
5486 |
msgstr "Nuevo evento"
|
@@ -5709,7 +5709,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5709 |
msgstr ""
|
5710 |
|
5711 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5712 |
-
#: app/libraries/main.php:
|
5713 |
msgid "Weekdays"
|
5714 |
msgstr "Días de la semana"
|
5715 |
|
@@ -6503,7 +6503,7 @@ msgstr ""
|
|
6503 |
"eventos y la pagina de evento individual."
|
6504 |
|
6505 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6506 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
6507 |
#, fuzzy
|
6508 |
#| msgid "featured event"
|
6509 |
msgid "Related Events"
|
@@ -7166,7 +7166,7 @@ msgid "Insert organizer email address."
|
|
7166 |
msgstr "Insertar correo electrónico del organizador."
|
7167 |
|
7168 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7169 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
7170 |
msgid "Link to organizer page"
|
7171 |
msgstr "Enlace a la página del organizador"
|
7172 |
|
@@ -7185,40 +7185,40 @@ msgstr "Información de contacto"
|
|
7185 |
msgid "Event Main %s"
|
7186 |
msgstr "Principal %s del evento"
|
7187 |
|
7188 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
7189 |
msgid "Hide organizer"
|
7190 |
msgstr "Ocultar organizador"
|
7191 |
|
7192 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
7193 |
msgid "Insert a new organizer"
|
7194 |
msgstr "Insertar nuevo organizador"
|
7195 |
|
7196 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
7197 |
msgid "Choose one of saved organizers or insert new one below."
|
7198 |
msgstr "Elige uno de los organizadores o inserta uno nuevo a continuación."
|
7199 |
|
7200 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
7201 |
msgid "Phone number."
|
7202 |
msgstr "Número de teléfono."
|
7203 |
|
7204 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
7205 |
msgid "eg. +1 (234) 5678"
|
7206 |
msgstr "ej. +34 900 123 456"
|
7207 |
|
7208 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
7209 |
msgid "Email address."
|
7210 |
msgstr "Correo electrónico."
|
7211 |
|
7212 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
7213 |
msgid "eg. john@smith.com"
|
7214 |
msgstr "ej. user@yoursite.com"
|
7215 |
|
7216 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
7217 |
msgid "eg. https://webnus.net"
|
7218 |
msgstr "ej. https://webnus.net"
|
7219 |
|
7220 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
7221 |
-
#: app/skins/single.php:
|
7222 |
msgid "Other Organizers"
|
7223 |
msgstr "En común"
|
7224 |
|
@@ -7245,67 +7245,57 @@ msgstr "Nota de evento"
|
|
7245 |
msgid "Event name is required"
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#: app/features/popup/event.php:
|
7249 |
-
#: app/libraries/main.php:6643
|
7250 |
-
msgid "AM"
|
7251 |
-
msgstr "AM"
|
7252 |
-
|
7253 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
7254 |
-
#: app/libraries/main.php:6644
|
7255 |
-
msgid "PM"
|
7256 |
-
msgstr "PM"
|
7257 |
-
|
7258 |
-
#: app/features/popup/event.php:256
|
7259 |
#, fuzzy
|
7260 |
#| msgid "Choose one of saved locations or insert new one below."
|
7261 |
msgid "Choose one of saved locations or insert new one."
|
7262 |
msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
|
7263 |
|
7264 |
-
#: app/features/popup/event.php:
|
7265 |
#, fuzzy
|
7266 |
#| msgid "Location"
|
7267 |
msgid "Add Location"
|
7268 |
msgstr "Localización"
|
7269 |
|
7270 |
-
#: app/features/popup/event.php:
|
7271 |
#, fuzzy
|
7272 |
#| msgid "Organizer"
|
7273 |
msgid "Add Organizer"
|
7274 |
msgstr "Organizador"
|
7275 |
|
7276 |
-
#: app/features/popup/event.php:
|
7277 |
#, fuzzy
|
7278 |
#| msgid "Categories"
|
7279 |
msgid "All Categories"
|
7280 |
msgstr "Categorías"
|
7281 |
|
7282 |
-
#: app/features/popup/event.php:
|
7283 |
msgid "Most Used"
|
7284 |
msgstr ""
|
7285 |
|
7286 |
-
#: app/features/popup/event.php:
|
7287 |
#, fuzzy
|
7288 |
#| msgid "Add New %s"
|
7289 |
msgid "Add New Category"
|
7290 |
msgstr "Añadir nuevo %s"
|
7291 |
|
7292 |
-
#: app/features/popup/event.php:
|
7293 |
#, fuzzy
|
7294 |
#| msgid "Featured Image"
|
7295 |
msgid "Set Featured Image"
|
7296 |
msgstr "Imagen destacada"
|
7297 |
|
7298 |
-
#: app/features/popup/event.php:
|
7299 |
msgid "Your Event Has Been Created."
|
7300 |
msgstr ""
|
7301 |
|
7302 |
-
#: app/features/popup/event.php:
|
7303 |
msgid "Prev"
|
7304 |
msgstr ""
|
7305 |
|
7306 |
-
#: app/features/popup/event.php:
|
7307 |
#: app/modules/booking/steps/form.php:188
|
7308 |
-
#: app/modules/booking/steps/tickets.php:
|
7309 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7310 |
msgid "Next"
|
7311 |
msgstr "Siguiente"
|
@@ -7550,11 +7540,11 @@ msgstr "Buscar %s"
|
|
7550 |
msgid "No search result."
|
7551 |
msgstr ""
|
7552 |
|
7553 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7554 |
-
#: app/libraries/notifications.php:
|
7555 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7556 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7557 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
7558 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7559 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7560 |
#, fuzzy
|
@@ -7632,12 +7622,12 @@ msgstr ""
|
|
7632 |
msgid "%s Price"
|
7633 |
msgstr "%s Precio"
|
7634 |
|
7635 |
-
#: app/libraries/book.php:
|
7636 |
msgid "Discount"
|
7637 |
msgstr "Descuento"
|
7638 |
|
7639 |
-
#: app/libraries/book.php:
|
7640 |
-
#: app/modules/booking/default.php:
|
7641 |
msgid "Download Invoice"
|
7642 |
msgstr "Descargar factura"
|
7643 |
|
@@ -7660,51 +7650,51 @@ msgctxt "plugin link"
|
|
7660 |
msgid "Upgrade"
|
7661 |
msgstr "Actualizar"
|
7662 |
|
7663 |
-
#: app/libraries/factory.php:
|
7664 |
msgid "day"
|
7665 |
msgstr "día "
|
7666 |
|
7667 |
-
#: app/libraries/factory.php:
|
7668 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7669 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7670 |
msgid "days"
|
7671 |
msgstr "días"
|
7672 |
|
7673 |
-
#: app/libraries/factory.php:
|
7674 |
msgid "hour"
|
7675 |
msgstr "hora"
|
7676 |
|
7677 |
-
#: app/libraries/factory.php:
|
7678 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7679 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7680 |
msgid "hours"
|
7681 |
msgstr "horas"
|
7682 |
|
7683 |
-
#: app/libraries/factory.php:
|
7684 |
msgid "minute"
|
7685 |
msgstr "minuto"
|
7686 |
|
7687 |
-
#: app/libraries/factory.php:
|
7688 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7689 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7690 |
msgid "minutes"
|
7691 |
msgstr "minutos"
|
7692 |
|
7693 |
-
#: app/libraries/factory.php:
|
7694 |
msgid "second"
|
7695 |
msgstr "segundo"
|
7696 |
|
7697 |
-
#: app/libraries/factory.php:
|
7698 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7699 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7700 |
msgid "seconds"
|
7701 |
msgstr "segundos"
|
7702 |
|
7703 |
-
#: app/libraries/factory.php:
|
7704 |
msgid "MEC Single Sidebar"
|
7705 |
msgstr "barra lateral MEC"
|
7706 |
|
7707 |
-
#: app/libraries/factory.php:
|
7708 |
msgid "Custom sidebar for single and modal page of MEC."
|
7709 |
msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
|
7710 |
|
@@ -7768,31 +7758,31 @@ msgstr "Vista del rotativo"
|
|
7768 |
msgid "Timeline View"
|
7769 |
msgstr "Vista de Horario"
|
7770 |
|
7771 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7772 |
msgid "SU"
|
7773 |
msgstr "DO"
|
7774 |
|
7775 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7776 |
msgid "MO"
|
7777 |
msgstr "LU"
|
7778 |
|
7779 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7780 |
msgid "TU"
|
7781 |
msgstr "MA"
|
7782 |
|
7783 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7784 |
msgid "WE"
|
7785 |
msgstr "MI"
|
7786 |
|
7787 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7788 |
msgid "TH"
|
7789 |
msgstr "JU"
|
7790 |
|
7791 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7792 |
msgid "FR"
|
7793 |
msgstr "VI"
|
7794 |
|
7795 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7796 |
msgid "SA"
|
7797 |
msgstr "SA"
|
7798 |
|
@@ -8131,111 +8121,111 @@ msgstr "Introduce una etiqueta para esta opción"
|
|
8131 |
msgid "Free"
|
8132 |
msgstr "Gratis"
|
8133 |
|
8134 |
-
#: app/libraries/main.php:
|
8135 |
#, fuzzy
|
8136 |
#| msgid "M.E. Calendar"
|
8137 |
msgid "M.E. Calender"
|
8138 |
msgstr "M.E. Calendario"
|
8139 |
|
8140 |
-
#: app/libraries/main.php:
|
8141 |
#, php-format
|
8142 |
msgid "Copy of %s"
|
8143 |
msgstr "Copia de %s"
|
8144 |
|
8145 |
-
#: app/libraries/main.php:
|
8146 |
msgid "Booked an event."
|
8147 |
msgstr "Has reservado para un evento."
|
8148 |
|
8149 |
-
#: app/libraries/main.php:
|
8150 |
#, php-format
|
8151 |
msgid "%s booked %s event."
|
8152 |
msgstr "%s reservado %s evento."
|
8153 |
|
8154 |
-
#: app/libraries/main.php:
|
8155 |
msgid "Taxonomies"
|
8156 |
msgstr "Taxonomías"
|
8157 |
|
8158 |
-
#: app/libraries/main.php:
|
8159 |
msgid "Category Plural Label"
|
8160 |
msgstr "Categoría Etiqueta plural"
|
8161 |
|
8162 |
-
#: app/libraries/main.php:
|
8163 |
msgid "Category Singular Label"
|
8164 |
msgstr "Categoría Etiqueta Singular"
|
8165 |
|
8166 |
-
#: app/libraries/main.php:
|
8167 |
msgid "Label Plural Label"
|
8168 |
msgstr "Etiqueta plural"
|
8169 |
|
8170 |
-
#: app/libraries/main.php:
|
8171 |
msgid "Label Singular Label"
|
8172 |
msgstr "Etiqueta singular de la etiqueta"
|
8173 |
|
8174 |
-
#: app/libraries/main.php:
|
8175 |
msgid "label"
|
8176 |
msgstr "etiqueta"
|
8177 |
|
8178 |
-
#: app/libraries/main.php:
|
8179 |
msgid "Location Plural Label"
|
8180 |
msgstr "Ubicación Etiqueta plural"
|
8181 |
|
8182 |
-
#: app/libraries/main.php:
|
8183 |
msgid "Location Singular Label"
|
8184 |
msgstr "Etiqueta de ubicación en singular"
|
8185 |
|
8186 |
-
#: app/libraries/main.php:
|
8187 |
msgid "Organizer Plural Label"
|
8188 |
msgstr "Etiqueta del organizador en plural"
|
8189 |
|
8190 |
-
#: app/libraries/main.php:
|
8191 |
msgid "Organizer Singular Label"
|
8192 |
msgstr "Etiqueta Singular del Organizador"
|
8193 |
|
8194 |
-
#: app/libraries/main.php:
|
8195 |
msgid "Speaker Plural Label"
|
8196 |
msgstr ""
|
8197 |
|
8198 |
-
#: app/libraries/main.php:
|
8199 |
msgid "Speaker Singular Label"
|
8200 |
msgstr ""
|
8201 |
|
8202 |
-
#: app/libraries/main.php:
|
8203 |
msgid "Sunday abbreviation"
|
8204 |
msgstr "Abreviatura de Domingo"
|
8205 |
|
8206 |
-
#: app/libraries/main.php:
|
8207 |
msgid "Monday abbreviation"
|
8208 |
msgstr "Abreviatura de Lunes"
|
8209 |
|
8210 |
-
#: app/libraries/main.php:
|
8211 |
msgid "Tuesday abbreviation"
|
8212 |
msgstr "Abreviatura de Martes"
|
8213 |
|
8214 |
-
#: app/libraries/main.php:
|
8215 |
msgid "Wednesday abbreviation"
|
8216 |
msgstr "Abreviatura de Miércoles "
|
8217 |
|
8218 |
-
#: app/libraries/main.php:
|
8219 |
msgid "Thursday abbreviation"
|
8220 |
msgstr "Abreviatura de Jueves"
|
8221 |
|
8222 |
-
#: app/libraries/main.php:
|
8223 |
msgid "Friday abbreviation"
|
8224 |
msgstr "Abreviatura de Viernes"
|
8225 |
|
8226 |
-
#: app/libraries/main.php:
|
8227 |
msgid "Saturday abbreviation"
|
8228 |
msgstr "Abreviatura de Sábado "
|
8229 |
|
8230 |
-
#: app/libraries/main.php:
|
8231 |
msgid "Others"
|
8232 |
msgstr "Otros"
|
8233 |
|
8234 |
-
#: app/libraries/main.php:
|
8235 |
msgid "Booking Success Message"
|
8236 |
msgstr "Mensaje de reserva correcta"
|
8237 |
|
8238 |
-
#: app/libraries/main.php:
|
8239 |
#, fuzzy
|
8240 |
#| msgid ""
|
8241 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -8247,17 +8237,17 @@ msgstr ""
|
|
8247 |
"Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
|
8248 |
"una verificación, por favor consulta tu correo."
|
8249 |
|
8250 |
-
#: app/libraries/main.php:
|
8251 |
msgid "Register Button"
|
8252 |
msgstr "Botón de registro"
|
8253 |
|
8254 |
-
#: app/libraries/main.php:
|
8255 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8256 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8257 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8258 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8259 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
8260 |
-
#: app/skins/single.php:
|
8261 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8262 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8263 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -8269,167 +8259,175 @@ msgstr "Botón de registro"
|
|
8269 |
msgid "REGISTER"
|
8270 |
msgstr "REGISTRO"
|
8271 |
|
8272 |
-
#: app/libraries/main.php:
|
8273 |
msgid "View Detail Button"
|
8274 |
msgstr "Ver detalle del botón"
|
8275 |
|
8276 |
-
#: app/libraries/main.php:
|
8277 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8278 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8279 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8280 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8281 |
-
#: app/skins/single.php:
|
8282 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8283 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8284 |
msgid "View Detail"
|
8285 |
msgstr "Ver detalle"
|
8286 |
|
8287 |
-
#: app/libraries/main.php:
|
8288 |
msgid "Event Detail Button"
|
8289 |
msgstr "Botón de detalle del evento"
|
8290 |
|
8291 |
-
#: app/libraries/main.php:
|
8292 |
msgid "Event Detail"
|
8293 |
msgstr "Detalle del evento"
|
8294 |
|
8295 |
-
#: app/libraries/main.php:
|
8296 |
msgid "More Info Link"
|
8297 |
msgstr "Enlace a Más Información"
|
8298 |
|
8299 |
-
#: app/libraries/main.php:
|
8300 |
msgid "Ticket (Singular)"
|
8301 |
msgstr "Entrada (Singular)"
|
8302 |
|
8303 |
-
#: app/libraries/main.php:
|
8304 |
msgid "Tickets (Plural)"
|
8305 |
msgstr "Entradas (Plural)"
|
8306 |
|
8307 |
-
#: app/libraries/main.php:
|
8308 |
msgid "EventON"
|
8309 |
msgstr "EventON"
|
8310 |
|
8311 |
-
#: app/libraries/main.php:
|
8312 |
msgid "The Events Calendar"
|
8313 |
msgstr "The Events Calendar"
|
8314 |
|
8315 |
-
#: app/libraries/main.php:
|
8316 |
msgid "Events Schedule WP Plugin"
|
8317 |
msgstr "Events Schedule WP Plugin"
|
8318 |
|
8319 |
-
#: app/libraries/main.php:
|
8320 |
msgid "Calendarize It"
|
8321 |
msgstr "Ponlo al calendario"
|
8322 |
|
8323 |
-
#: app/libraries/main.php:
|
8324 |
#, fuzzy
|
8325 |
#| msgid "Event %s"
|
8326 |
msgid "Event Espresso"
|
8327 |
msgstr "Evento %s"
|
8328 |
|
8329 |
-
#: app/libraries/main.php:
|
8330 |
#, fuzzy
|
8331 |
#| msgid "Event Repeating"
|
8332 |
msgid "Events Manager (Recurring)"
|
8333 |
msgstr "Repetir el evento"
|
8334 |
|
8335 |
-
#: app/libraries/main.php:
|
8336 |
#, fuzzy
|
8337 |
#| msgid "Modern Events Calendar (Lite)"
|
8338 |
msgid "Events Manager (Single)"
|
8339 |
msgstr "Modern Events Calendar (Lite)"
|
8340 |
|
8341 |
-
#: app/libraries/main.php:
|
8342 |
msgid "Confirmed"
|
8343 |
msgstr ""
|
8344 |
|
8345 |
-
#: app/libraries/main.php:
|
8346 |
msgid "Rejected"
|
8347 |
msgstr ""
|
8348 |
|
8349 |
-
#: app/libraries/main.php:
|
8350 |
msgid "Pending"
|
8351 |
msgstr ""
|
8352 |
|
8353 |
-
#: app/libraries/main.php:
|
8354 |
msgid "Waiting"
|
8355 |
msgstr ""
|
8356 |
|
8357 |
-
#: app/libraries/main.php:
|
8358 |
#, fuzzy
|
8359 |
#| msgid "Sunday"
|
8360 |
msgid "Sun"
|
8361 |
msgstr "Domingo"
|
8362 |
|
8363 |
-
#: app/libraries/main.php:
|
8364 |
#, fuzzy
|
8365 |
#| msgid "Monthly"
|
8366 |
msgid "Mon"
|
8367 |
msgstr "Mensual"
|
8368 |
|
8369 |
-
#: app/libraries/main.php:
|
8370 |
#, fuzzy
|
8371 |
#| msgid "Tel"
|
8372 |
msgid "Tue"
|
8373 |
msgstr "Tel"
|
8374 |
|
8375 |
-
#: app/libraries/main.php:
|
8376 |
msgid "Wed"
|
8377 |
msgstr ""
|
8378 |
|
8379 |
-
#: app/libraries/main.php:
|
8380 |
msgid "Thu"
|
8381 |
msgstr ""
|
8382 |
|
8383 |
-
#: app/libraries/main.php:
|
8384 |
#, fuzzy
|
8385 |
#| msgid "Friday"
|
8386 |
msgid "Fri"
|
8387 |
msgstr "Viernes"
|
8388 |
|
8389 |
-
#: app/libraries/main.php:
|
8390 |
#, fuzzy
|
8391 |
#| msgid "Start"
|
8392 |
msgid "Sat"
|
8393 |
msgstr "Inicio"
|
8394 |
|
8395 |
-
#: app/libraries/main.php:
|
8396 |
#: app/libraries/render.php:432
|
8397 |
msgid "Skin controller does not exist."
|
8398 |
msgstr "No existe skin controller."
|
8399 |
|
8400 |
-
#: app/libraries/main.php:
|
8401 |
#, fuzzy
|
8402 |
#| msgid "Sold out!"
|
8403 |
msgid "Sold Out"
|
8404 |
msgstr "¡Agotado!"
|
8405 |
|
8406 |
-
#: app/libraries/main.php:
|
8407 |
#, fuzzy
|
8408 |
#| msgid "Ticket"
|
8409 |
msgid "Last Few Tickets"
|
8410 |
msgstr "Ticket"
|
8411 |
|
8412 |
-
#: app/libraries/main.php:
|
8413 |
#, fuzzy
|
8414 |
#| msgid "hours"
|
8415 |
msgid "Hours"
|
8416 |
msgstr "horas"
|
8417 |
|
8418 |
-
#: app/libraries/main.php:
|
8419 |
#, fuzzy
|
8420 |
#| msgid "minutes"
|
8421 |
msgid "Minutes"
|
8422 |
msgstr "minutos"
|
8423 |
|
8424 |
-
#: app/libraries/main.php:
|
8425 |
msgid "AM / PM"
|
8426 |
msgstr ""
|
8427 |
|
8428 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8429 |
msgid "Ongoing..."
|
8430 |
msgstr ""
|
8431 |
|
8432 |
-
#: app/libraries/main.php:
|
8433 |
#, fuzzy
|
8434 |
#| msgid "Expired Events"
|
8435 |
msgid "Expired!"
|
@@ -8439,80 +8437,88 @@ msgstr "Eventos pasados"
|
|
8439 |
msgid "Please verify your email."
|
8440 |
msgstr "Por favor comprueba tu email"
|
8441 |
|
8442 |
-
#: app/libraries/notifications.php:
|
8443 |
msgid "Your booking is received."
|
8444 |
msgstr "Se ha recibido tu reserva."
|
8445 |
|
8446 |
-
#: app/libraries/notifications.php:
|
8447 |
msgid "Your booking is confirmed."
|
8448 |
msgstr "Tu reserva ha sido confirmada."
|
8449 |
|
8450 |
-
#: app/libraries/notifications.php:
|
8451 |
#, fuzzy
|
8452 |
#| msgid "Your booking cannot be canceled."
|
8453 |
msgid "booking canceled."
|
8454 |
msgstr "La reserva no puede cancelarse."
|
8455 |
|
8456 |
-
#: app/libraries/notifications.php:
|
8457 |
msgid "A new booking is received."
|
8458 |
msgstr "Nueva reserva recibida."
|
8459 |
|
8460 |
-
#: app/libraries/notifications.php:
|
8461 |
msgid "A new event is added."
|
8462 |
msgstr "Se ha añadido un nuevo evento."
|
8463 |
|
8464 |
-
#: app/libraries/notifications.php:
|
8465 |
#, fuzzy
|
8466 |
#| msgid "The event published."
|
8467 |
msgid "Your event is published."
|
8468 |
msgstr "El evento a sido publicado."
|
8469 |
|
8470 |
-
#: app/libraries/notifications.php:
|
8471 |
#, php-format
|
8472 |
msgid "%s to %s"
|
8473 |
msgstr ""
|
8474 |
|
8475 |
-
#: app/libraries/notifications.php:
|
8476 |
-
#: app/libraries/notifications.php:
|
8477 |
msgid "to"
|
8478 |
msgstr "a"
|
8479 |
|
8480 |
-
#: app/libraries/notifications.php:
|
8481 |
msgid "+ Add to Google Calendar"
|
8482 |
msgstr "+ Añadir Google Calendar"
|
8483 |
|
8484 |
-
#: app/libraries/notifications.php:
|
8485 |
msgid "+ iCal export"
|
8486 |
msgstr "Exportación + iCal"
|
8487 |
|
8488 |
-
#: app/libraries/notifications.php:
|
8489 |
msgid "Yes"
|
8490 |
msgstr "Sí"
|
8491 |
|
8492 |
-
#: app/libraries/notifications.php:
|
8493 |
msgid "No"
|
8494 |
msgstr "No"
|
8495 |
|
8496 |
-
#: app/libraries/skins.php:
|
8497 |
#, fuzzy
|
8498 |
#| msgid "Select All"
|
8499 |
msgid "Select"
|
8500 |
msgstr "Seleccionar todo"
|
8501 |
|
8502 |
-
#: app/modules/attendees-list/details.php:
|
8503 |
msgid "Event Attendees"
|
8504 |
msgstr "Asistentes evento"
|
8505 |
|
8506 |
-
#: app/modules/attendees-list/details.php:
|
8507 |
msgid "No attendee found! Be the first one to book!"
|
8508 |
msgstr "¡No aparecen asistentes! !Se el primero en apuntarte!"
|
8509 |
|
8510 |
-
#: app/modules/attendees-list/details.php:
|
8511 |
#, fuzzy
|
8512 |
#| msgid "Tickets"
|
8513 |
msgid "tickets"
|
8514 |
msgstr "Tickets"
|
8515 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8516 |
#: app/modules/booking/steps/checkout.php:37
|
8517 |
msgid "Checkout"
|
8518 |
msgstr "Checkout"
|
@@ -8568,27 +8574,27 @@ msgstr ""
|
|
8568 |
"Rellenar la información de los otros asistentes igual que el primer "
|
8569 |
"formulario."
|
8570 |
|
8571 |
-
#: app/modules/booking/steps/tickets.php:
|
8572 |
msgid "Book Event"
|
8573 |
msgstr "Reservar evento"
|
8574 |
|
8575 |
-
#: app/modules/booking/steps/tickets.php:
|
8576 |
#, fuzzy
|
8577 |
#| msgid "Ticket time"
|
8578 |
msgid "1 Ticket selected."
|
8579 |
msgstr "Hora de la entrada"
|
8580 |
|
8581 |
-
#: app/modules/booking/steps/tickets.php:
|
8582 |
#, php-format
|
8583 |
msgid "Available %s: <span>%s</span>"
|
8584 |
msgstr "%s disponibles: <span>%s</span>"
|
8585 |
|
8586 |
-
#: app/modules/booking/steps/tickets.php:
|
8587 |
#, php-format
|
8588 |
msgid "The %s ticket sales has stopped!"
|
8589 |
msgstr ""
|
8590 |
|
8591 |
-
#: app/modules/booking/steps/tickets.php:
|
8592 |
#, php-format
|
8593 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8594 |
msgstr ""
|
@@ -8611,7 +8617,7 @@ msgstr "Dirección de…"
|
|
8611 |
msgid "Get Directions"
|
8612 |
msgstr "Cómo llegar"
|
8613 |
|
8614 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
8615 |
msgid "Share this event"
|
8616 |
msgstr "Compartir este evento"
|
8617 |
|
@@ -8666,7 +8672,7 @@ msgstr "Siguiente repetición"
|
|
8666 |
msgid "Go to occurrence page"
|
8667 |
msgstr "Ir a la página de repetición"
|
8668 |
|
8669 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
8670 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8671 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8672 |
msgid "Time"
|
@@ -8804,24 +8810,24 @@ msgstr "Eventos %s"
|
|
8804 |
msgid "No Events"
|
8805 |
msgstr "Sin eventos"
|
8806 |
|
8807 |
-
#: app/skins/single.php:
|
8808 |
msgid "Home"
|
8809 |
msgstr ""
|
8810 |
|
8811 |
-
#: app/skins/single.php:
|
8812 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8813 |
#: app/skins/single/modern.php:292
|
8814 |
msgid "Sold out!"
|
8815 |
msgstr "¡Agotado!"
|
8816 |
|
8817 |
-
#: app/skins/single.php:
|
8818 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8819 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8820 |
#: app/skins/single/modern.php:55
|
8821 |
msgid "Phone"
|
8822 |
msgstr "Teléfono"
|
8823 |
|
8824 |
-
#: app/skins/single.php:
|
8825 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8826 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8827 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -8830,7 +8836,7 @@ msgstr "Teléfono"
|
|
8830 |
msgid "Website"
|
8831 |
msgstr "Web"
|
8832 |
|
8833 |
-
#: app/skins/single.php:
|
8834 |
msgid "Speakers:"
|
8835 |
msgstr ""
|
8836 |
|
@@ -9367,9 +9373,6 @@ msgstr "http://webnus.net"
|
|
9367 |
#~ msgid "Can I Override MEC Template ?"
|
9368 |
#~ msgstr "¿Cómo reemplazar los archivos de plantillas MEC?"
|
9369 |
|
9370 |
-
#~ msgid "%s tickets"
|
9371 |
-
#~ msgstr "%s Entradas"
|
9372 |
-
|
9373 |
#, fuzzy
|
9374 |
#~| msgid "Security nonce is not valid."
|
9375 |
#~ msgid "Security nonce is missing."
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
8 |
+
"PO-Revision-Date: 2020-06-16 16:46+0430\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
17 |
|
18 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
19 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
20 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
21 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
22 |
msgid "Modern Events Calendar"
|
23 |
msgstr "Modern Events Calendar"
|
343 |
msgstr "Editar Evento"
|
344 |
|
345 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
346 |
+
#: app/features/popup/event.php:252
|
347 |
msgid "View Event"
|
348 |
msgstr "Ver evento"
|
349 |
|
365 |
#: app/features/mec/meta_boxes/search_form.php:654
|
366 |
#: app/features/mec/meta_boxes/search_form.php:760
|
367 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
368 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
369 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
370 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
371 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
372 |
#: app/skins/single/modern.php:137
|
376 |
#: app/features/events.php:186 app/features/events.php:3193
|
377 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
378 |
#: app/features/mec/meta_boxes/filter.php:69
|
379 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
380 |
msgid "Categories"
|
381 |
msgstr "Categorías"
|
382 |
|
465 |
msgstr "Repetir el evento"
|
466 |
|
467 |
#: app/features/events.php:336 app/features/events.php:1215
|
468 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
469 |
msgid "Hourly Schedule"
|
470 |
msgstr "Programación horaria"
|
471 |
|
499 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
500 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
501 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
502 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
503 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
504 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
505 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
506 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
507 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
508 |
msgid "Organizer"
|
509 |
msgstr "Organizador"
|
510 |
|
511 |
#: app/features/events.php:340 app/features/events.php:1092
|
512 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
513 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
514 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
515 |
#: app/skins/single/modern.php:234
|
516 |
msgid "Cost"
|
534 |
#: app/features/events.php:3769 app/features/fes.php:223
|
535 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
536 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
537 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
538 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
539 |
msgid "Name"
|
540 |
msgstr "Nombre"
|
541 |
|
547 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
548 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
549 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
550 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
551 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
552 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
553 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
554 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
555 |
#: app/skins/single/modern.php:62
|
565 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
566 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
567 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
568 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
569 |
#: app/features/mec/meta_boxes/display_options.php:278
|
570 |
#: app/features/mec/meta_boxes/display_options.php:517
|
571 |
#: app/features/mec/meta_boxes/display_options.php:623
|
589 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
590 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
591 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
592 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
593 |
msgid "End Date"
|
594 |
msgstr "Día final"
|
595 |
|
596 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
597 |
+
#: app/features/popup/event.php:109
|
598 |
#, fuzzy
|
599 |
#| msgid "All Day Event"
|
600 |
msgid "All-day Event"
|
636 |
#: app/features/events.php:2151 app/features/events.php:2166
|
637 |
#: app/features/events.php:2196 app/features/events.php:2209
|
638 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
639 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
640 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
641 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
642 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
700 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
701 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
702 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
703 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
704 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
705 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
706 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
707 |
#: app/skins/single/modern.php:160
|
725 |
msgstr "Repeticiones"
|
726 |
|
727 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
728 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
729 |
#: app/skins/full_calendar/tpl.php:121
|
730 |
msgid "Daily"
|
731 |
msgstr "Diariamente"
|
749 |
msgstr "Semanal"
|
750 |
|
751 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
752 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
753 |
#: app/skins/full_calendar/tpl.php:119
|
754 |
msgid "Monthly"
|
755 |
msgstr "Mensual"
|
756 |
|
757 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
758 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
759 |
#: app/skins/full_calendar/tpl.php:118
|
760 |
msgid "Yearly"
|
761 |
msgstr "Anual"
|
895 |
#: app/features/events.php:1088 app/features/events.php:3431
|
896 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
897 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
898 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
899 |
#: app/widgets/single.php:103
|
900 |
msgid "Event Cost"
|
901 |
msgstr "Coste del evento"
|
913 |
#: app/features/events.php:1124 app/features/events.php:2330
|
914 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
915 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
916 |
+
#: app/modules/booking/steps/tickets.php:36
|
917 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
918 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
919 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
920 |
msgid "Date"
|
999 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
1000 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
1001 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
1002 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
1003 |
#: app/modules/speakers/details.php:18
|
1004 |
msgid "Speakers"
|
1005 |
msgstr ""
|
1016 |
msgstr "Enlaces de eventos"
|
1017 |
|
1018 |
#: app/features/events.php:1408 app/features/events.php:1414
|
1019 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
1020 |
msgid "Event Link"
|
1021 |
msgstr "Enlace del evento"
|
1022 |
|
1043 |
msgstr ""
|
1044 |
|
1045 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1046 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
1047 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
1048 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1049 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1050 |
#: app/widgets/single.php:107
|
1082 |
msgstr "Límite total de reservas"
|
1083 |
|
1084 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1085 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
1086 |
+
#: app/modules/booking/steps/tickets.php:64
|
1087 |
msgid "Tickets"
|
1088 |
msgstr "Tickets"
|
1089 |
|
1111 |
|
1112 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1113 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1114 |
+
#: app/modules/booking/steps/tickets.php:64
|
1115 |
#: app/skins/available_spot/tpl.php:142
|
1116 |
msgid "Unlimited"
|
1117 |
msgstr "Ilimitado"
|
1279 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1280 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1281 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1282 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1283 |
msgid "Label"
|
1284 |
msgstr "Etiqueta"
|
1285 |
|
1499 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1500 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1501 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1502 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1503 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1504 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1505 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1506 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1514 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1515 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1516 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1517 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1518 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1519 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1520 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1521 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1522 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1523 |
#: app/skins/single/modern.php:113
|
1559 |
|
1560 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1561 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1562 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1563 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1564 |
msgid "ID"
|
1565 |
msgstr "ID"
|
1581 |
|
1582 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1583 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1584 |
+
#: app/libraries/main.php:5666
|
1585 |
msgid "Ticket"
|
1586 |
msgstr "Ticket"
|
1587 |
|
1800 |
msgstr "Ejemplo. sunombre@gmail.com"
|
1801 |
|
1802 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1803 |
+
#: app/features/popup/event.php:183
|
1804 |
msgid "eg. John Smith"
|
1805 |
msgstr "ej. John Smith"
|
1806 |
|
1827 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1828 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1829 |
#: app/features/mec/meta_boxes/filter.php:72
|
1830 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1831 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1832 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1833 |
#: app/skins/single/modern.php:249
|
1834 |
msgid "Labels"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2623 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2624 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2625 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2626 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2638 |
msgid "You can show featured and canceled events by a different style!"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2642 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2643 |
+
#: app/modules/booking/steps/tickets.php:62
|
2644 |
msgid "Count"
|
2645 |
msgstr "Contador"
|
2646 |
|
2647 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2648 |
#: app/features/organizers.php:207
|
2649 |
msgid "Slug"
|
2650 |
msgstr "Slug"
|
2651 |
|
2652 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2653 |
#, php-format
|
2654 |
msgid "Event %s"
|
2655 |
msgstr "Evento %s"
|
2656 |
|
2657 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2658 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2659 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2660 |
msgid "Locations"
|
2661 |
msgstr "Lugar"
|
2662 |
|
2663 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2664 |
+
#: app/features/locations.php:262
|
2665 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2666 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2667 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2676 |
msgid "Address"
|
2677 |
msgstr "Dirección"
|
2678 |
|
2679 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2680 |
msgid "Enter the location address"
|
2681 |
msgstr "Introduce la dirección del lugar"
|
2682 |
|
2683 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2684 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2685 |
msgid "Latitude"
|
2686 |
msgstr "Latitud"
|
2687 |
|
2688 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2689 |
msgid "Geo latitude (Optional)"
|
2690 |
msgstr "Geo latitud (Opcional)"
|
2691 |
|
2692 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2693 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2694 |
msgid "Longitude"
|
2695 |
msgstr "Longitud"
|
2696 |
|
2697 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2698 |
msgid "Geo longitude (Optional)"
|
2699 |
msgstr "Geolongitud (opcional)"
|
2700 |
|
2701 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2702 |
+
#: app/features/locations.php:372
|
2703 |
#, fuzzy
|
2704 |
#| msgid "Locations"
|
2705 |
msgid "Location Website"
|
2706 |
msgstr "Lugar"
|
2707 |
|
2708 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2709 |
#, fuzzy
|
2710 |
#| msgid "Geo latitude (Optional)"
|
2711 |
msgid "Location Website (Optional)"
|
2712 |
msgstr "Geo latitud (Opcional)"
|
2713 |
|
2714 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2715 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2716 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2717 |
msgid "Thumbnail"
|
2718 |
msgstr "Miniatura"
|
2719 |
|
2720 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2721 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2722 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2723 |
msgid "Upload/Add image"
|
2724 |
msgstr "Subir/Añadir imagen"
|
2725 |
|
2726 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2727 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2728 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2729 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2730 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2731 |
msgid "Remove image"
|
2732 |
msgstr "Eliminar imagen"
|
2733 |
|
2734 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2735 |
msgid "Hide location"
|
2736 |
msgstr "Ocultar lugar"
|
2737 |
|
2738 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2739 |
msgid "Insert a new location"
|
2740 |
msgstr "Insertar nuevo lugar"
|
2741 |
|
2742 |
+
#: app/features/locations.php:334
|
2743 |
msgid "Choose one of saved locations or insert new one below."
|
2744 |
msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
|
2745 |
|
2746 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2747 |
msgid "Location Name"
|
2748 |
msgstr "Nombre del lugar"
|
2749 |
|
2750 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2751 |
msgid "eg. City Hall"
|
2752 |
msgstr "ej. Almería"
|
2753 |
|
2754 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2755 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2756 |
msgid "Event Location"
|
2757 |
msgstr "Lugar del evento"
|
2758 |
|
2759 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2760 |
msgid "eg. City hall, Manhattan, New York"
|
2761 |
msgstr "ej. Almería, España"
|
2762 |
|
2763 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2764 |
#, fuzzy
|
2765 |
#| msgid "Longitude"
|
2766 |
msgid "Latitude/Longitude"
|
2767 |
msgstr "Longitud"
|
2768 |
|
2769 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2770 |
msgid ""
|
2771 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2772 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2775 |
"the location on the map to find lat long coordinates."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2779 |
msgid "Get Latitude and Longitude"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2783 |
+
#: app/features/popup/event.php:202
|
2784 |
msgid "Choose image"
|
2785 |
msgstr "Elegir imagen"
|
2786 |
|
2787 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2788 |
msgid "Don't show map in single event page"
|
2789 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
2790 |
|
2791 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2792 |
#, fuzzy
|
2793 |
#| msgid "Locations"
|
2794 |
msgid "Other Locations"
|
2795 |
msgstr "Lugar"
|
2796 |
|
2797 |
+
#: app/features/locations.php:398
|
2798 |
#, fuzzy
|
2799 |
#| msgid ""
|
2800 |
#| "You can select extra organizers in addition to main organizer if you like."
|
2868 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2869 |
#: app/features/mec/meta_boxes/filter.php:71
|
2870 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2871 |
+
#: app/libraries/main.php:5637
|
2872 |
msgid "Organizers"
|
2873 |
msgstr "Organizadores"
|
2874 |
|
2909 |
msgid "MEC - Go Pro"
|
2910 |
msgstr "Soporte"
|
2911 |
|
2912 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2913 |
#: app/features/mec/go-pro.php:9
|
2914 |
msgid "Go Pro"
|
2915 |
msgstr ""
|
2968 |
msgid "Modal Popup"
|
2969 |
msgstr "Modal 1"
|
2970 |
|
2971 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2972 |
msgid "Total Bookings"
|
2973 |
msgstr "Total reservas"
|
2974 |
|
2975 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2976 |
msgid "Modern Events Calendar (Lite)"
|
2977 |
msgstr "Modern Events Calendar (Lite)"
|
2978 |
|
2979 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2980 |
#: app/features/mec/settings.php:428
|
2981 |
msgid "Upcoming Events"
|
2982 |
msgstr "Próximos Eventos"
|
2983 |
|
2984 |
+
#: app/features/mec.php:1201
|
2985 |
#, fuzzy
|
2986 |
#| msgid "Update %s"
|
2987 |
msgid "News & Updates"
|
2988 |
msgstr "Actualizar %s"
|
2989 |
|
2990 |
+
#: app/features/mec.php:1214
|
2991 |
msgid "Blog"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: app/features/mec.php:1214
|
2995 |
msgid "Help"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: app/features/mec.php:1260
|
2999 |
msgid "This Month"
|
3000 |
msgstr "Este mes"
|
3001 |
|
3002 |
+
#: app/features/mec.php:1266
|
3003 |
msgid "Last Month"
|
3004 |
msgstr "Último mes"
|
3005 |
|
3006 |
+
#: app/features/mec.php:1272
|
3007 |
msgid "This Year"
|
3008 |
msgstr "Este año"
|
3009 |
|
3010 |
+
#: app/features/mec.php:1278
|
3011 |
msgid "Last Year"
|
3012 |
msgstr "Año pasado"
|
3013 |
|
3014 |
+
#: app/features/mec.php:1290
|
3015 |
msgid "Bar"
|
3016 |
msgstr "Barra"
|
3017 |
|
3018 |
+
#: app/features/mec.php:1291
|
3019 |
msgid "Line"
|
3020 |
msgstr "Línea"
|
3021 |
|
3022 |
+
#: app/features/mec.php:1293
|
3023 |
msgid "Filter"
|
3024 |
msgstr "Filtrar"
|
3025 |
|
3026 |
+
#: app/features/mec.php:1309
|
3027 |
#, php-format
|
3028 |
msgid "Total Sells (%s)"
|
3029 |
msgstr "Ventas Totales (%s)"
|
3030 |
|
3031 |
+
#: app/features/mec.php:1337
|
3032 |
#, fuzzy
|
3033 |
#| msgid "Modern Events Calendar"
|
3034 |
msgid "Print Calendar"
|
3035 |
msgstr "Modern Events Calendar"
|
3036 |
|
3037 |
+
#: app/features/mec.php:1352
|
3038 |
#, fuzzy
|
3039 |
#| msgid "Display Event Price"
|
3040 |
msgid "Display Events"
|
3435 |
#: app/features/mec/notifications.php:923
|
3436 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3437 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3438 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3439 |
msgid "Verified"
|
3440 |
msgstr "Verificado"
|
3441 |
|
4628 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4629 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4630 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4631 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4632 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4633 |
msgid "Speaker"
|
4634 |
msgstr ""
|
4635 |
|
4645 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4646 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4647 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4648 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4649 |
#, fuzzy
|
4650 |
#| msgid "Tags"
|
4651 |
msgid "Tag"
|
5448 |
msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
|
5449 |
|
5450 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5451 |
+
#: app/libraries/notifications.php:587
|
5452 |
msgid "Booking Reminder"
|
5453 |
msgstr "Recordatorio de reserva"
|
5454 |
|
5480 |
msgid "Please, insert comma to separate reminder days."
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5484 |
#: app/libraries/main.php:584
|
5485 |
msgid "New Event"
|
5486 |
msgstr "Nuevo evento"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5712 |
+
#: app/libraries/main.php:5644
|
5713 |
msgid "Weekdays"
|
5714 |
msgstr "Días de la semana"
|
5715 |
|
6503 |
"eventos y la pagina de evento individual."
|
6504 |
|
6505 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6506 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
6507 |
#, fuzzy
|
6508 |
#| msgid "featured event"
|
6509 |
msgid "Related Events"
|
7166 |
msgstr "Insertar correo electrónico del organizador."
|
7167 |
|
7168 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7169 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
7170 |
msgid "Link to organizer page"
|
7171 |
msgstr "Enlace a la página del organizador"
|
7172 |
|
7185 |
msgid "Event Main %s"
|
7186 |
msgstr "Principal %s del evento"
|
7187 |
|
7188 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
7189 |
msgid "Hide organizer"
|
7190 |
msgstr "Ocultar organizador"
|
7191 |
|
7192 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
7193 |
msgid "Insert a new organizer"
|
7194 |
msgstr "Insertar nuevo organizador"
|
7195 |
|
7196 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
7197 |
msgid "Choose one of saved organizers or insert new one below."
|
7198 |
msgstr "Elige uno de los organizadores o inserta uno nuevo a continuación."
|
7199 |
|
7200 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
7201 |
msgid "Phone number."
|
7202 |
msgstr "Número de teléfono."
|
7203 |
|
7204 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
7205 |
msgid "eg. +1 (234) 5678"
|
7206 |
msgstr "ej. +34 900 123 456"
|
7207 |
|
7208 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
7209 |
msgid "Email address."
|
7210 |
msgstr "Correo electrónico."
|
7211 |
|
7212 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
7213 |
msgid "eg. john@smith.com"
|
7214 |
msgstr "ej. user@yoursite.com"
|
7215 |
|
7216 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
7217 |
msgid "eg. https://webnus.net"
|
7218 |
msgstr "ej. https://webnus.net"
|
7219 |
|
7220 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
7221 |
+
#: app/skins/single.php:1152
|
7222 |
msgid "Other Organizers"
|
7223 |
msgstr "En común"
|
7224 |
|
7245 |
msgid "Event name is required"
|
7246 |
msgstr ""
|
7247 |
|
7248 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7249 |
#, fuzzy
|
7250 |
#| msgid "Choose one of saved locations or insert new one below."
|
7251 |
msgid "Choose one of saved locations or insert new one."
|
7252 |
msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
|
7253 |
|
7254 |
+
#: app/features/popup/event.php:130
|
7255 |
#, fuzzy
|
7256 |
#| msgid "Location"
|
7257 |
msgid "Add Location"
|
7258 |
msgstr "Localización"
|
7259 |
|
7260 |
+
#: app/features/popup/event.php:177
|
7261 |
#, fuzzy
|
7262 |
#| msgid "Organizer"
|
7263 |
msgid "Add Organizer"
|
7264 |
msgstr "Organizador"
|
7265 |
|
7266 |
+
#: app/features/popup/event.php:217
|
7267 |
#, fuzzy
|
7268 |
#| msgid "Categories"
|
7269 |
msgid "All Categories"
|
7270 |
msgstr "Categorías"
|
7271 |
|
7272 |
+
#: app/features/popup/event.php:218
|
7273 |
msgid "Most Used"
|
7274 |
msgstr ""
|
7275 |
|
7276 |
+
#: app/features/popup/event.php:229
|
7277 |
#, fuzzy
|
7278 |
#| msgid "Add New %s"
|
7279 |
msgid "Add New Category"
|
7280 |
msgstr "Añadir nuevo %s"
|
7281 |
|
7282 |
+
#: app/features/popup/event.php:240
|
7283 |
#, fuzzy
|
7284 |
#| msgid "Featured Image"
|
7285 |
msgid "Set Featured Image"
|
7286 |
msgstr "Imagen destacada"
|
7287 |
|
7288 |
+
#: app/features/popup/event.php:250
|
7289 |
msgid "Your Event Has Been Created."
|
7290 |
msgstr ""
|
7291 |
|
7292 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
7293 |
msgid "Prev"
|
7294 |
msgstr ""
|
7295 |
|
7296 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
7297 |
#: app/modules/booking/steps/form.php:188
|
7298 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
7299 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7300 |
msgid "Next"
|
7301 |
msgstr "Siguiente"
|
7540 |
msgid "No search result."
|
7541 |
msgstr ""
|
7542 |
|
7543 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
7544 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
7545 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7546 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7547 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
7548 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7549 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7550 |
#, fuzzy
|
7622 |
msgid "%s Price"
|
7623 |
msgstr "%s Precio"
|
7624 |
|
7625 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
7626 |
msgid "Discount"
|
7627 |
msgstr "Descuento"
|
7628 |
|
7629 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
7630 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
7631 |
msgid "Download Invoice"
|
7632 |
msgstr "Descargar factura"
|
7633 |
|
7650 |
msgid "Upgrade"
|
7651 |
msgstr "Actualizar"
|
7652 |
|
7653 |
+
#: app/libraries/factory.php:369
|
7654 |
msgid "day"
|
7655 |
msgstr "día "
|
7656 |
|
7657 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
7658 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7659 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7660 |
msgid "days"
|
7661 |
msgstr "días"
|
7662 |
|
7663 |
+
#: app/libraries/factory.php:371
|
7664 |
msgid "hour"
|
7665 |
msgstr "hora"
|
7666 |
|
7667 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
7668 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7669 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7670 |
msgid "hours"
|
7671 |
msgstr "horas"
|
7672 |
|
7673 |
+
#: app/libraries/factory.php:373
|
7674 |
msgid "minute"
|
7675 |
msgstr "minuto"
|
7676 |
|
7677 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7678 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7679 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7680 |
msgid "minutes"
|
7681 |
msgstr "minutos"
|
7682 |
|
7683 |
+
#: app/libraries/factory.php:375
|
7684 |
msgid "second"
|
7685 |
msgstr "segundo"
|
7686 |
|
7687 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7688 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7689 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7690 |
msgid "seconds"
|
7691 |
msgstr "segundos"
|
7692 |
|
7693 |
+
#: app/libraries/factory.php:428
|
7694 |
msgid "MEC Single Sidebar"
|
7695 |
msgstr "barra lateral MEC"
|
7696 |
|
7697 |
+
#: app/libraries/factory.php:429
|
7698 |
msgid "Custom sidebar for single and modal page of MEC."
|
7699 |
msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
|
7700 |
|
7758 |
msgid "Timeline View"
|
7759 |
msgstr "Vista de Horario"
|
7760 |
|
7761 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7762 |
msgid "SU"
|
7763 |
msgstr "DO"
|
7764 |
|
7765 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7766 |
msgid "MO"
|
7767 |
msgstr "LU"
|
7768 |
|
7769 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7770 |
msgid "TU"
|
7771 |
msgstr "MA"
|
7772 |
|
7773 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7774 |
msgid "WE"
|
7775 |
msgstr "MI"
|
7776 |
|
7777 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7778 |
msgid "TH"
|
7779 |
msgstr "JU"
|
7780 |
|
7781 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7782 |
msgid "FR"
|
7783 |
msgstr "VI"
|
7784 |
|
7785 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7786 |
msgid "SA"
|
7787 |
msgstr "SA"
|
7788 |
|
8121 |
msgid "Free"
|
8122 |
msgstr "Gratis"
|
8123 |
|
8124 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
8125 |
#, fuzzy
|
8126 |
#| msgid "M.E. Calendar"
|
8127 |
msgid "M.E. Calender"
|
8128 |
msgstr "M.E. Calendario"
|
8129 |
|
8130 |
+
#: app/libraries/main.php:4105
|
8131 |
#, php-format
|
8132 |
msgid "Copy of %s"
|
8133 |
msgstr "Copia de %s"
|
8134 |
|
8135 |
+
#: app/libraries/main.php:4923
|
8136 |
msgid "Booked an event."
|
8137 |
msgstr "Has reservado para un evento."
|
8138 |
|
8139 |
+
#: app/libraries/main.php:4964
|
8140 |
#, php-format
|
8141 |
msgid "%s booked %s event."
|
8142 |
msgstr "%s reservado %s evento."
|
8143 |
|
8144 |
+
#: app/libraries/main.php:5629
|
8145 |
msgid "Taxonomies"
|
8146 |
msgstr "Taxonomías"
|
8147 |
|
8148 |
+
#: app/libraries/main.php:5631
|
8149 |
msgid "Category Plural Label"
|
8150 |
msgstr "Categoría Etiqueta plural"
|
8151 |
|
8152 |
+
#: app/libraries/main.php:5632
|
8153 |
msgid "Category Singular Label"
|
8154 |
msgstr "Categoría Etiqueta Singular"
|
8155 |
|
8156 |
+
#: app/libraries/main.php:5633
|
8157 |
msgid "Label Plural Label"
|
8158 |
msgstr "Etiqueta plural"
|
8159 |
|
8160 |
+
#: app/libraries/main.php:5634
|
8161 |
msgid "Label Singular Label"
|
8162 |
msgstr "Etiqueta singular de la etiqueta"
|
8163 |
|
8164 |
+
#: app/libraries/main.php:5634
|
8165 |
msgid "label"
|
8166 |
msgstr "etiqueta"
|
8167 |
|
8168 |
+
#: app/libraries/main.php:5635
|
8169 |
msgid "Location Plural Label"
|
8170 |
msgstr "Ubicación Etiqueta plural"
|
8171 |
|
8172 |
+
#: app/libraries/main.php:5636
|
8173 |
msgid "Location Singular Label"
|
8174 |
msgstr "Etiqueta de ubicación en singular"
|
8175 |
|
8176 |
+
#: app/libraries/main.php:5637
|
8177 |
msgid "Organizer Plural Label"
|
8178 |
msgstr "Etiqueta del organizador en plural"
|
8179 |
|
8180 |
+
#: app/libraries/main.php:5638
|
8181 |
msgid "Organizer Singular Label"
|
8182 |
msgstr "Etiqueta Singular del Organizador"
|
8183 |
|
8184 |
+
#: app/libraries/main.php:5639
|
8185 |
msgid "Speaker Plural Label"
|
8186 |
msgstr ""
|
8187 |
|
8188 |
+
#: app/libraries/main.php:5640
|
8189 |
msgid "Speaker Singular Label"
|
8190 |
msgstr ""
|
8191 |
|
8192 |
+
#: app/libraries/main.php:5646
|
8193 |
msgid "Sunday abbreviation"
|
8194 |
msgstr "Abreviatura de Domingo"
|
8195 |
|
8196 |
+
#: app/libraries/main.php:5647
|
8197 |
msgid "Monday abbreviation"
|
8198 |
msgstr "Abreviatura de Lunes"
|
8199 |
|
8200 |
+
#: app/libraries/main.php:5648
|
8201 |
msgid "Tuesday abbreviation"
|
8202 |
msgstr "Abreviatura de Martes"
|
8203 |
|
8204 |
+
#: app/libraries/main.php:5649
|
8205 |
msgid "Wednesday abbreviation"
|
8206 |
msgstr "Abreviatura de Miércoles "
|
8207 |
|
8208 |
+
#: app/libraries/main.php:5650
|
8209 |
msgid "Thursday abbreviation"
|
8210 |
msgstr "Abreviatura de Jueves"
|
8211 |
|
8212 |
+
#: app/libraries/main.php:5651
|
8213 |
msgid "Friday abbreviation"
|
8214 |
msgstr "Abreviatura de Viernes"
|
8215 |
|
8216 |
+
#: app/libraries/main.php:5652
|
8217 |
msgid "Saturday abbreviation"
|
8218 |
msgstr "Abreviatura de Sábado "
|
8219 |
|
8220 |
+
#: app/libraries/main.php:5656
|
8221 |
msgid "Others"
|
8222 |
msgstr "Otros"
|
8223 |
|
8224 |
+
#: app/libraries/main.php:5658
|
8225 |
msgid "Booking Success Message"
|
8226 |
msgstr "Mensaje de reserva correcta"
|
8227 |
|
8228 |
+
#: app/libraries/main.php:5658
|
8229 |
#, fuzzy
|
8230 |
#| msgid ""
|
8231 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
8237 |
"Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
|
8238 |
"una verificación, por favor consulta tu correo."
|
8239 |
|
8240 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
8241 |
msgid "Register Button"
|
8242 |
msgstr "Botón de registro"
|
8243 |
|
8244 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
8245 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8246 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8247 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8248 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8249 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
8250 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
8251 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8252 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8253 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
8259 |
msgid "REGISTER"
|
8260 |
msgstr "REGISTRO"
|
8261 |
|
8262 |
+
#: app/libraries/main.php:5660
|
8263 |
msgid "View Detail Button"
|
8264 |
msgstr "Ver detalle del botón"
|
8265 |
|
8266 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
8267 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8268 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8269 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8270 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8271 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
8272 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8273 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8274 |
msgid "View Detail"
|
8275 |
msgstr "Ver detalle"
|
8276 |
|
8277 |
+
#: app/libraries/main.php:5661
|
8278 |
msgid "Event Detail Button"
|
8279 |
msgstr "Botón de detalle del evento"
|
8280 |
|
8281 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
8282 |
msgid "Event Detail"
|
8283 |
msgstr "Detalle del evento"
|
8284 |
|
8285 |
+
#: app/libraries/main.php:5663
|
8286 |
msgid "More Info Link"
|
8287 |
msgstr "Enlace a Más Información"
|
8288 |
|
8289 |
+
#: app/libraries/main.php:5666
|
8290 |
msgid "Ticket (Singular)"
|
8291 |
msgstr "Entrada (Singular)"
|
8292 |
|
8293 |
+
#: app/libraries/main.php:5667
|
8294 |
msgid "Tickets (Plural)"
|
8295 |
msgstr "Entradas (Plural)"
|
8296 |
|
8297 |
+
#: app/libraries/main.php:5754
|
8298 |
msgid "EventON"
|
8299 |
msgstr "EventON"
|
8300 |
|
8301 |
+
#: app/libraries/main.php:5755
|
8302 |
msgid "The Events Calendar"
|
8303 |
msgstr "The Events Calendar"
|
8304 |
|
8305 |
+
#: app/libraries/main.php:5756
|
8306 |
msgid "Events Schedule WP Plugin"
|
8307 |
msgstr "Events Schedule WP Plugin"
|
8308 |
|
8309 |
+
#: app/libraries/main.php:5757
|
8310 |
msgid "Calendarize It"
|
8311 |
msgstr "Ponlo al calendario"
|
8312 |
|
8313 |
+
#: app/libraries/main.php:5758
|
8314 |
#, fuzzy
|
8315 |
#| msgid "Event %s"
|
8316 |
msgid "Event Espresso"
|
8317 |
msgstr "Evento %s"
|
8318 |
|
8319 |
+
#: app/libraries/main.php:5759
|
8320 |
#, fuzzy
|
8321 |
#| msgid "Event Repeating"
|
8322 |
msgid "Events Manager (Recurring)"
|
8323 |
msgstr "Repetir el evento"
|
8324 |
|
8325 |
+
#: app/libraries/main.php:5760
|
8326 |
#, fuzzy
|
8327 |
#| msgid "Modern Events Calendar (Lite)"
|
8328 |
msgid "Events Manager (Single)"
|
8329 |
msgstr "Modern Events Calendar (Lite)"
|
8330 |
|
8331 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
8332 |
msgid "Confirmed"
|
8333 |
msgstr ""
|
8334 |
|
8335 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
8336 |
msgid "Rejected"
|
8337 |
msgstr ""
|
8338 |
|
8339 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
8340 |
msgid "Pending"
|
8341 |
msgstr ""
|
8342 |
|
8343 |
+
#: app/libraries/main.php:5882
|
8344 |
msgid "Waiting"
|
8345 |
msgstr ""
|
8346 |
|
8347 |
+
#: app/libraries/main.php:5925
|
8348 |
#, fuzzy
|
8349 |
#| msgid "Sunday"
|
8350 |
msgid "Sun"
|
8351 |
msgstr "Domingo"
|
8352 |
|
8353 |
+
#: app/libraries/main.php:5925
|
8354 |
#, fuzzy
|
8355 |
#| msgid "Monthly"
|
8356 |
msgid "Mon"
|
8357 |
msgstr "Mensual"
|
8358 |
|
8359 |
+
#: app/libraries/main.php:5925
|
8360 |
#, fuzzy
|
8361 |
#| msgid "Tel"
|
8362 |
msgid "Tue"
|
8363 |
msgstr "Tel"
|
8364 |
|
8365 |
+
#: app/libraries/main.php:5925
|
8366 |
msgid "Wed"
|
8367 |
msgstr ""
|
8368 |
|
8369 |
+
#: app/libraries/main.php:5925
|
8370 |
msgid "Thu"
|
8371 |
msgstr ""
|
8372 |
|
8373 |
+
#: app/libraries/main.php:5925
|
8374 |
#, fuzzy
|
8375 |
#| msgid "Friday"
|
8376 |
msgid "Fri"
|
8377 |
msgstr "Viernes"
|
8378 |
|
8379 |
+
#: app/libraries/main.php:5925
|
8380 |
#, fuzzy
|
8381 |
#| msgid "Start"
|
8382 |
msgid "Sat"
|
8383 |
msgstr "Inicio"
|
8384 |
|
8385 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
8386 |
#: app/libraries/render.php:432
|
8387 |
msgid "Skin controller does not exist."
|
8388 |
msgstr "No existe skin controller."
|
8389 |
|
8390 |
+
#: app/libraries/main.php:6302
|
8391 |
#, fuzzy
|
8392 |
#| msgid "Sold out!"
|
8393 |
msgid "Sold Out"
|
8394 |
msgstr "¡Agotado!"
|
8395 |
|
8396 |
+
#: app/libraries/main.php:6310
|
8397 |
#, fuzzy
|
8398 |
#| msgid "Ticket"
|
8399 |
msgid "Last Few Tickets"
|
8400 |
msgstr "Ticket"
|
8401 |
|
8402 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
8403 |
#, fuzzy
|
8404 |
#| msgid "hours"
|
8405 |
msgid "Hours"
|
8406 |
msgstr "horas"
|
8407 |
|
8408 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
8409 |
#, fuzzy
|
8410 |
#| msgid "minutes"
|
8411 |
msgid "Minutes"
|
8412 |
msgstr "minutos"
|
8413 |
|
8414 |
+
#: app/libraries/main.php:6652
|
8415 |
msgid "AM / PM"
|
8416 |
msgstr ""
|
8417 |
|
8418 |
+
#: app/libraries/main.php:6653
|
8419 |
+
msgid "AM"
|
8420 |
+
msgstr "AM"
|
8421 |
+
|
8422 |
+
#: app/libraries/main.php:6654
|
8423 |
+
msgid "PM"
|
8424 |
+
msgstr "PM"
|
8425 |
+
|
8426 |
+
#: app/libraries/main.php:6662
|
8427 |
msgid "Ongoing..."
|
8428 |
msgstr ""
|
8429 |
|
8430 |
+
#: app/libraries/main.php:6663
|
8431 |
#, fuzzy
|
8432 |
#| msgid "Expired Events"
|
8433 |
msgid "Expired!"
|
8437 |
msgid "Please verify your email."
|
8438 |
msgstr "Por favor comprueba tu email"
|
8439 |
|
8440 |
+
#: app/libraries/notifications.php:158
|
8441 |
msgid "Your booking is received."
|
8442 |
msgstr "Se ha recibido tu reserva."
|
8443 |
|
8444 |
+
#: app/libraries/notifications.php:268
|
8445 |
msgid "Your booking is confirmed."
|
8446 |
msgstr "Tu reserva ha sido confirmada."
|
8447 |
|
8448 |
+
#: app/libraries/notifications.php:425
|
8449 |
#, fuzzy
|
8450 |
#| msgid "Your booking cannot be canceled."
|
8451 |
msgid "booking canceled."
|
8452 |
msgstr "La reserva no puede cancelarse."
|
8453 |
|
8454 |
+
#: app/libraries/notifications.php:503
|
8455 |
msgid "A new booking is received."
|
8456 |
msgstr "Nueva reserva recibida."
|
8457 |
|
8458 |
+
#: app/libraries/notifications.php:707
|
8459 |
msgid "A new event is added."
|
8460 |
msgstr "Se ha añadido un nuevo evento."
|
8461 |
|
8462 |
+
#: app/libraries/notifications.php:779
|
8463 |
#, fuzzy
|
8464 |
#| msgid "The event published."
|
8465 |
msgid "Your event is published."
|
8466 |
msgstr "El evento a sido publicado."
|
8467 |
|
8468 |
+
#: app/libraries/notifications.php:912
|
8469 |
#, php-format
|
8470 |
msgid "%s to %s"
|
8471 |
msgstr ""
|
8472 |
|
8473 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
8474 |
+
#: app/libraries/notifications.php:1060
|
8475 |
msgid "to"
|
8476 |
msgstr "a"
|
8477 |
|
8478 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
8479 |
msgid "+ Add to Google Calendar"
|
8480 |
msgstr "+ Añadir Google Calendar"
|
8481 |
|
8482 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
8483 |
msgid "+ iCal export"
|
8484 |
msgstr "Exportación + iCal"
|
8485 |
|
8486 |
+
#: app/libraries/notifications.php:1139
|
8487 |
msgid "Yes"
|
8488 |
msgstr "Sí"
|
8489 |
|
8490 |
+
#: app/libraries/notifications.php:1139
|
8491 |
msgid "No"
|
8492 |
msgstr "No"
|
8493 |
|
8494 |
+
#: app/libraries/skins.php:1069
|
8495 |
#, fuzzy
|
8496 |
#| msgid "Select All"
|
8497 |
msgid "Select"
|
8498 |
msgstr "Seleccionar todo"
|
8499 |
|
8500 |
+
#: app/modules/attendees-list/details.php:39
|
8501 |
msgid "Event Attendees"
|
8502 |
msgstr "Asistentes evento"
|
8503 |
|
8504 |
+
#: app/modules/attendees-list/details.php:41
|
8505 |
msgid "No attendee found! Be the first one to book!"
|
8506 |
msgstr "¡No aparecen asistentes! !Se el primero en apuntarte!"
|
8507 |
|
8508 |
+
#: app/modules/attendees-list/details.php:62
|
8509 |
#, fuzzy
|
8510 |
#| msgid "Tickets"
|
8511 |
msgid "tickets"
|
8512 |
msgstr "Tickets"
|
8513 |
|
8514 |
+
#: app/modules/attendees-list/details.php:92
|
8515 |
+
#, fuzzy, php-format
|
8516 |
+
#| msgid "%s tickets"
|
8517 |
+
msgid "%s ticket"
|
8518 |
+
msgid_plural "%s tickets"
|
8519 |
+
msgstr[0] "%s Entradas"
|
8520 |
+
msgstr[1] "%s Entradas"
|
8521 |
+
|
8522 |
#: app/modules/booking/steps/checkout.php:37
|
8523 |
msgid "Checkout"
|
8524 |
msgstr "Checkout"
|
8574 |
"Rellenar la información de los otros asistentes igual que el primer "
|
8575 |
"formulario."
|
8576 |
|
8577 |
+
#: app/modules/booking/steps/tickets.php:32
|
8578 |
msgid "Book Event"
|
8579 |
msgstr "Reservar evento"
|
8580 |
|
8581 |
+
#: app/modules/booking/steps/tickets.php:59
|
8582 |
#, fuzzy
|
8583 |
#| msgid "Ticket time"
|
8584 |
msgid "1 Ticket selected."
|
8585 |
msgstr "Hora de la entrada"
|
8586 |
|
8587 |
+
#: app/modules/booking/steps/tickets.php:64
|
8588 |
#, php-format
|
8589 |
msgid "Available %s: <span>%s</span>"
|
8590 |
msgstr "%s disponibles: <span>%s</span>"
|
8591 |
|
8592 |
+
#: app/modules/booking/steps/tickets.php:69
|
8593 |
#, php-format
|
8594 |
msgid "The %s ticket sales has stopped!"
|
8595 |
msgstr ""
|
8596 |
|
8597 |
+
#: app/modules/booking/steps/tickets.php:70
|
8598 |
#, php-format
|
8599 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8600 |
msgstr ""
|
8617 |
msgid "Get Directions"
|
8618 |
msgstr "Cómo llegar"
|
8619 |
|
8620 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
8621 |
msgid "Share this event"
|
8622 |
msgstr "Compartir este evento"
|
8623 |
|
8672 |
msgid "Go to occurrence page"
|
8673 |
msgstr "Ir a la página de repetición"
|
8674 |
|
8675 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
8676 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8677 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8678 |
msgid "Time"
|
8810 |
msgid "No Events"
|
8811 |
msgstr "Sin eventos"
|
8812 |
|
8813 |
+
#: app/skins/single.php:393
|
8814 |
msgid "Home"
|
8815 |
msgstr ""
|
8816 |
|
8817 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
8818 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8819 |
#: app/skins/single/modern.php:292
|
8820 |
msgid "Sold out!"
|
8821 |
msgstr "¡Agotado!"
|
8822 |
|
8823 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
8824 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8825 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8826 |
#: app/skins/single/modern.php:55
|
8827 |
msgid "Phone"
|
8828 |
msgstr "Teléfono"
|
8829 |
|
8830 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
8831 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8832 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8833 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
8836 |
msgid "Website"
|
8837 |
msgstr "Web"
|
8838 |
|
8839 |
+
#: app/skins/single.php:1261
|
8840 |
msgid "Speakers:"
|
8841 |
msgstr ""
|
8842 |
|
9373 |
#~ msgid "Can I Override MEC Template ?"
|
9374 |
#~ msgstr "¿Cómo reemplazar los archivos de plantillas MEC?"
|
9375 |
|
|
|
|
|
|
|
9376 |
#, fuzzy
|
9377 |
#~| msgid "Security nonce is not valid."
|
9378 |
#~ msgid "Security nonce is missing."
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-06-
|
5 |
-
"PO-Revision-Date: 2020-06-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr "Modern Events Calendar"
|
@@ -307,7 +307,7 @@ msgid "Edit Event"
|
|
307 |
msgstr ""
|
308 |
|
309 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
310 |
-
#: app/features/popup/event.php:
|
311 |
msgid "View Event"
|
312 |
msgstr "Voir l'événement"
|
313 |
|
@@ -329,8 +329,8 @@ msgstr "Aucun événement trouvé dans la corbeille !"
|
|
329 |
#: app/features/mec/meta_boxes/search_form.php:654
|
330 |
#: app/features/mec/meta_boxes/search_form.php:760
|
331 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
332 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
333 |
-
#: app/libraries/skins.php:
|
334 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
335 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
336 |
#: app/skins/single/modern.php:137
|
@@ -340,7 +340,7 @@ msgstr "Catégorie"
|
|
340 |
#: app/features/events.php:186 app/features/events.php:3193
|
341 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
342 |
#: app/features/mec/meta_boxes/filter.php:69
|
343 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
344 |
msgid "Categories"
|
345 |
msgstr "Catégories"
|
346 |
|
@@ -425,7 +425,7 @@ msgid "Event Repeating"
|
|
425 |
msgstr "Événement récurrent"
|
426 |
|
427 |
#: app/features/events.php:336 app/features/events.php:1215
|
428 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
429 |
msgid "Hourly Schedule"
|
430 |
msgstr "Programme"
|
431 |
|
@@ -455,18 +455,18 @@ msgstr "Lien"
|
|
455 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
456 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
457 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
458 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
459 |
-
#: app/features/popup/event.php:
|
460 |
-
#: app/libraries/main.php:
|
461 |
-
#: app/skins/single.php:
|
462 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
463 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
464 |
msgid "Organizer"
|
465 |
msgstr "Organisateur"
|
466 |
|
467 |
#: app/features/events.php:340 app/features/events.php:1092
|
468 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
469 |
-
#: app/skins/single.php:
|
470 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
471 |
#: app/skins/single/modern.php:234
|
472 |
msgid "Cost"
|
@@ -490,8 +490,8 @@ msgstr "Coordonnées de l'Invité"
|
|
490 |
#: app/features/events.php:3769 app/features/fes.php:223
|
491 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
492 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
493 |
-
#: app/features/popup/event.php:
|
494 |
-
#: app/libraries/notifications.php:
|
495 |
msgid "Name"
|
496 |
msgstr "Nom"
|
497 |
|
@@ -503,9 +503,9 @@ msgstr "Nom"
|
|
503 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
504 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
505 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
506 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
507 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
508 |
-
#: app/skins/single.php:
|
509 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
510 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
511 |
#: app/skins/single/modern.php:62
|
@@ -521,7 +521,7 @@ msgstr "Date et heure"
|
|
521 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
522 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
523 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
524 |
-
#: app/features/mec.php:
|
525 |
#: app/features/mec/meta_boxes/display_options.php:278
|
526 |
#: app/features/mec/meta_boxes/display_options.php:517
|
527 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -545,12 +545,12 @@ msgstr "Date de début"
|
|
545 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
546 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
547 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
548 |
-
#: app/features/mec.php:
|
549 |
msgid "End Date"
|
550 |
msgstr "Date de fin"
|
551 |
|
552 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
553 |
-
#: app/features/popup/event.php:
|
554 |
#, fuzzy
|
555 |
#| msgid "All Day Event"
|
556 |
msgid "All-day Event"
|
@@ -592,7 +592,7 @@ msgstr ""
|
|
592 |
#: app/features/events.php:2151 app/features/events.php:2166
|
593 |
#: app/features/events.php:2196 app/features/events.php:2209
|
594 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
595 |
-
#: app/features/locations.php:
|
596 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
597 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
598 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -656,8 +656,8 @@ msgstr ""
|
|
656 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
657 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
658 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
659 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
660 |
-
#: app/features/popup/event.php:
|
661 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
662 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
663 |
#: app/skins/single/modern.php:160
|
@@ -677,7 +677,7 @@ msgid "Repeats"
|
|
677 |
msgstr "Récurrence"
|
678 |
|
679 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
680 |
-
#: app/features/mec.php:
|
681 |
#: app/skins/full_calendar/tpl.php:121
|
682 |
msgid "Daily"
|
683 |
msgstr "Quotidienne"
|
@@ -701,13 +701,13 @@ msgid "Weekly"
|
|
701 |
msgstr "Hebdomadaire"
|
702 |
|
703 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
704 |
-
#: app/features/mec.php:
|
705 |
#: app/skins/full_calendar/tpl.php:119
|
706 |
msgid "Monthly"
|
707 |
msgstr "Mensuelle"
|
708 |
|
709 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
710 |
-
#: app/features/mec.php:
|
711 |
#: app/skins/full_calendar/tpl.php:118
|
712 |
msgid "Yearly"
|
713 |
msgstr "Annuelle"
|
@@ -838,7 +838,7 @@ msgstr "Afficher uniquement une occurence pour cet événement"
|
|
838 |
#: app/features/events.php:1088 app/features/events.php:3431
|
839 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
840 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
841 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
842 |
#: app/widgets/single.php:103
|
843 |
msgid "Event Cost"
|
844 |
msgstr "Tarif de l'événement"
|
@@ -854,8 +854,8 @@ msgstr "Exclure certains jours"
|
|
854 |
#: app/features/events.php:1124 app/features/events.php:2330
|
855 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
856 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
857 |
-
#: app/modules/booking/steps/tickets.php:
|
858 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
859 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
860 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
861 |
msgid "Date"
|
@@ -942,7 +942,7 @@ msgstr "Description"
|
|
942 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
943 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
944 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
945 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
946 |
#: app/modules/speakers/details.php:18
|
947 |
msgid "Speakers"
|
948 |
msgstr "Orateurs"
|
@@ -957,7 +957,7 @@ msgid "Event Links"
|
|
957 |
msgstr "Liens de l'évenements"
|
958 |
|
959 |
#: app/features/events.php:1408 app/features/events.php:1414
|
960 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
961 |
msgid "Event Link"
|
962 |
msgstr "Lien de l'événement"
|
963 |
|
@@ -982,8 +982,8 @@ msgid "URL Shortener"
|
|
982 |
msgstr ""
|
983 |
|
984 |
#: app/features/events.php:1424 app/features/events.php:1437
|
985 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
986 |
-
#: app/skins/single.php:
|
987 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
988 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
989 |
#: app/widgets/single.php:107
|
@@ -1019,8 +1019,8 @@ msgid "Total User Booking Limits"
|
|
1019 |
msgstr "Nombre limite de réservation"
|
1020 |
|
1021 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1022 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
1023 |
-
#: app/modules/booking/steps/tickets.php:
|
1024 |
msgid "Tickets"
|
1025 |
msgstr "Billets"
|
1026 |
|
@@ -1046,7 +1046,7 @@ msgstr "Nombre limite de réservation"
|
|
1046 |
|
1047 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1048 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1049 |
-
#: app/modules/booking/steps/tickets.php:
|
1050 |
#: app/skins/available_spot/tpl.php:142
|
1051 |
msgid "Unlimited"
|
1052 |
msgstr "Illimité"
|
@@ -1204,7 +1204,7 @@ msgstr "Prix par date"
|
|
1204 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1205 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1206 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1207 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1208 |
msgid "Label"
|
1209 |
msgstr "Label"
|
1210 |
|
@@ -1418,8 +1418,8 @@ msgstr "Liste des participants"
|
|
1418 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1419 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1420 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1421 |
-
#: app/features/locations.php:
|
1422 |
-
#: app/features/locations.php:
|
1423 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1424 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1425 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1433,10 +1433,10 @@ msgstr "Liste des participants"
|
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1434 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1435 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1436 |
-
#: app/features/popup/event.php:
|
1437 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1438 |
-
#: app/libraries/main.php:
|
1439 |
-
#: app/skins/single.php:
|
1440 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1441 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1442 |
#: app/skins/single/modern.php:113
|
@@ -1478,7 +1478,7 @@ msgstr "Dupliquer"
|
|
1478 |
|
1479 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1480 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1481 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1482 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1483 |
msgid "ID"
|
1484 |
msgstr "ID"
|
@@ -1500,7 +1500,7 @@ msgstr "%s mail"
|
|
1500 |
|
1501 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1502 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1503 |
-
#: app/libraries/main.php:
|
1504 |
msgid "Ticket"
|
1505 |
msgstr "Billets"
|
1506 |
|
@@ -1700,7 +1700,7 @@ msgid "eg. yourname@gmail.com"
|
|
1700 |
msgstr "votre@email.fr"
|
1701 |
|
1702 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1703 |
-
#: app/features/popup/event.php:
|
1704 |
msgid "eg. John Smith"
|
1705 |
msgstr "ex : Surnom"
|
1706 |
|
@@ -1725,8 +1725,8 @@ msgstr "Supprimer l'image"
|
|
1725 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1726 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1727 |
#: app/features/mec/meta_boxes/filter.php:72
|
1728 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1729 |
-
#: app/skins/single.php:
|
1730 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1731 |
#: app/skins/single/modern.php:249
|
1732 |
msgid "Labels"
|
@@ -2521,7 +2521,7 @@ msgid "Featured"
|
|
2521 |
msgstr "En avant"
|
2522 |
|
2523 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2524 |
-
#: app/libraries/main.php:
|
2525 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2526 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2527 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2539,30 +2539,30 @@ msgstr "Annulé"
|
|
2539 |
msgid "You can show featured and canceled events by a different style!"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2543 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2544 |
-
#: app/modules/booking/steps/tickets.php:
|
2545 |
msgid "Count"
|
2546 |
msgstr "Apparition"
|
2547 |
|
2548 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2549 |
#: app/features/organizers.php:207
|
2550 |
msgid "Slug"
|
2551 |
msgstr "Identifiant de la catégorie."
|
2552 |
|
2553 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2554 |
#, php-format
|
2555 |
msgid "Event %s"
|
2556 |
msgstr "%s événement"
|
2557 |
|
2558 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2559 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2560 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2561 |
msgid "Locations"
|
2562 |
msgstr "Lieux"
|
2563 |
|
2564 |
-
#: app/features/locations.php:
|
2565 |
-
#: app/features/locations.php:
|
2566 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2567 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2568 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2577,95 +2577,95 @@ msgstr "Lieux"
|
|
2577 |
msgid "Address"
|
2578 |
msgstr "Adresse"
|
2579 |
|
2580 |
-
#: app/features/locations.php:
|
2581 |
msgid "Enter the location address"
|
2582 |
msgstr "Entrez l'adresse du Lieu"
|
2583 |
|
2584 |
-
#: app/features/locations.php:
|
2585 |
-
#: app/features/locations.php:
|
2586 |
msgid "Latitude"
|
2587 |
msgstr "Latitude"
|
2588 |
|
2589 |
-
#: app/features/locations.php:
|
2590 |
msgid "Geo latitude (Optional)"
|
2591 |
msgstr "Geo latitude (Facultatif)"
|
2592 |
|
2593 |
-
#: app/features/locations.php:
|
2594 |
-
#: app/features/locations.php:
|
2595 |
msgid "Longitude"
|
2596 |
msgstr "Longitude"
|
2597 |
|
2598 |
-
#: app/features/locations.php:
|
2599 |
msgid "Geo longitude (Optional)"
|
2600 |
msgstr "longitude Geo (Facultatif)"
|
2601 |
|
2602 |
-
#: app/features/locations.php:
|
2603 |
-
#: app/features/locations.php:
|
2604 |
#, fuzzy
|
2605 |
#| msgid "Locations"
|
2606 |
msgid "Location Website"
|
2607 |
msgstr "Lieux"
|
2608 |
|
2609 |
-
#: app/features/locations.php:
|
2610 |
#, fuzzy
|
2611 |
#| msgid "Geo latitude (Optional)"
|
2612 |
msgid "Location Website (Optional)"
|
2613 |
msgstr "Geo latitude (Facultatif)"
|
2614 |
|
2615 |
-
#: app/features/locations.php:
|
2616 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2617 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2618 |
msgid "Thumbnail"
|
2619 |
msgstr "Miniature"
|
2620 |
|
2621 |
-
#: app/features/locations.php:
|
2622 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2623 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2624 |
msgid "Upload/Add image"
|
2625 |
msgstr "Mettre en ligne une image"
|
2626 |
|
2627 |
-
#: app/features/locations.php:
|
2628 |
-
#: app/features/locations.php:
|
2629 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2630 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2631 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2632 |
msgid "Remove image"
|
2633 |
msgstr "Supprimer l'image"
|
2634 |
|
2635 |
-
#: app/features/locations.php:
|
2636 |
msgid "Hide location"
|
2637 |
msgstr "Cacher le lieu"
|
2638 |
|
2639 |
-
#: app/features/locations.php:
|
2640 |
msgid "Insert a new location"
|
2641 |
msgstr "Ajouter un nouveau lieu"
|
2642 |
|
2643 |
-
#: app/features/locations.php:
|
2644 |
msgid "Choose one of saved locations or insert new one below."
|
2645 |
msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
|
2646 |
|
2647 |
-
#: app/features/locations.php:
|
2648 |
msgid "Location Name"
|
2649 |
msgstr "Nom du Lieu"
|
2650 |
|
2651 |
-
#: app/features/locations.php:
|
2652 |
msgid "eg. City Hall"
|
2653 |
msgstr "Ex : La Source"
|
2654 |
|
2655 |
-
#: app/features/locations.php:
|
2656 |
-
#: app/features/popup/event.php:
|
2657 |
msgid "Event Location"
|
2658 |
msgstr "Lieu de l'événement"
|
2659 |
|
2660 |
-
#: app/features/locations.php:
|
2661 |
msgid "eg. City hall, Manhattan, New York"
|
2662 |
msgstr "Ex : Grenoble (38)"
|
2663 |
|
2664 |
-
#: app/features/locations.php:
|
2665 |
msgid "Latitude/Longitude"
|
2666 |
msgstr "Latitude/Longitude"
|
2667 |
|
2668 |
-
#: app/features/locations.php:
|
2669 |
msgid ""
|
2670 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2671 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2674,24 +2674,24 @@ msgid ""
|
|
2674 |
"the location on the map to find lat long coordinates."
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: app/features/locations.php:
|
2678 |
msgid "Get Latitude and Longitude"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: app/features/locations.php:
|
2682 |
-
#: app/features/popup/event.php:
|
2683 |
msgid "Choose image"
|
2684 |
msgstr "Choisir une image"
|
2685 |
|
2686 |
-
#: app/features/locations.php:
|
2687 |
msgid "Don't show map in single event page"
|
2688 |
msgstr "Ne pas afficher de carte pour cet événement"
|
2689 |
|
2690 |
-
#: app/features/locations.php:
|
2691 |
msgid "Other Locations"
|
2692 |
msgstr "Autres lieux"
|
2693 |
|
2694 |
-
#: app/features/locations.php:
|
2695 |
msgid ""
|
2696 |
"You can select extra locations in addition to main location if you like."
|
2697 |
msgstr ""
|
@@ -2768,7 +2768,7 @@ msgstr "Aide"
|
|
2768 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2769 |
#: app/features/mec/meta_boxes/filter.php:71
|
2770 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2771 |
-
#: app/libraries/main.php:
|
2772 |
msgid "Organizers"
|
2773 |
msgstr "Organisateurs"
|
2774 |
|
@@ -2803,7 +2803,7 @@ msgstr "Reporter"
|
|
2803 |
msgid "MEC - Go Pro"
|
2804 |
msgstr "MEC - Rapports"
|
2805 |
|
2806 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2807 |
#: app/features/mec/go-pro.php:9
|
2808 |
msgid "Go Pro"
|
2809 |
msgstr ""
|
@@ -2862,75 +2862,75 @@ msgstr "Page séparé"
|
|
2862 |
msgid "Modal Popup"
|
2863 |
msgstr "Pop-up"
|
2864 |
|
2865 |
-
#: app/features/mec.php:
|
2866 |
msgid "Total Bookings"
|
2867 |
msgstr "Total de réservation"
|
2868 |
|
2869 |
-
#: app/features/mec.php:
|
2870 |
#, fuzzy
|
2871 |
#| msgid "Modern Events Calendar"
|
2872 |
msgid "Modern Events Calendar (Lite)"
|
2873 |
msgstr "Modern Events Calendar"
|
2874 |
|
2875 |
-
#: app/features/mec.php:
|
2876 |
#: app/features/mec/settings.php:428
|
2877 |
msgid "Upcoming Events"
|
2878 |
msgstr "Prochains évenements"
|
2879 |
|
2880 |
-
#: app/features/mec.php:
|
2881 |
#, fuzzy
|
2882 |
#| msgid "Update %s"
|
2883 |
msgid "News & Updates"
|
2884 |
msgstr "Mettre à jour %s"
|
2885 |
|
2886 |
-
#: app/features/mec.php:
|
2887 |
msgid "Blog"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: app/features/mec.php:
|
2891 |
msgid "Help"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: app/features/mec.php:
|
2895 |
msgid "This Month"
|
2896 |
msgstr "Ce mois"
|
2897 |
|
2898 |
-
#: app/features/mec.php:
|
2899 |
msgid "Last Month"
|
2900 |
msgstr "Le mois dernier"
|
2901 |
|
2902 |
-
#: app/features/mec.php:
|
2903 |
msgid "This Year"
|
2904 |
msgstr "Cette année"
|
2905 |
|
2906 |
-
#: app/features/mec.php:
|
2907 |
msgid "Last Year"
|
2908 |
msgstr "L'année dernière"
|
2909 |
|
2910 |
-
#: app/features/mec.php:
|
2911 |
msgid "Bar"
|
2912 |
msgstr "Barre"
|
2913 |
|
2914 |
-
#: app/features/mec.php:
|
2915 |
msgid "Line"
|
2916 |
msgstr "Ligne"
|
2917 |
|
2918 |
-
#: app/features/mec.php:
|
2919 |
msgid "Filter"
|
2920 |
msgstr "Filtre"
|
2921 |
|
2922 |
-
#: app/features/mec.php:
|
2923 |
#, php-format
|
2924 |
msgid "Total Sells (%s)"
|
2925 |
msgstr "Ventes totales (%s)"
|
2926 |
|
2927 |
-
#: app/features/mec.php:
|
2928 |
#, fuzzy
|
2929 |
#| msgid "Modern Events Calendar"
|
2930 |
msgid "Print Calendar"
|
2931 |
msgstr "Modern Events Calendar"
|
2932 |
|
2933 |
-
#: app/features/mec.php:
|
2934 |
#, fuzzy
|
2935 |
#| msgid "Multiple Day Events"
|
2936 |
msgid "Display Events"
|
@@ -3321,7 +3321,7 @@ msgstr ""
|
|
3321 |
#: app/features/mec/notifications.php:923
|
3322 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3323 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3324 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3325 |
msgid "Verified"
|
3326 |
msgstr "Vérifié"
|
3327 |
|
@@ -4510,8 +4510,8 @@ msgstr "Afficher le champ de recherche"
|
|
4510 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4511 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4512 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4513 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4514 |
-
#: app/libraries/skins.php:
|
4515 |
msgid "Speaker"
|
4516 |
msgstr ""
|
4517 |
|
@@ -4527,7 +4527,7 @@ msgstr ""
|
|
4527 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4528 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4529 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4530 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4531 |
msgid "Tag"
|
4532 |
msgstr "Étiquettes"
|
4533 |
|
@@ -5313,7 +5313,7 @@ msgstr ""
|
|
5313 |
"reçue."
|
5314 |
|
5315 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5316 |
-
#: app/libraries/notifications.php:
|
5317 |
msgid "Booking Reminder"
|
5318 |
msgstr "Rappel d’inscription"
|
5319 |
|
@@ -5344,7 +5344,7 @@ msgstr "Jour(s)"
|
|
5344 |
msgid "Please, insert comma to separate reminder days."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5348 |
#: app/libraries/main.php:584
|
5349 |
msgid "New Event"
|
5350 |
msgstr "Nouvel événement"
|
@@ -5557,7 +5557,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5557 |
msgstr ""
|
5558 |
|
5559 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5560 |
-
#: app/libraries/main.php:
|
5561 |
msgid "Weekdays"
|
5562 |
msgstr "Jours de la Semaine"
|
5563 |
|
@@ -6311,7 +6311,7 @@ msgstr ""
|
|
6311 |
"la page d'un événement"
|
6312 |
|
6313 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6314 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
6315 |
msgid "Related Events"
|
6316 |
msgstr "Evénement à la une"
|
6317 |
|
@@ -6942,7 +6942,7 @@ msgid "Insert organizer email address."
|
|
6942 |
msgstr "Ajouter l'email de l'organisateur."
|
6943 |
|
6944 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
6945 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
6946 |
msgid "Link to organizer page"
|
6947 |
msgstr "Lien vers la page de l'organisateur"
|
6948 |
|
@@ -6961,40 +6961,40 @@ msgstr "Informations de contact"
|
|
6961 |
msgid "Event Main %s"
|
6962 |
msgstr "Événement principal %s"
|
6963 |
|
6964 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
6965 |
msgid "Hide organizer"
|
6966 |
msgstr "Ne pas afficher l'organisateur"
|
6967 |
|
6968 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
6969 |
msgid "Insert a new organizer"
|
6970 |
msgstr "Ajouter un nouvel organisateur"
|
6971 |
|
6972 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
6973 |
msgid "Choose one of saved organizers or insert new one below."
|
6974 |
msgstr "Choisir un organisateur existant ou en ajouter un nouveau."
|
6975 |
|
6976 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
6977 |
msgid "Phone number."
|
6978 |
msgstr "Numéro de téléphone."
|
6979 |
|
6980 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
6981 |
msgid "eg. +1 (234) 5678"
|
6982 |
msgstr "ex : +33 (0)4 76 36 55 76"
|
6983 |
|
6984 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
6985 |
msgid "Email address."
|
6986 |
msgstr "Adresse e-mail."
|
6987 |
|
6988 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
6989 |
msgid "eg. john@smith.com"
|
6990 |
msgstr "ex : votre@surnom.com"
|
6991 |
|
6992 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
6993 |
msgid "eg. https://webnus.net"
|
6994 |
msgstr "eg. https://webnus.net"
|
6995 |
|
6996 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
6997 |
-
#: app/skins/single.php:
|
6998 |
msgid "Other Organizers"
|
6999 |
msgstr "Autres organisateurs"
|
7000 |
|
@@ -7021,67 +7021,57 @@ msgstr "Note sur l'événement"
|
|
7021 |
msgid "Event name is required"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
-
#: app/features/popup/event.php:
|
7025 |
-
#: app/libraries/main.php:6643
|
7026 |
-
msgid "AM"
|
7027 |
-
msgstr "du matin"
|
7028 |
-
|
7029 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
7030 |
-
#: app/libraries/main.php:6644
|
7031 |
-
msgid "PM"
|
7032 |
-
msgstr "de l'après midi"
|
7033 |
-
|
7034 |
-
#: app/features/popup/event.php:256
|
7035 |
#, fuzzy
|
7036 |
#| msgid "Choose one of saved locations or insert new one below."
|
7037 |
msgid "Choose one of saved locations or insert new one."
|
7038 |
msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
|
7039 |
|
7040 |
-
#: app/features/popup/event.php:
|
7041 |
#, fuzzy
|
7042 |
#| msgid "Add New Location"
|
7043 |
msgid "Add Location"
|
7044 |
msgstr "Ajouter un nouveau Lieu"
|
7045 |
|
7046 |
-
#: app/features/popup/event.php:
|
7047 |
#, fuzzy
|
7048 |
#| msgid "Add New Organizer"
|
7049 |
msgid "Add Organizer"
|
7050 |
msgstr "Ajouter un nouvel organisateur"
|
7051 |
|
7052 |
-
#: app/features/popup/event.php:
|
7053 |
#, fuzzy
|
7054 |
#| msgid "Categories"
|
7055 |
msgid "All Categories"
|
7056 |
msgstr "Catégories"
|
7057 |
|
7058 |
-
#: app/features/popup/event.php:
|
7059 |
msgid "Most Used"
|
7060 |
msgstr ""
|
7061 |
|
7062 |
-
#: app/features/popup/event.php:
|
7063 |
#, fuzzy
|
7064 |
#| msgid "Add New Label"
|
7065 |
msgid "Add New Category"
|
7066 |
msgstr "Ajouter une étquette"
|
7067 |
|
7068 |
-
#: app/features/popup/event.php:
|
7069 |
#, fuzzy
|
7070 |
#| msgid "Featured Image"
|
7071 |
msgid "Set Featured Image"
|
7072 |
msgstr "Image Principale"
|
7073 |
|
7074 |
-
#: app/features/popup/event.php:
|
7075 |
msgid "Your Event Has Been Created."
|
7076 |
msgstr ""
|
7077 |
|
7078 |
-
#: app/features/popup/event.php:
|
7079 |
msgid "Prev"
|
7080 |
msgstr ""
|
7081 |
|
7082 |
-
#: app/features/popup/event.php:
|
7083 |
#: app/modules/booking/steps/form.php:188
|
7084 |
-
#: app/modules/booking/steps/tickets.php:
|
7085 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7086 |
msgid "Next"
|
7087 |
msgstr "Prochain"
|
@@ -7322,11 +7312,11 @@ msgstr "Recherche"
|
|
7322 |
msgid "No search result."
|
7323 |
msgstr ""
|
7324 |
|
7325 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7326 |
-
#: app/libraries/notifications.php:
|
7327 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7328 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7329 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
7330 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7331 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7332 |
#, fuzzy
|
@@ -7402,12 +7392,12 @@ msgstr ""
|
|
7402 |
msgid "%s Price"
|
7403 |
msgstr ""
|
7404 |
|
7405 |
-
#: app/libraries/book.php:
|
7406 |
msgid "Discount"
|
7407 |
msgstr "Réduction"
|
7408 |
|
7409 |
-
#: app/libraries/book.php:
|
7410 |
-
#: app/modules/booking/default.php:
|
7411 |
msgid "Download Invoice"
|
7412 |
msgstr ""
|
7413 |
|
@@ -7430,51 +7420,51 @@ msgctxt "plugin link"
|
|
7430 |
msgid "Upgrade"
|
7431 |
msgstr ""
|
7432 |
|
7433 |
-
#: app/libraries/factory.php:
|
7434 |
msgid "day"
|
7435 |
msgstr "jour"
|
7436 |
|
7437 |
-
#: app/libraries/factory.php:
|
7438 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7439 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7440 |
msgid "days"
|
7441 |
msgstr "jours"
|
7442 |
|
7443 |
-
#: app/libraries/factory.php:
|
7444 |
msgid "hour"
|
7445 |
msgstr "heure"
|
7446 |
|
7447 |
-
#: app/libraries/factory.php:
|
7448 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7449 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7450 |
msgid "hours"
|
7451 |
msgstr "heures"
|
7452 |
|
7453 |
-
#: app/libraries/factory.php:
|
7454 |
msgid "minute"
|
7455 |
msgstr "minute"
|
7456 |
|
7457 |
-
#: app/libraries/factory.php:
|
7458 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7459 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7460 |
msgid "minutes"
|
7461 |
msgstr "minutes"
|
7462 |
|
7463 |
-
#: app/libraries/factory.php:
|
7464 |
msgid "second"
|
7465 |
msgstr "seconde"
|
7466 |
|
7467 |
-
#: app/libraries/factory.php:
|
7468 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7469 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7470 |
msgid "seconds"
|
7471 |
msgstr "secondes"
|
7472 |
|
7473 |
-
#: app/libraries/factory.php:
|
7474 |
msgid "MEC Single Sidebar"
|
7475 |
msgstr "Barre latérale M.E.C."
|
7476 |
|
7477 |
-
#: app/libraries/factory.php:
|
7478 |
msgid "Custom sidebar for single and modal page of MEC."
|
7479 |
msgstr ""
|
7480 |
"Barre latérale personnalisée pour les pages d'événement et les pop-ups "
|
@@ -7538,31 +7528,31 @@ msgstr "Vue sur Slider"
|
|
7538 |
msgid "Timeline View"
|
7539 |
msgstr "Vue chronologique"
|
7540 |
|
7541 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7542 |
msgid "SU"
|
7543 |
msgstr "DIM."
|
7544 |
|
7545 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7546 |
msgid "MO"
|
7547 |
msgstr "LUN."
|
7548 |
|
7549 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7550 |
msgid "TU"
|
7551 |
msgstr "MAR."
|
7552 |
|
7553 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7554 |
msgid "WE"
|
7555 |
msgstr "MER."
|
7556 |
|
7557 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7558 |
msgid "TH"
|
7559 |
msgstr "JEU."
|
7560 |
|
7561 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7562 |
msgid "FR"
|
7563 |
msgstr "VEN."
|
7564 |
|
7565 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7566 |
msgid "SA"
|
7567 |
msgstr "SAM."
|
7568 |
|
@@ -7871,109 +7861,109 @@ msgstr "Insérez une étiquette pour cette option"
|
|
7871 |
msgid "Free"
|
7872 |
msgstr "Gratuite"
|
7873 |
|
7874 |
-
#: app/libraries/main.php:
|
7875 |
msgid "M.E. Calender"
|
7876 |
msgstr "M.E Calendrier"
|
7877 |
|
7878 |
-
#: app/libraries/main.php:
|
7879 |
#, php-format
|
7880 |
msgid "Copy of %s"
|
7881 |
msgstr "Copie de %s"
|
7882 |
|
7883 |
-
#: app/libraries/main.php:
|
7884 |
msgid "Booked an event."
|
7885 |
msgstr "Réserver un événement"
|
7886 |
|
7887 |
-
#: app/libraries/main.php:
|
7888 |
#, php-format
|
7889 |
msgid "%s booked %s event."
|
7890 |
msgstr "%s réservé %s événement"
|
7891 |
|
7892 |
-
#: app/libraries/main.php:
|
7893 |
msgid "Taxonomies"
|
7894 |
msgstr "Taxonomies"
|
7895 |
|
7896 |
-
#: app/libraries/main.php:
|
7897 |
msgid "Category Plural Label"
|
7898 |
msgstr "Catégorie au pluriel"
|
7899 |
|
7900 |
-
#: app/libraries/main.php:
|
7901 |
msgid "Category Singular Label"
|
7902 |
msgstr "Catégorie au singulier"
|
7903 |
|
7904 |
-
#: app/libraries/main.php:
|
7905 |
msgid "Label Plural Label"
|
7906 |
msgstr "Étiquettes au pluriel"
|
7907 |
|
7908 |
-
#: app/libraries/main.php:
|
7909 |
msgid "Label Singular Label"
|
7910 |
msgstr "Étiquettes au singulier"
|
7911 |
|
7912 |
-
#: app/libraries/main.php:
|
7913 |
msgid "label"
|
7914 |
msgstr "texte"
|
7915 |
|
7916 |
-
#: app/libraries/main.php:
|
7917 |
msgid "Location Plural Label"
|
7918 |
msgstr "Lieu au pluriel"
|
7919 |
|
7920 |
-
#: app/libraries/main.php:
|
7921 |
msgid "Location Singular Label"
|
7922 |
msgstr "Lieu au singulier"
|
7923 |
|
7924 |
-
#: app/libraries/main.php:
|
7925 |
msgid "Organizer Plural Label"
|
7926 |
msgstr "Organisateur au pluriel"
|
7927 |
|
7928 |
-
#: app/libraries/main.php:
|
7929 |
msgid "Organizer Singular Label"
|
7930 |
msgstr "Organisateur au singulier"
|
7931 |
|
7932 |
-
#: app/libraries/main.php:
|
7933 |
msgid "Speaker Plural Label"
|
7934 |
msgstr "Étiquettes au pluriel"
|
7935 |
|
7936 |
-
#: app/libraries/main.php:
|
7937 |
msgid "Speaker Singular Label"
|
7938 |
msgstr "Étiquettes au singulier"
|
7939 |
|
7940 |
-
#: app/libraries/main.php:
|
7941 |
msgid "Sunday abbreviation"
|
7942 |
msgstr "Abréviation de Dimanche"
|
7943 |
|
7944 |
-
#: app/libraries/main.php:
|
7945 |
msgid "Monday abbreviation"
|
7946 |
msgstr "Abréviation de Lundi"
|
7947 |
|
7948 |
-
#: app/libraries/main.php:
|
7949 |
msgid "Tuesday abbreviation"
|
7950 |
msgstr "Abréviation de Mardi"
|
7951 |
|
7952 |
-
#: app/libraries/main.php:
|
7953 |
msgid "Wednesday abbreviation"
|
7954 |
msgstr "Abréviation de Mercredi"
|
7955 |
|
7956 |
-
#: app/libraries/main.php:
|
7957 |
msgid "Thursday abbreviation"
|
7958 |
msgstr "Abréviation de Jeudi"
|
7959 |
|
7960 |
-
#: app/libraries/main.php:
|
7961 |
msgid "Friday abbreviation"
|
7962 |
msgstr "Abréviation de Vendredi"
|
7963 |
|
7964 |
-
#: app/libraries/main.php:
|
7965 |
msgid "Saturday abbreviation"
|
7966 |
msgstr "Abréviation de Samedi"
|
7967 |
|
7968 |
-
#: app/libraries/main.php:
|
7969 |
msgid "Others"
|
7970 |
msgstr "Autres"
|
7971 |
|
7972 |
-
#: app/libraries/main.php:
|
7973 |
msgid "Booking Success Message"
|
7974 |
msgstr "Message de succès de réservation"
|
7975 |
|
7976 |
-
#: app/libraries/main.php:
|
7977 |
#, fuzzy
|
7978 |
#| msgid ""
|
7979 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -7985,17 +7975,17 @@ msgstr ""
|
|
7985 |
"Merci pour votre réservation. Vos billets sont réservés, cependant une "
|
7986 |
"vérification peut être nécessaires, contrôlez votre boite mail."
|
7987 |
|
7988 |
-
#: app/libraries/main.php:
|
7989 |
msgid "Register Button"
|
7990 |
msgstr "Boutons d'inscription"
|
7991 |
|
7992 |
-
#: app/libraries/main.php:
|
7993 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
7994 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
7995 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
7996 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
7997 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
7998 |
-
#: app/skins/single.php:
|
7999 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8000 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8001 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -8007,157 +7997,165 @@ msgstr "Boutons d'inscription"
|
|
8007 |
msgid "REGISTER"
|
8008 |
msgstr "S'INSCRIRE"
|
8009 |
|
8010 |
-
#: app/libraries/main.php:
|
8011 |
msgid "View Detail Button"
|
8012 |
msgstr "Afficher le boutons de détail"
|
8013 |
|
8014 |
-
#: app/libraries/main.php:
|
8015 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8016 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8017 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8018 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8019 |
-
#: app/skins/single.php:
|
8020 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8021 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8022 |
msgid "View Detail"
|
8023 |
msgstr "En savoir plus"
|
8024 |
|
8025 |
-
#: app/libraries/main.php:
|
8026 |
msgid "Event Detail Button"
|
8027 |
msgstr "Bouton de détail de l'événement"
|
8028 |
|
8029 |
-
#: app/libraries/main.php:
|
8030 |
msgid "Event Detail"
|
8031 |
msgstr "Détails"
|
8032 |
|
8033 |
-
#: app/libraries/main.php:
|
8034 |
msgid "More Info Link"
|
8035 |
msgstr "Plus de lien d'info"
|
8036 |
|
8037 |
-
#: app/libraries/main.php:
|
8038 |
msgid "Ticket (Singular)"
|
8039 |
msgstr ""
|
8040 |
|
8041 |
-
#: app/libraries/main.php:
|
8042 |
msgid "Tickets (Plural)"
|
8043 |
msgstr ""
|
8044 |
|
8045 |
-
#: app/libraries/main.php:
|
8046 |
msgid "EventON"
|
8047 |
msgstr ""
|
8048 |
|
8049 |
-
#: app/libraries/main.php:
|
8050 |
msgid "The Events Calendar"
|
8051 |
msgstr ""
|
8052 |
|
8053 |
-
#: app/libraries/main.php:
|
8054 |
msgid "Events Schedule WP Plugin"
|
8055 |
msgstr ""
|
8056 |
|
8057 |
-
#: app/libraries/main.php:
|
8058 |
msgid "Calendarize It"
|
8059 |
msgstr ""
|
8060 |
|
8061 |
-
#: app/libraries/main.php:
|
8062 |
msgid "Event Espresso"
|
8063 |
msgstr "Labels d'événement"
|
8064 |
|
8065 |
-
#: app/libraries/main.php:
|
8066 |
msgid "Events Manager (Recurring)"
|
8067 |
msgstr "Événement récurrent"
|
8068 |
|
8069 |
-
#: app/libraries/main.php:
|
8070 |
msgid "Events Manager (Single)"
|
8071 |
msgstr "Modern Events Calendar"
|
8072 |
|
8073 |
-
#: app/libraries/main.php:
|
8074 |
msgid "Confirmed"
|
8075 |
msgstr "Confirmé"
|
8076 |
|
8077 |
-
#: app/libraries/main.php:
|
8078 |
msgid "Rejected"
|
8079 |
msgstr "Rejeté"
|
8080 |
|
8081 |
-
#: app/libraries/main.php:
|
8082 |
msgid "Pending"
|
8083 |
msgstr "En attente"
|
8084 |
|
8085 |
-
#: app/libraries/main.php:
|
8086 |
msgid "Waiting"
|
8087 |
msgstr "En attente"
|
8088 |
|
8089 |
-
#: app/libraries/main.php:
|
8090 |
#, fuzzy
|
8091 |
#| msgid "Sunday"
|
8092 |
msgid "Sun"
|
8093 |
msgstr "Dimanche"
|
8094 |
|
8095 |
-
#: app/libraries/main.php:
|
8096 |
#, fuzzy
|
8097 |
#| msgid "Month"
|
8098 |
msgid "Mon"
|
8099 |
msgstr "Mois"
|
8100 |
|
8101 |
-
#: app/libraries/main.php:
|
8102 |
#, fuzzy
|
8103 |
#| msgid "Tel"
|
8104 |
msgid "Tue"
|
8105 |
msgstr "Téléphone"
|
8106 |
|
8107 |
-
#: app/libraries/main.php:
|
8108 |
msgid "Wed"
|
8109 |
msgstr ""
|
8110 |
|
8111 |
-
#: app/libraries/main.php:
|
8112 |
msgid "Thu"
|
8113 |
msgstr ""
|
8114 |
|
8115 |
-
#: app/libraries/main.php:
|
8116 |
#, fuzzy
|
8117 |
#| msgid "Friday"
|
8118 |
msgid "Fri"
|
8119 |
msgstr "Vendredi"
|
8120 |
|
8121 |
-
#: app/libraries/main.php:
|
8122 |
#, fuzzy
|
8123 |
#| msgid "Start"
|
8124 |
msgid "Sat"
|
8125 |
msgstr "Démarrer"
|
8126 |
|
8127 |
-
#: app/libraries/main.php:
|
8128 |
#: app/libraries/render.php:432
|
8129 |
msgid "Skin controller does not exist."
|
8130 |
msgstr "Le contrôleur de Skin n'existe pas."
|
8131 |
|
8132 |
-
#: app/libraries/main.php:
|
8133 |
msgid "Sold Out"
|
8134 |
msgstr "Épuisé!"
|
8135 |
|
8136 |
-
#: app/libraries/main.php:
|
8137 |
msgid "Last Few Tickets"
|
8138 |
msgstr "Bientôt complet"
|
8139 |
|
8140 |
-
#: app/libraries/main.php:
|
8141 |
#, fuzzy
|
8142 |
#| msgid "Hour"
|
8143 |
msgid "Hours"
|
8144 |
msgstr "Heure(s)"
|
8145 |
|
8146 |
-
#: app/libraries/main.php:
|
8147 |
#, fuzzy
|
8148 |
#| msgid "minutes"
|
8149 |
msgid "Minutes"
|
8150 |
msgstr "minutes"
|
8151 |
|
8152 |
-
#: app/libraries/main.php:
|
8153 |
msgid "AM / PM"
|
8154 |
msgstr ""
|
8155 |
|
8156 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8157 |
msgid "Ongoing..."
|
8158 |
msgstr ""
|
8159 |
|
8160 |
-
#: app/libraries/main.php:
|
8161 |
#, fuzzy
|
8162 |
#| msgid "Expired Events"
|
8163 |
msgid "Expired!"
|
@@ -8167,74 +8165,82 @@ msgstr "Evénements éxpirés"
|
|
8167 |
msgid "Please verify your email."
|
8168 |
msgstr "Merci de vérifier vos e-mails."
|
8169 |
|
8170 |
-
#: app/libraries/notifications.php:
|
8171 |
msgid "Your booking is received."
|
8172 |
msgstr "Votre réservation est reçue."
|
8173 |
|
8174 |
-
#: app/libraries/notifications.php:
|
8175 |
msgid "Your booking is confirmed."
|
8176 |
msgstr "Votre réservation est confirmée."
|
8177 |
|
8178 |
-
#: app/libraries/notifications.php:
|
8179 |
msgid "booking canceled."
|
8180 |
msgstr "réservation annulée"
|
8181 |
|
8182 |
-
#: app/libraries/notifications.php:
|
8183 |
msgid "A new booking is received."
|
8184 |
msgstr "Une nouvelle réservation est enregistrée."
|
8185 |
|
8186 |
-
#: app/libraries/notifications.php:
|
8187 |
msgid "A new event is added."
|
8188 |
msgstr "Un nouvel événement est ajouté."
|
8189 |
|
8190 |
-
#: app/libraries/notifications.php:
|
8191 |
msgid "Your event is published."
|
8192 |
msgstr "Événement Publié."
|
8193 |
|
8194 |
-
#: app/libraries/notifications.php:
|
8195 |
#, php-format
|
8196 |
msgid "%s to %s"
|
8197 |
msgstr "%s en %s"
|
8198 |
|
8199 |
-
#: app/libraries/notifications.php:
|
8200 |
-
#: app/libraries/notifications.php:
|
8201 |
msgid "to"
|
8202 |
msgstr ""
|
8203 |
|
8204 |
-
#: app/libraries/notifications.php:
|
8205 |
msgid "+ Add to Google Calendar"
|
8206 |
msgstr "+ Ajouter à mon Agenda Google"
|
8207 |
|
8208 |
-
#: app/libraries/notifications.php:
|
8209 |
msgid "+ iCal export"
|
8210 |
msgstr "+ Exporter vers iCal"
|
8211 |
|
8212 |
-
#: app/libraries/notifications.php:
|
8213 |
msgid "Yes"
|
8214 |
msgstr "Oui"
|
8215 |
|
8216 |
-
#: app/libraries/notifications.php:
|
8217 |
msgid "No"
|
8218 |
msgstr "Non"
|
8219 |
|
8220 |
-
#: app/libraries/skins.php:
|
8221 |
msgid "Select"
|
8222 |
msgstr "Tout sélectionner"
|
8223 |
|
8224 |
-
#: app/modules/attendees-list/details.php:
|
8225 |
msgid "Event Attendees"
|
8226 |
msgstr "Participants à l'Événement"
|
8227 |
|
8228 |
-
#: app/modules/attendees-list/details.php:
|
8229 |
msgid "No attendee found! Be the first one to book!"
|
8230 |
msgstr ""
|
8231 |
"Il n'y a pas encore de participants inscrits depuis le site. Soyez le "
|
8232 |
"premier !"
|
8233 |
|
8234 |
-
#: app/modules/attendees-list/details.php:
|
8235 |
msgid "tickets"
|
8236 |
msgstr "billets"
|
8237 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8238 |
#: app/modules/booking/steps/checkout.php:37
|
8239 |
msgid "Checkout"
|
8240 |
msgstr "Commander"
|
@@ -8284,27 +8290,27 @@ msgstr "Formulaire de réservation"
|
|
8284 |
msgid "Fill other attendees information like the first form."
|
8285 |
msgstr "Utiliser ces données pour tous les inscrits."
|
8286 |
|
8287 |
-
#: app/modules/booking/steps/tickets.php:
|
8288 |
msgid "Book Event"
|
8289 |
msgstr "Réservez pour cet événement"
|
8290 |
|
8291 |
-
#: app/modules/booking/steps/tickets.php:
|
8292 |
#, fuzzy
|
8293 |
#| msgid "No user selected!"
|
8294 |
msgid "1 Ticket selected."
|
8295 |
msgstr "Aucun utilisateur séléctionné!"
|
8296 |
|
8297 |
-
#: app/modules/booking/steps/tickets.php:
|
8298 |
#, php-format
|
8299 |
msgid "Available %s: <span>%s</span>"
|
8300 |
msgstr "%s disponibles: <span>%s</span>"
|
8301 |
|
8302 |
-
#: app/modules/booking/steps/tickets.php:
|
8303 |
#, php-format
|
8304 |
msgid "The %s ticket sales has stopped!"
|
8305 |
msgstr ""
|
8306 |
|
8307 |
-
#: app/modules/booking/steps/tickets.php:
|
8308 |
#, php-format
|
8309 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8310 |
msgstr ""
|
@@ -8327,7 +8333,7 @@ msgstr "Entrez votre adresse ..."
|
|
8327 |
msgid "Get Directions"
|
8328 |
msgstr ""
|
8329 |
|
8330 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
8331 |
msgid "Share this event"
|
8332 |
msgstr "Partagez cet événement"
|
8333 |
|
@@ -8382,7 +8388,7 @@ msgstr "Prochain déroulement"
|
|
8382 |
msgid "Go to occurrence page"
|
8383 |
msgstr "Aller à la Page"
|
8384 |
|
8385 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
8386 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8387 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8388 |
msgid "Time"
|
@@ -8516,24 +8522,24 @@ msgstr "Événements pour %s"
|
|
8516 |
msgid "No Events"
|
8517 |
msgstr "Aucun événement"
|
8518 |
|
8519 |
-
#: app/skins/single.php:
|
8520 |
msgid "Home"
|
8521 |
msgstr ""
|
8522 |
|
8523 |
-
#: app/skins/single.php:
|
8524 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8525 |
#: app/skins/single/modern.php:292
|
8526 |
msgid "Sold out!"
|
8527 |
msgstr "Épuisé !"
|
8528 |
|
8529 |
-
#: app/skins/single.php:
|
8530 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8531 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8532 |
#: app/skins/single/modern.php:55
|
8533 |
msgid "Phone"
|
8534 |
msgstr "Téléphone"
|
8535 |
|
8536 |
-
#: app/skins/single.php:
|
8537 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8538 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8539 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -8542,7 +8548,7 @@ msgstr "Téléphone"
|
|
8542 |
msgid "Website"
|
8543 |
msgstr "Site Web"
|
8544 |
|
8545 |
-
#: app/skins/single.php:
|
8546 |
msgid "Speakers:"
|
8547 |
msgstr "Orateurs:"
|
8548 |
|
@@ -9076,9 +9082,6 @@ msgstr ""
|
|
9076 |
#~ msgstr ""
|
9077 |
#~ "Comment écrire par dessus des fichiers de templates du plugin M.E.C. ?"
|
9078 |
|
9079 |
-
#~ msgid "%s tickets"
|
9080 |
-
#~ msgstr "%s billets"
|
9081 |
-
|
9082 |
#, fuzzy
|
9083 |
#~| msgid "Discount is not valid for this event!"
|
9084 |
#~ msgid "Event is not repeating. No dates exist for this event!"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-06-16 16:46+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr "Modern Events Calendar"
|
307 |
msgstr ""
|
308 |
|
309 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
310 |
+
#: app/features/popup/event.php:252
|
311 |
msgid "View Event"
|
312 |
msgstr "Voir l'événement"
|
313 |
|
329 |
#: app/features/mec/meta_boxes/search_form.php:654
|
330 |
#: app/features/mec/meta_boxes/search_form.php:760
|
331 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
332 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
333 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
334 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
335 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
336 |
#: app/skins/single/modern.php:137
|
340 |
#: app/features/events.php:186 app/features/events.php:3193
|
341 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
342 |
#: app/features/mec/meta_boxes/filter.php:69
|
343 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
344 |
msgid "Categories"
|
345 |
msgstr "Catégories"
|
346 |
|
425 |
msgstr "Événement récurrent"
|
426 |
|
427 |
#: app/features/events.php:336 app/features/events.php:1215
|
428 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
429 |
msgid "Hourly Schedule"
|
430 |
msgstr "Programme"
|
431 |
|
455 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
456 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
457 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
458 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
459 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
460 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
461 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
462 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
463 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
464 |
msgid "Organizer"
|
465 |
msgstr "Organisateur"
|
466 |
|
467 |
#: app/features/events.php:340 app/features/events.php:1092
|
468 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
469 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
470 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
471 |
#: app/skins/single/modern.php:234
|
472 |
msgid "Cost"
|
490 |
#: app/features/events.php:3769 app/features/fes.php:223
|
491 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
492 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
493 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
494 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
495 |
msgid "Name"
|
496 |
msgstr "Nom"
|
497 |
|
503 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
504 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
505 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
506 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
507 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
508 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
509 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
510 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
511 |
#: app/skins/single/modern.php:62
|
521 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
522 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
523 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
524 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
525 |
#: app/features/mec/meta_boxes/display_options.php:278
|
526 |
#: app/features/mec/meta_boxes/display_options.php:517
|
527 |
#: app/features/mec/meta_boxes/display_options.php:623
|
545 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
546 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
547 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
548 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
549 |
msgid "End Date"
|
550 |
msgstr "Date de fin"
|
551 |
|
552 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
553 |
+
#: app/features/popup/event.php:109
|
554 |
#, fuzzy
|
555 |
#| msgid "All Day Event"
|
556 |
msgid "All-day Event"
|
592 |
#: app/features/events.php:2151 app/features/events.php:2166
|
593 |
#: app/features/events.php:2196 app/features/events.php:2209
|
594 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
595 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
596 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
597 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
598 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
656 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
657 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
658 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
659 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
660 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
661 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
662 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
663 |
#: app/skins/single/modern.php:160
|
677 |
msgstr "Récurrence"
|
678 |
|
679 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
680 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
681 |
#: app/skins/full_calendar/tpl.php:121
|
682 |
msgid "Daily"
|
683 |
msgstr "Quotidienne"
|
701 |
msgstr "Hebdomadaire"
|
702 |
|
703 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
704 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
705 |
#: app/skins/full_calendar/tpl.php:119
|
706 |
msgid "Monthly"
|
707 |
msgstr "Mensuelle"
|
708 |
|
709 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
710 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
711 |
#: app/skins/full_calendar/tpl.php:118
|
712 |
msgid "Yearly"
|
713 |
msgstr "Annuelle"
|
838 |
#: app/features/events.php:1088 app/features/events.php:3431
|
839 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
840 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
841 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
842 |
#: app/widgets/single.php:103
|
843 |
msgid "Event Cost"
|
844 |
msgstr "Tarif de l'événement"
|
854 |
#: app/features/events.php:1124 app/features/events.php:2330
|
855 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
856 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
857 |
+
#: app/modules/booking/steps/tickets.php:36
|
858 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
859 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
860 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
861 |
msgid "Date"
|
942 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
943 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
944 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
945 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
946 |
#: app/modules/speakers/details.php:18
|
947 |
msgid "Speakers"
|
948 |
msgstr "Orateurs"
|
957 |
msgstr "Liens de l'évenements"
|
958 |
|
959 |
#: app/features/events.php:1408 app/features/events.php:1414
|
960 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
961 |
msgid "Event Link"
|
962 |
msgstr "Lien de l'événement"
|
963 |
|
982 |
msgstr ""
|
983 |
|
984 |
#: app/features/events.php:1424 app/features/events.php:1437
|
985 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
986 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
987 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
988 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
989 |
#: app/widgets/single.php:107
|
1019 |
msgstr "Nombre limite de réservation"
|
1020 |
|
1021 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1022 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
1023 |
+
#: app/modules/booking/steps/tickets.php:64
|
1024 |
msgid "Tickets"
|
1025 |
msgstr "Billets"
|
1026 |
|
1046 |
|
1047 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1048 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1049 |
+
#: app/modules/booking/steps/tickets.php:64
|
1050 |
#: app/skins/available_spot/tpl.php:142
|
1051 |
msgid "Unlimited"
|
1052 |
msgstr "Illimité"
|
1204 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1205 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1206 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1207 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1208 |
msgid "Label"
|
1209 |
msgstr "Label"
|
1210 |
|
1418 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1419 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1420 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1421 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1422 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1423 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1424 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1425 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1433 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1434 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1435 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1436 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1437 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1438 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1439 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1440 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1441 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1442 |
#: app/skins/single/modern.php:113
|
1478 |
|
1479 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1480 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1481 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1482 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1483 |
msgid "ID"
|
1484 |
msgstr "ID"
|
1500 |
|
1501 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1502 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1503 |
+
#: app/libraries/main.php:5666
|
1504 |
msgid "Ticket"
|
1505 |
msgstr "Billets"
|
1506 |
|
1700 |
msgstr "votre@email.fr"
|
1701 |
|
1702 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1703 |
+
#: app/features/popup/event.php:183
|
1704 |
msgid "eg. John Smith"
|
1705 |
msgstr "ex : Surnom"
|
1706 |
|
1725 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1726 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1727 |
#: app/features/mec/meta_boxes/filter.php:72
|
1728 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1729 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1730 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1731 |
#: app/skins/single/modern.php:249
|
1732 |
msgid "Labels"
|
2521 |
msgstr "En avant"
|
2522 |
|
2523 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2524 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2525 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2526 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2527 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2539 |
msgid "You can show featured and canceled events by a different style!"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2543 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2544 |
+
#: app/modules/booking/steps/tickets.php:62
|
2545 |
msgid "Count"
|
2546 |
msgstr "Apparition"
|
2547 |
|
2548 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2549 |
#: app/features/organizers.php:207
|
2550 |
msgid "Slug"
|
2551 |
msgstr "Identifiant de la catégorie."
|
2552 |
|
2553 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2554 |
#, php-format
|
2555 |
msgid "Event %s"
|
2556 |
msgstr "%s événement"
|
2557 |
|
2558 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2559 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2560 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2561 |
msgid "Locations"
|
2562 |
msgstr "Lieux"
|
2563 |
|
2564 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2565 |
+
#: app/features/locations.php:262
|
2566 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2567 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2568 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2577 |
msgid "Address"
|
2578 |
msgstr "Adresse"
|
2579 |
|
2580 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2581 |
msgid "Enter the location address"
|
2582 |
msgstr "Entrez l'adresse du Lieu"
|
2583 |
|
2584 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2585 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2586 |
msgid "Latitude"
|
2587 |
msgstr "Latitude"
|
2588 |
|
2589 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2590 |
msgid "Geo latitude (Optional)"
|
2591 |
msgstr "Geo latitude (Facultatif)"
|
2592 |
|
2593 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2594 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2595 |
msgid "Longitude"
|
2596 |
msgstr "Longitude"
|
2597 |
|
2598 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2599 |
msgid "Geo longitude (Optional)"
|
2600 |
msgstr "longitude Geo (Facultatif)"
|
2601 |
|
2602 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2603 |
+
#: app/features/locations.php:372
|
2604 |
#, fuzzy
|
2605 |
#| msgid "Locations"
|
2606 |
msgid "Location Website"
|
2607 |
msgstr "Lieux"
|
2608 |
|
2609 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2610 |
#, fuzzy
|
2611 |
#| msgid "Geo latitude (Optional)"
|
2612 |
msgid "Location Website (Optional)"
|
2613 |
msgstr "Geo latitude (Facultatif)"
|
2614 |
|
2615 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2616 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2617 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2618 |
msgid "Thumbnail"
|
2619 |
msgstr "Miniature"
|
2620 |
|
2621 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2622 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2623 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2624 |
msgid "Upload/Add image"
|
2625 |
msgstr "Mettre en ligne une image"
|
2626 |
|
2627 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2628 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2629 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2630 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2631 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2632 |
msgid "Remove image"
|
2633 |
msgstr "Supprimer l'image"
|
2634 |
|
2635 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2636 |
msgid "Hide location"
|
2637 |
msgstr "Cacher le lieu"
|
2638 |
|
2639 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2640 |
msgid "Insert a new location"
|
2641 |
msgstr "Ajouter un nouveau lieu"
|
2642 |
|
2643 |
+
#: app/features/locations.php:334
|
2644 |
msgid "Choose one of saved locations or insert new one below."
|
2645 |
msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
|
2646 |
|
2647 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2648 |
msgid "Location Name"
|
2649 |
msgstr "Nom du Lieu"
|
2650 |
|
2651 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2652 |
msgid "eg. City Hall"
|
2653 |
msgstr "Ex : La Source"
|
2654 |
|
2655 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2656 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2657 |
msgid "Event Location"
|
2658 |
msgstr "Lieu de l'événement"
|
2659 |
|
2660 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2661 |
msgid "eg. City hall, Manhattan, New York"
|
2662 |
msgstr "Ex : Grenoble (38)"
|
2663 |
|
2664 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2665 |
msgid "Latitude/Longitude"
|
2666 |
msgstr "Latitude/Longitude"
|
2667 |
|
2668 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2669 |
msgid ""
|
2670 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2671 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2674 |
"the location on the map to find lat long coordinates."
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2678 |
msgid "Get Latitude and Longitude"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2682 |
+
#: app/features/popup/event.php:202
|
2683 |
msgid "Choose image"
|
2684 |
msgstr "Choisir une image"
|
2685 |
|
2686 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2687 |
msgid "Don't show map in single event page"
|
2688 |
msgstr "Ne pas afficher de carte pour cet événement"
|
2689 |
|
2690 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2691 |
msgid "Other Locations"
|
2692 |
msgstr "Autres lieux"
|
2693 |
|
2694 |
+
#: app/features/locations.php:398
|
2695 |
msgid ""
|
2696 |
"You can select extra locations in addition to main location if you like."
|
2697 |
msgstr ""
|
2768 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2769 |
#: app/features/mec/meta_boxes/filter.php:71
|
2770 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2771 |
+
#: app/libraries/main.php:5637
|
2772 |
msgid "Organizers"
|
2773 |
msgstr "Organisateurs"
|
2774 |
|
2803 |
msgid "MEC - Go Pro"
|
2804 |
msgstr "MEC - Rapports"
|
2805 |
|
2806 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2807 |
#: app/features/mec/go-pro.php:9
|
2808 |
msgid "Go Pro"
|
2809 |
msgstr ""
|
2862 |
msgid "Modal Popup"
|
2863 |
msgstr "Pop-up"
|
2864 |
|
2865 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2866 |
msgid "Total Bookings"
|
2867 |
msgstr "Total de réservation"
|
2868 |
|
2869 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2870 |
#, fuzzy
|
2871 |
#| msgid "Modern Events Calendar"
|
2872 |
msgid "Modern Events Calendar (Lite)"
|
2873 |
msgstr "Modern Events Calendar"
|
2874 |
|
2875 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2876 |
#: app/features/mec/settings.php:428
|
2877 |
msgid "Upcoming Events"
|
2878 |
msgstr "Prochains évenements"
|
2879 |
|
2880 |
+
#: app/features/mec.php:1201
|
2881 |
#, fuzzy
|
2882 |
#| msgid "Update %s"
|
2883 |
msgid "News & Updates"
|
2884 |
msgstr "Mettre à jour %s"
|
2885 |
|
2886 |
+
#: app/features/mec.php:1214
|
2887 |
msgid "Blog"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: app/features/mec.php:1214
|
2891 |
msgid "Help"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: app/features/mec.php:1260
|
2895 |
msgid "This Month"
|
2896 |
msgstr "Ce mois"
|
2897 |
|
2898 |
+
#: app/features/mec.php:1266
|
2899 |
msgid "Last Month"
|
2900 |
msgstr "Le mois dernier"
|
2901 |
|
2902 |
+
#: app/features/mec.php:1272
|
2903 |
msgid "This Year"
|
2904 |
msgstr "Cette année"
|
2905 |
|
2906 |
+
#: app/features/mec.php:1278
|
2907 |
msgid "Last Year"
|
2908 |
msgstr "L'année dernière"
|
2909 |
|
2910 |
+
#: app/features/mec.php:1290
|
2911 |
msgid "Bar"
|
2912 |
msgstr "Barre"
|
2913 |
|
2914 |
+
#: app/features/mec.php:1291
|
2915 |
msgid "Line"
|
2916 |
msgstr "Ligne"
|
2917 |
|
2918 |
+
#: app/features/mec.php:1293
|
2919 |
msgid "Filter"
|
2920 |
msgstr "Filtre"
|
2921 |
|
2922 |
+
#: app/features/mec.php:1309
|
2923 |
#, php-format
|
2924 |
msgid "Total Sells (%s)"
|
2925 |
msgstr "Ventes totales (%s)"
|
2926 |
|
2927 |
+
#: app/features/mec.php:1337
|
2928 |
#, fuzzy
|
2929 |
#| msgid "Modern Events Calendar"
|
2930 |
msgid "Print Calendar"
|
2931 |
msgstr "Modern Events Calendar"
|
2932 |
|
2933 |
+
#: app/features/mec.php:1352
|
2934 |
#, fuzzy
|
2935 |
#| msgid "Multiple Day Events"
|
2936 |
msgid "Display Events"
|
3321 |
#: app/features/mec/notifications.php:923
|
3322 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3323 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3324 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3325 |
msgid "Verified"
|
3326 |
msgstr "Vérifié"
|
3327 |
|
4510 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4511 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4512 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4513 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4514 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4515 |
msgid "Speaker"
|
4516 |
msgstr ""
|
4517 |
|
4527 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4528 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4529 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4530 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4531 |
msgid "Tag"
|
4532 |
msgstr "Étiquettes"
|
4533 |
|
5313 |
"reçue."
|
5314 |
|
5315 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5316 |
+
#: app/libraries/notifications.php:587
|
5317 |
msgid "Booking Reminder"
|
5318 |
msgstr "Rappel d’inscription"
|
5319 |
|
5344 |
msgid "Please, insert comma to separate reminder days."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5348 |
#: app/libraries/main.php:584
|
5349 |
msgid "New Event"
|
5350 |
msgstr "Nouvel événement"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5560 |
+
#: app/libraries/main.php:5644
|
5561 |
msgid "Weekdays"
|
5562 |
msgstr "Jours de la Semaine"
|
5563 |
|
6311 |
"la page d'un événement"
|
6312 |
|
6313 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6314 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
6315 |
msgid "Related Events"
|
6316 |
msgstr "Evénement à la une"
|
6317 |
|
6942 |
msgstr "Ajouter l'email de l'organisateur."
|
6943 |
|
6944 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
6945 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
6946 |
msgid "Link to organizer page"
|
6947 |
msgstr "Lien vers la page de l'organisateur"
|
6948 |
|
6961 |
msgid "Event Main %s"
|
6962 |
msgstr "Événement principal %s"
|
6963 |
|
6964 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
6965 |
msgid "Hide organizer"
|
6966 |
msgstr "Ne pas afficher l'organisateur"
|
6967 |
|
6968 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
6969 |
msgid "Insert a new organizer"
|
6970 |
msgstr "Ajouter un nouvel organisateur"
|
6971 |
|
6972 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
6973 |
msgid "Choose one of saved organizers or insert new one below."
|
6974 |
msgstr "Choisir un organisateur existant ou en ajouter un nouveau."
|
6975 |
|
6976 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
6977 |
msgid "Phone number."
|
6978 |
msgstr "Numéro de téléphone."
|
6979 |
|
6980 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
6981 |
msgid "eg. +1 (234) 5678"
|
6982 |
msgstr "ex : +33 (0)4 76 36 55 76"
|
6983 |
|
6984 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
6985 |
msgid "Email address."
|
6986 |
msgstr "Adresse e-mail."
|
6987 |
|
6988 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
6989 |
msgid "eg. john@smith.com"
|
6990 |
msgstr "ex : votre@surnom.com"
|
6991 |
|
6992 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
6993 |
msgid "eg. https://webnus.net"
|
6994 |
msgstr "eg. https://webnus.net"
|
6995 |
|
6996 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
6997 |
+
#: app/skins/single.php:1152
|
6998 |
msgid "Other Organizers"
|
6999 |
msgstr "Autres organisateurs"
|
7000 |
|
7021 |
msgid "Event name is required"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7025 |
#, fuzzy
|
7026 |
#| msgid "Choose one of saved locations or insert new one below."
|
7027 |
msgid "Choose one of saved locations or insert new one."
|
7028 |
msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
|
7029 |
|
7030 |
+
#: app/features/popup/event.php:130
|
7031 |
#, fuzzy
|
7032 |
#| msgid "Add New Location"
|
7033 |
msgid "Add Location"
|
7034 |
msgstr "Ajouter un nouveau Lieu"
|
7035 |
|
7036 |
+
#: app/features/popup/event.php:177
|
7037 |
#, fuzzy
|
7038 |
#| msgid "Add New Organizer"
|
7039 |
msgid "Add Organizer"
|
7040 |
msgstr "Ajouter un nouvel organisateur"
|
7041 |
|
7042 |
+
#: app/features/popup/event.php:217
|
7043 |
#, fuzzy
|
7044 |
#| msgid "Categories"
|
7045 |
msgid "All Categories"
|
7046 |
msgstr "Catégories"
|
7047 |
|
7048 |
+
#: app/features/popup/event.php:218
|
7049 |
msgid "Most Used"
|
7050 |
msgstr ""
|
7051 |
|
7052 |
+
#: app/features/popup/event.php:229
|
7053 |
#, fuzzy
|
7054 |
#| msgid "Add New Label"
|
7055 |
msgid "Add New Category"
|
7056 |
msgstr "Ajouter une étquette"
|
7057 |
|
7058 |
+
#: app/features/popup/event.php:240
|
7059 |
#, fuzzy
|
7060 |
#| msgid "Featured Image"
|
7061 |
msgid "Set Featured Image"
|
7062 |
msgstr "Image Principale"
|
7063 |
|
7064 |
+
#: app/features/popup/event.php:250
|
7065 |
msgid "Your Event Has Been Created."
|
7066 |
msgstr ""
|
7067 |
|
7068 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
7069 |
msgid "Prev"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
7073 |
#: app/modules/booking/steps/form.php:188
|
7074 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
7075 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7076 |
msgid "Next"
|
7077 |
msgstr "Prochain"
|
7312 |
msgid "No search result."
|
7313 |
msgstr ""
|
7314 |
|
7315 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
7316 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
7317 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7318 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7319 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
7320 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7321 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7322 |
#, fuzzy
|
7392 |
msgid "%s Price"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
7396 |
msgid "Discount"
|
7397 |
msgstr "Réduction"
|
7398 |
|
7399 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
7400 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
7401 |
msgid "Download Invoice"
|
7402 |
msgstr ""
|
7403 |
|
7420 |
msgid "Upgrade"
|
7421 |
msgstr ""
|
7422 |
|
7423 |
+
#: app/libraries/factory.php:369
|
7424 |
msgid "day"
|
7425 |
msgstr "jour"
|
7426 |
|
7427 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
7428 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7429 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7430 |
msgid "days"
|
7431 |
msgstr "jours"
|
7432 |
|
7433 |
+
#: app/libraries/factory.php:371
|
7434 |
msgid "hour"
|
7435 |
msgstr "heure"
|
7436 |
|
7437 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
7438 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7439 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7440 |
msgid "hours"
|
7441 |
msgstr "heures"
|
7442 |
|
7443 |
+
#: app/libraries/factory.php:373
|
7444 |
msgid "minute"
|
7445 |
msgstr "minute"
|
7446 |
|
7447 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7448 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7449 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7450 |
msgid "minutes"
|
7451 |
msgstr "minutes"
|
7452 |
|
7453 |
+
#: app/libraries/factory.php:375
|
7454 |
msgid "second"
|
7455 |
msgstr "seconde"
|
7456 |
|
7457 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7458 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7459 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7460 |
msgid "seconds"
|
7461 |
msgstr "secondes"
|
7462 |
|
7463 |
+
#: app/libraries/factory.php:428
|
7464 |
msgid "MEC Single Sidebar"
|
7465 |
msgstr "Barre latérale M.E.C."
|
7466 |
|
7467 |
+
#: app/libraries/factory.php:429
|
7468 |
msgid "Custom sidebar for single and modal page of MEC."
|
7469 |
msgstr ""
|
7470 |
"Barre latérale personnalisée pour les pages d'événement et les pop-ups "
|
7528 |
msgid "Timeline View"
|
7529 |
msgstr "Vue chronologique"
|
7530 |
|
7531 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7532 |
msgid "SU"
|
7533 |
msgstr "DIM."
|
7534 |
|
7535 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7536 |
msgid "MO"
|
7537 |
msgstr "LUN."
|
7538 |
|
7539 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7540 |
msgid "TU"
|
7541 |
msgstr "MAR."
|
7542 |
|
7543 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7544 |
msgid "WE"
|
7545 |
msgstr "MER."
|
7546 |
|
7547 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7548 |
msgid "TH"
|
7549 |
msgstr "JEU."
|
7550 |
|
7551 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7552 |
msgid "FR"
|
7553 |
msgstr "VEN."
|
7554 |
|
7555 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7556 |
msgid "SA"
|
7557 |
msgstr "SAM."
|
7558 |
|
7861 |
msgid "Free"
|
7862 |
msgstr "Gratuite"
|
7863 |
|
7864 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
7865 |
msgid "M.E. Calender"
|
7866 |
msgstr "M.E Calendrier"
|
7867 |
|
7868 |
+
#: app/libraries/main.php:4105
|
7869 |
#, php-format
|
7870 |
msgid "Copy of %s"
|
7871 |
msgstr "Copie de %s"
|
7872 |
|
7873 |
+
#: app/libraries/main.php:4923
|
7874 |
msgid "Booked an event."
|
7875 |
msgstr "Réserver un événement"
|
7876 |
|
7877 |
+
#: app/libraries/main.php:4964
|
7878 |
#, php-format
|
7879 |
msgid "%s booked %s event."
|
7880 |
msgstr "%s réservé %s événement"
|
7881 |
|
7882 |
+
#: app/libraries/main.php:5629
|
7883 |
msgid "Taxonomies"
|
7884 |
msgstr "Taxonomies"
|
7885 |
|
7886 |
+
#: app/libraries/main.php:5631
|
7887 |
msgid "Category Plural Label"
|
7888 |
msgstr "Catégorie au pluriel"
|
7889 |
|
7890 |
+
#: app/libraries/main.php:5632
|
7891 |
msgid "Category Singular Label"
|
7892 |
msgstr "Catégorie au singulier"
|
7893 |
|
7894 |
+
#: app/libraries/main.php:5633
|
7895 |
msgid "Label Plural Label"
|
7896 |
msgstr "Étiquettes au pluriel"
|
7897 |
|
7898 |
+
#: app/libraries/main.php:5634
|
7899 |
msgid "Label Singular Label"
|
7900 |
msgstr "Étiquettes au singulier"
|
7901 |
|
7902 |
+
#: app/libraries/main.php:5634
|
7903 |
msgid "label"
|
7904 |
msgstr "texte"
|
7905 |
|
7906 |
+
#: app/libraries/main.php:5635
|
7907 |
msgid "Location Plural Label"
|
7908 |
msgstr "Lieu au pluriel"
|
7909 |
|
7910 |
+
#: app/libraries/main.php:5636
|
7911 |
msgid "Location Singular Label"
|
7912 |
msgstr "Lieu au singulier"
|
7913 |
|
7914 |
+
#: app/libraries/main.php:5637
|
7915 |
msgid "Organizer Plural Label"
|
7916 |
msgstr "Organisateur au pluriel"
|
7917 |
|
7918 |
+
#: app/libraries/main.php:5638
|
7919 |
msgid "Organizer Singular Label"
|
7920 |
msgstr "Organisateur au singulier"
|
7921 |
|
7922 |
+
#: app/libraries/main.php:5639
|
7923 |
msgid "Speaker Plural Label"
|
7924 |
msgstr "Étiquettes au pluriel"
|
7925 |
|
7926 |
+
#: app/libraries/main.php:5640
|
7927 |
msgid "Speaker Singular Label"
|
7928 |
msgstr "Étiquettes au singulier"
|
7929 |
|
7930 |
+
#: app/libraries/main.php:5646
|
7931 |
msgid "Sunday abbreviation"
|
7932 |
msgstr "Abréviation de Dimanche"
|
7933 |
|
7934 |
+
#: app/libraries/main.php:5647
|
7935 |
msgid "Monday abbreviation"
|
7936 |
msgstr "Abréviation de Lundi"
|
7937 |
|
7938 |
+
#: app/libraries/main.php:5648
|
7939 |
msgid "Tuesday abbreviation"
|
7940 |
msgstr "Abréviation de Mardi"
|
7941 |
|
7942 |
+
#: app/libraries/main.php:5649
|
7943 |
msgid "Wednesday abbreviation"
|
7944 |
msgstr "Abréviation de Mercredi"
|
7945 |
|
7946 |
+
#: app/libraries/main.php:5650
|
7947 |
msgid "Thursday abbreviation"
|
7948 |
msgstr "Abréviation de Jeudi"
|
7949 |
|
7950 |
+
#: app/libraries/main.php:5651
|
7951 |
msgid "Friday abbreviation"
|
7952 |
msgstr "Abréviation de Vendredi"
|
7953 |
|
7954 |
+
#: app/libraries/main.php:5652
|
7955 |
msgid "Saturday abbreviation"
|
7956 |
msgstr "Abréviation de Samedi"
|
7957 |
|
7958 |
+
#: app/libraries/main.php:5656
|
7959 |
msgid "Others"
|
7960 |
msgstr "Autres"
|
7961 |
|
7962 |
+
#: app/libraries/main.php:5658
|
7963 |
msgid "Booking Success Message"
|
7964 |
msgstr "Message de succès de réservation"
|
7965 |
|
7966 |
+
#: app/libraries/main.php:5658
|
7967 |
#, fuzzy
|
7968 |
#| msgid ""
|
7969 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
7975 |
"Merci pour votre réservation. Vos billets sont réservés, cependant une "
|
7976 |
"vérification peut être nécessaires, contrôlez votre boite mail."
|
7977 |
|
7978 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
7979 |
msgid "Register Button"
|
7980 |
msgstr "Boutons d'inscription"
|
7981 |
|
7982 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
7983 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
7984 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
7985 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
7986 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
7987 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
7988 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
7989 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
7990 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
7991 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
7997 |
msgid "REGISTER"
|
7998 |
msgstr "S'INSCRIRE"
|
7999 |
|
8000 |
+
#: app/libraries/main.php:5660
|
8001 |
msgid "View Detail Button"
|
8002 |
msgstr "Afficher le boutons de détail"
|
8003 |
|
8004 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
8005 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8006 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8007 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8008 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8009 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
8010 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8011 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8012 |
msgid "View Detail"
|
8013 |
msgstr "En savoir plus"
|
8014 |
|
8015 |
+
#: app/libraries/main.php:5661
|
8016 |
msgid "Event Detail Button"
|
8017 |
msgstr "Bouton de détail de l'événement"
|
8018 |
|
8019 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
8020 |
msgid "Event Detail"
|
8021 |
msgstr "Détails"
|
8022 |
|
8023 |
+
#: app/libraries/main.php:5663
|
8024 |
msgid "More Info Link"
|
8025 |
msgstr "Plus de lien d'info"
|
8026 |
|
8027 |
+
#: app/libraries/main.php:5666
|
8028 |
msgid "Ticket (Singular)"
|
8029 |
msgstr ""
|
8030 |
|
8031 |
+
#: app/libraries/main.php:5667
|
8032 |
msgid "Tickets (Plural)"
|
8033 |
msgstr ""
|
8034 |
|
8035 |
+
#: app/libraries/main.php:5754
|
8036 |
msgid "EventON"
|
8037 |
msgstr ""
|
8038 |
|
8039 |
+
#: app/libraries/main.php:5755
|
8040 |
msgid "The Events Calendar"
|
8041 |
msgstr ""
|
8042 |
|
8043 |
+
#: app/libraries/main.php:5756
|
8044 |
msgid "Events Schedule WP Plugin"
|
8045 |
msgstr ""
|
8046 |
|
8047 |
+
#: app/libraries/main.php:5757
|
8048 |
msgid "Calendarize It"
|
8049 |
msgstr ""
|
8050 |
|
8051 |
+
#: app/libraries/main.php:5758
|
8052 |
msgid "Event Espresso"
|
8053 |
msgstr "Labels d'événement"
|
8054 |
|
8055 |
+
#: app/libraries/main.php:5759
|
8056 |
msgid "Events Manager (Recurring)"
|
8057 |
msgstr "Événement récurrent"
|
8058 |
|
8059 |
+
#: app/libraries/main.php:5760
|
8060 |
msgid "Events Manager (Single)"
|
8061 |
msgstr "Modern Events Calendar"
|
8062 |
|
8063 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
8064 |
msgid "Confirmed"
|
8065 |
msgstr "Confirmé"
|
8066 |
|
8067 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
8068 |
msgid "Rejected"
|
8069 |
msgstr "Rejeté"
|
8070 |
|
8071 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
8072 |
msgid "Pending"
|
8073 |
msgstr "En attente"
|
8074 |
|
8075 |
+
#: app/libraries/main.php:5882
|
8076 |
msgid "Waiting"
|
8077 |
msgstr "En attente"
|
8078 |
|
8079 |
+
#: app/libraries/main.php:5925
|
8080 |
#, fuzzy
|
8081 |
#| msgid "Sunday"
|
8082 |
msgid "Sun"
|
8083 |
msgstr "Dimanche"
|
8084 |
|
8085 |
+
#: app/libraries/main.php:5925
|
8086 |
#, fuzzy
|
8087 |
#| msgid "Month"
|
8088 |
msgid "Mon"
|
8089 |
msgstr "Mois"
|
8090 |
|
8091 |
+
#: app/libraries/main.php:5925
|
8092 |
#, fuzzy
|
8093 |
#| msgid "Tel"
|
8094 |
msgid "Tue"
|
8095 |
msgstr "Téléphone"
|
8096 |
|
8097 |
+
#: app/libraries/main.php:5925
|
8098 |
msgid "Wed"
|
8099 |
msgstr ""
|
8100 |
|
8101 |
+
#: app/libraries/main.php:5925
|
8102 |
msgid "Thu"
|
8103 |
msgstr ""
|
8104 |
|
8105 |
+
#: app/libraries/main.php:5925
|
8106 |
#, fuzzy
|
8107 |
#| msgid "Friday"
|
8108 |
msgid "Fri"
|
8109 |
msgstr "Vendredi"
|
8110 |
|
8111 |
+
#: app/libraries/main.php:5925
|
8112 |
#, fuzzy
|
8113 |
#| msgid "Start"
|
8114 |
msgid "Sat"
|
8115 |
msgstr "Démarrer"
|
8116 |
|
8117 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
8118 |
#: app/libraries/render.php:432
|
8119 |
msgid "Skin controller does not exist."
|
8120 |
msgstr "Le contrôleur de Skin n'existe pas."
|
8121 |
|
8122 |
+
#: app/libraries/main.php:6302
|
8123 |
msgid "Sold Out"
|
8124 |
msgstr "Épuisé!"
|
8125 |
|
8126 |
+
#: app/libraries/main.php:6310
|
8127 |
msgid "Last Few Tickets"
|
8128 |
msgstr "Bientôt complet"
|
8129 |
|
8130 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
8131 |
#, fuzzy
|
8132 |
#| msgid "Hour"
|
8133 |
msgid "Hours"
|
8134 |
msgstr "Heure(s)"
|
8135 |
|
8136 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
8137 |
#, fuzzy
|
8138 |
#| msgid "minutes"
|
8139 |
msgid "Minutes"
|
8140 |
msgstr "minutes"
|
8141 |
|
8142 |
+
#: app/libraries/main.php:6652
|
8143 |
msgid "AM / PM"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
+
#: app/libraries/main.php:6653
|
8147 |
+
msgid "AM"
|
8148 |
+
msgstr "du matin"
|
8149 |
+
|
8150 |
+
#: app/libraries/main.php:6654
|
8151 |
+
msgid "PM"
|
8152 |
+
msgstr "de l'après midi"
|
8153 |
+
|
8154 |
+
#: app/libraries/main.php:6662
|
8155 |
msgid "Ongoing..."
|
8156 |
msgstr ""
|
8157 |
|
8158 |
+
#: app/libraries/main.php:6663
|
8159 |
#, fuzzy
|
8160 |
#| msgid "Expired Events"
|
8161 |
msgid "Expired!"
|
8165 |
msgid "Please verify your email."
|
8166 |
msgstr "Merci de vérifier vos e-mails."
|
8167 |
|
8168 |
+
#: app/libraries/notifications.php:158
|
8169 |
msgid "Your booking is received."
|
8170 |
msgstr "Votre réservation est reçue."
|
8171 |
|
8172 |
+
#: app/libraries/notifications.php:268
|
8173 |
msgid "Your booking is confirmed."
|
8174 |
msgstr "Votre réservation est confirmée."
|
8175 |
|
8176 |
+
#: app/libraries/notifications.php:425
|
8177 |
msgid "booking canceled."
|
8178 |
msgstr "réservation annulée"
|
8179 |
|
8180 |
+
#: app/libraries/notifications.php:503
|
8181 |
msgid "A new booking is received."
|
8182 |
msgstr "Une nouvelle réservation est enregistrée."
|
8183 |
|
8184 |
+
#: app/libraries/notifications.php:707
|
8185 |
msgid "A new event is added."
|
8186 |
msgstr "Un nouvel événement est ajouté."
|
8187 |
|
8188 |
+
#: app/libraries/notifications.php:779
|
8189 |
msgid "Your event is published."
|
8190 |
msgstr "Événement Publié."
|
8191 |
|
8192 |
+
#: app/libraries/notifications.php:912
|
8193 |
#, php-format
|
8194 |
msgid "%s to %s"
|
8195 |
msgstr "%s en %s"
|
8196 |
|
8197 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
8198 |
+
#: app/libraries/notifications.php:1060
|
8199 |
msgid "to"
|
8200 |
msgstr ""
|
8201 |
|
8202 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
8203 |
msgid "+ Add to Google Calendar"
|
8204 |
msgstr "+ Ajouter à mon Agenda Google"
|
8205 |
|
8206 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
8207 |
msgid "+ iCal export"
|
8208 |
msgstr "+ Exporter vers iCal"
|
8209 |
|
8210 |
+
#: app/libraries/notifications.php:1139
|
8211 |
msgid "Yes"
|
8212 |
msgstr "Oui"
|
8213 |
|
8214 |
+
#: app/libraries/notifications.php:1139
|
8215 |
msgid "No"
|
8216 |
msgstr "Non"
|
8217 |
|
8218 |
+
#: app/libraries/skins.php:1069
|
8219 |
msgid "Select"
|
8220 |
msgstr "Tout sélectionner"
|
8221 |
|
8222 |
+
#: app/modules/attendees-list/details.php:39
|
8223 |
msgid "Event Attendees"
|
8224 |
msgstr "Participants à l'Événement"
|
8225 |
|
8226 |
+
#: app/modules/attendees-list/details.php:41
|
8227 |
msgid "No attendee found! Be the first one to book!"
|
8228 |
msgstr ""
|
8229 |
"Il n'y a pas encore de participants inscrits depuis le site. Soyez le "
|
8230 |
"premier !"
|
8231 |
|
8232 |
+
#: app/modules/attendees-list/details.php:62
|
8233 |
msgid "tickets"
|
8234 |
msgstr "billets"
|
8235 |
|
8236 |
+
#: app/modules/attendees-list/details.php:92
|
8237 |
+
#, fuzzy, php-format
|
8238 |
+
#| msgid "%s tickets"
|
8239 |
+
msgid "%s ticket"
|
8240 |
+
msgid_plural "%s tickets"
|
8241 |
+
msgstr[0] "%s billets"
|
8242 |
+
msgstr[1] "%s billets"
|
8243 |
+
|
8244 |
#: app/modules/booking/steps/checkout.php:37
|
8245 |
msgid "Checkout"
|
8246 |
msgstr "Commander"
|
8290 |
msgid "Fill other attendees information like the first form."
|
8291 |
msgstr "Utiliser ces données pour tous les inscrits."
|
8292 |
|
8293 |
+
#: app/modules/booking/steps/tickets.php:32
|
8294 |
msgid "Book Event"
|
8295 |
msgstr "Réservez pour cet événement"
|
8296 |
|
8297 |
+
#: app/modules/booking/steps/tickets.php:59
|
8298 |
#, fuzzy
|
8299 |
#| msgid "No user selected!"
|
8300 |
msgid "1 Ticket selected."
|
8301 |
msgstr "Aucun utilisateur séléctionné!"
|
8302 |
|
8303 |
+
#: app/modules/booking/steps/tickets.php:64
|
8304 |
#, php-format
|
8305 |
msgid "Available %s: <span>%s</span>"
|
8306 |
msgstr "%s disponibles: <span>%s</span>"
|
8307 |
|
8308 |
+
#: app/modules/booking/steps/tickets.php:69
|
8309 |
#, php-format
|
8310 |
msgid "The %s ticket sales has stopped!"
|
8311 |
msgstr ""
|
8312 |
|
8313 |
+
#: app/modules/booking/steps/tickets.php:70
|
8314 |
#, php-format
|
8315 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8316 |
msgstr ""
|
8333 |
msgid "Get Directions"
|
8334 |
msgstr ""
|
8335 |
|
8336 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
8337 |
msgid "Share this event"
|
8338 |
msgstr "Partagez cet événement"
|
8339 |
|
8388 |
msgid "Go to occurrence page"
|
8389 |
msgstr "Aller à la Page"
|
8390 |
|
8391 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
8392 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8393 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8394 |
msgid "Time"
|
8522 |
msgid "No Events"
|
8523 |
msgstr "Aucun événement"
|
8524 |
|
8525 |
+
#: app/skins/single.php:393
|
8526 |
msgid "Home"
|
8527 |
msgstr ""
|
8528 |
|
8529 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
8530 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8531 |
#: app/skins/single/modern.php:292
|
8532 |
msgid "Sold out!"
|
8533 |
msgstr "Épuisé !"
|
8534 |
|
8535 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
8536 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8537 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8538 |
#: app/skins/single/modern.php:55
|
8539 |
msgid "Phone"
|
8540 |
msgstr "Téléphone"
|
8541 |
|
8542 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
8543 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8544 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8545 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
8548 |
msgid "Website"
|
8549 |
msgstr "Site Web"
|
8550 |
|
8551 |
+
#: app/skins/single.php:1261
|
8552 |
msgid "Speakers:"
|
8553 |
msgstr "Orateurs:"
|
8554 |
|
9082 |
#~ msgstr ""
|
9083 |
#~ "Comment écrire par dessus des fichiers de templates du plugin M.E.C. ?"
|
9084 |
|
|
|
|
|
|
|
9085 |
#, fuzzy
|
9086 |
#~| msgid "Discount is not valid for this event!"
|
9087 |
#~ msgid "Event is not repeating. No dates exist for this event!"
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-06-
|
5 |
-
"PO-Revision-Date: 2020-06-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: hu_HU\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr ""
|
@@ -303,7 +303,7 @@ msgid "Edit Event"
|
|
303 |
msgstr ""
|
304 |
|
305 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
306 |
-
#: app/features/popup/event.php:
|
307 |
msgid "View Event"
|
308 |
msgstr ""
|
309 |
|
@@ -325,8 +325,8 @@ msgstr ""
|
|
325 |
#: app/features/mec/meta_boxes/search_form.php:654
|
326 |
#: app/features/mec/meta_boxes/search_form.php:760
|
327 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
328 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
329 |
-
#: app/libraries/skins.php:
|
330 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
331 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
332 |
#: app/skins/single/modern.php:137
|
@@ -336,7 +336,7 @@ msgstr "kategória"
|
|
336 |
#: app/features/events.php:186 app/features/events.php:3193
|
337 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
338 |
#: app/features/mec/meta_boxes/filter.php:69
|
339 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
340 |
msgid "Categories"
|
341 |
msgstr ""
|
342 |
|
@@ -421,7 +421,7 @@ msgid "Event Repeating"
|
|
421 |
msgstr ""
|
422 |
|
423 |
#: app/features/events.php:336 app/features/events.php:1215
|
424 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
425 |
msgid "Hourly Schedule"
|
426 |
msgstr "Programterv"
|
427 |
|
@@ -453,18 +453,18 @@ msgstr ""
|
|
453 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
454 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
455 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
456 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
457 |
-
#: app/features/popup/event.php:
|
458 |
-
#: app/libraries/main.php:
|
459 |
-
#: app/skins/single.php:
|
460 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
461 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
462 |
msgid "Organizer"
|
463 |
msgstr "Szervező"
|
464 |
|
465 |
#: app/features/events.php:340 app/features/events.php:1092
|
466 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
467 |
-
#: app/skins/single.php:
|
468 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
469 |
#: app/skins/single/modern.php:234
|
470 |
msgid "Cost"
|
@@ -486,8 +486,8 @@ msgstr ""
|
|
486 |
#: app/features/events.php:3769 app/features/fes.php:223
|
487 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
488 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
489 |
-
#: app/features/popup/event.php:
|
490 |
-
#: app/libraries/notifications.php:
|
491 |
msgid "Name"
|
492 |
msgstr "Név"
|
493 |
|
@@ -499,9 +499,9 @@ msgstr "Név"
|
|
499 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
500 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
501 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
502 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
503 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
504 |
-
#: app/skins/single.php:
|
505 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
506 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
507 |
#: app/skins/single/modern.php:62
|
@@ -517,7 +517,7 @@ msgstr ""
|
|
517 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
518 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
519 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
520 |
-
#: app/features/mec.php:
|
521 |
#: app/features/mec/meta_boxes/display_options.php:278
|
522 |
#: app/features/mec/meta_boxes/display_options.php:517
|
523 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -541,12 +541,12 @@ msgstr ""
|
|
541 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
542 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
543 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
544 |
-
#: app/features/mec.php:
|
545 |
msgid "End Date"
|
546 |
msgstr ""
|
547 |
|
548 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
549 |
-
#: app/features/popup/event.php:
|
550 |
msgid "All-day Event"
|
551 |
msgstr ""
|
552 |
|
@@ -578,7 +578,7 @@ msgstr ""
|
|
578 |
#: app/features/events.php:2151 app/features/events.php:2166
|
579 |
#: app/features/events.php:2196 app/features/events.php:2209
|
580 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
581 |
-
#: app/features/locations.php:
|
582 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
583 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
584 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -642,8 +642,8 @@ msgstr ""
|
|
642 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
643 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
644 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
645 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
646 |
-
#: app/features/popup/event.php:
|
647 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
648 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
649 |
#: app/skins/single/modern.php:160
|
@@ -663,7 +663,7 @@ msgid "Repeats"
|
|
663 |
msgstr ""
|
664 |
|
665 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
666 |
-
#: app/features/mec.php:
|
667 |
#: app/skins/full_calendar/tpl.php:121
|
668 |
msgid "Daily"
|
669 |
msgstr ""
|
@@ -687,13 +687,13 @@ msgid "Weekly"
|
|
687 |
msgstr ""
|
688 |
|
689 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
690 |
-
#: app/features/mec.php:
|
691 |
#: app/skins/full_calendar/tpl.php:119
|
692 |
msgid "Monthly"
|
693 |
msgstr ""
|
694 |
|
695 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
696 |
-
#: app/features/mec.php:
|
697 |
#: app/skins/full_calendar/tpl.php:118
|
698 |
msgid "Yearly"
|
699 |
msgstr ""
|
@@ -817,7 +817,7 @@ msgstr ""
|
|
817 |
#: app/features/events.php:1088 app/features/events.php:3431
|
818 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
819 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
820 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
821 |
#: app/widgets/single.php:103
|
822 |
msgid "Event Cost"
|
823 |
msgstr ""
|
@@ -833,8 +833,8 @@ msgstr ""
|
|
833 |
#: app/features/events.php:1124 app/features/events.php:2330
|
834 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
835 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
836 |
-
#: app/modules/booking/steps/tickets.php:
|
837 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
838 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
839 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
840 |
msgid "Date"
|
@@ -919,7 +919,7 @@ msgstr ""
|
|
919 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
920 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
921 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
922 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
923 |
#: app/modules/speakers/details.php:18
|
924 |
msgid "Speakers"
|
925 |
msgstr ""
|
@@ -934,7 +934,7 @@ msgid "Event Links"
|
|
934 |
msgstr ""
|
935 |
|
936 |
#: app/features/events.php:1408 app/features/events.php:1414
|
937 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
938 |
msgid "Event Link"
|
939 |
msgstr ""
|
940 |
|
@@ -955,8 +955,8 @@ msgid "URL Shortener"
|
|
955 |
msgstr ""
|
956 |
|
957 |
#: app/features/events.php:1424 app/features/events.php:1437
|
958 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
959 |
-
#: app/skins/single.php:
|
960 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
961 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
962 |
#: app/widgets/single.php:107
|
@@ -992,8 +992,8 @@ msgid "Total User Booking Limits"
|
|
992 |
msgstr "Foglalások"
|
993 |
|
994 |
#: app/features/events.php:1463 app/features/events.php:1605
|
995 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
996 |
-
#: app/modules/booking/steps/tickets.php:
|
997 |
msgid "Tickets"
|
998 |
msgstr ""
|
999 |
|
@@ -1021,7 +1021,7 @@ msgstr "Foglalások"
|
|
1021 |
|
1022 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1023 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1024 |
-
#: app/modules/booking/steps/tickets.php:
|
1025 |
#: app/skins/available_spot/tpl.php:142
|
1026 |
msgid "Unlimited"
|
1027 |
msgstr ""
|
@@ -1175,7 +1175,7 @@ msgstr ""
|
|
1175 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1176 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1177 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1178 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1179 |
msgid "Label"
|
1180 |
msgstr ""
|
1181 |
|
@@ -1391,8 +1391,8 @@ msgstr "Jelentkezési lap"
|
|
1391 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1392 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1393 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1394 |
-
#: app/features/locations.php:
|
1395 |
-
#: app/features/locations.php:
|
1396 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1397 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1398 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1406,10 +1406,10 @@ msgstr "Jelentkezési lap"
|
|
1406 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1407 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1408 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1409 |
-
#: app/features/popup/event.php:
|
1410 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1411 |
-
#: app/libraries/main.php:
|
1412 |
-
#: app/skins/single.php:
|
1413 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1414 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1415 |
#: app/skins/single/modern.php:113
|
@@ -1451,7 +1451,7 @@ msgstr ""
|
|
1451 |
|
1452 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1453 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1454 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1455 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1456 |
msgid "ID"
|
1457 |
msgstr ""
|
@@ -1473,7 +1473,7 @@ msgstr ""
|
|
1473 |
|
1474 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1475 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1476 |
-
#: app/libraries/main.php:
|
1477 |
msgid "Ticket"
|
1478 |
msgstr ""
|
1479 |
|
@@ -1670,7 +1670,7 @@ msgid "eg. yourname@gmail.com"
|
|
1670 |
msgstr ""
|
1671 |
|
1672 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1673 |
-
#: app/features/popup/event.php:
|
1674 |
msgid "eg. John Smith"
|
1675 |
msgstr ""
|
1676 |
|
@@ -1691,8 +1691,8 @@ msgstr ""
|
|
1691 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1692 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1693 |
#: app/features/mec/meta_boxes/filter.php:72
|
1694 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1695 |
-
#: app/skins/single.php:
|
1696 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1697 |
#: app/skins/single/modern.php:249
|
1698 |
msgid "Labels"
|
@@ -2426,7 +2426,7 @@ msgid "Featured"
|
|
2426 |
msgstr ""
|
2427 |
|
2428 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2429 |
-
#: app/libraries/main.php:
|
2430 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2431 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2432 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2444,30 +2444,30 @@ msgstr ""
|
|
2444 |
msgid "You can show featured and canceled events by a different style!"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2448 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2449 |
-
#: app/modules/booking/steps/tickets.php:
|
2450 |
msgid "Count"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2454 |
#: app/features/organizers.php:207
|
2455 |
msgid "Slug"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2459 |
#, php-format
|
2460 |
msgid "Event %s"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2464 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2465 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2466 |
msgid "Locations"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: app/features/locations.php:
|
2470 |
-
#: app/features/locations.php:
|
2471 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2472 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2473 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2482,93 +2482,93 @@ msgstr ""
|
|
2482 |
msgid "Address"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: app/features/locations.php:
|
2486 |
msgid "Enter the location address"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: app/features/locations.php:
|
2490 |
-
#: app/features/locations.php:
|
2491 |
msgid "Latitude"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: app/features/locations.php:
|
2495 |
msgid "Geo latitude (Optional)"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: app/features/locations.php:
|
2499 |
-
#: app/features/locations.php:
|
2500 |
msgid "Longitude"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: app/features/locations.php:
|
2504 |
msgid "Geo longitude (Optional)"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: app/features/locations.php:
|
2508 |
-
#: app/features/locations.php:
|
2509 |
#, fuzzy
|
2510 |
#| msgid "Location"
|
2511 |
msgid "Location Website"
|
2512 |
msgstr "helyszín"
|
2513 |
|
2514 |
-
#: app/features/locations.php:
|
2515 |
msgid "Location Website (Optional)"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: app/features/locations.php:
|
2519 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2520 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2521 |
msgid "Thumbnail"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: app/features/locations.php:
|
2525 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2526 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2527 |
msgid "Upload/Add image"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: app/features/locations.php:
|
2531 |
-
#: app/features/locations.php:
|
2532 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2533 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2534 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2535 |
msgid "Remove image"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: app/features/locations.php:
|
2539 |
msgid "Hide location"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: app/features/locations.php:
|
2543 |
msgid "Insert a new location"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: app/features/locations.php:
|
2547 |
msgid "Choose one of saved locations or insert new one below."
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: app/features/locations.php:
|
2551 |
msgid "Location Name"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: app/features/locations.php:
|
2555 |
msgid "eg. City Hall"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: app/features/locations.php:
|
2559 |
-
#: app/features/popup/event.php:
|
2560 |
msgid "Event Location"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: app/features/locations.php:
|
2564 |
msgid "eg. City hall, Manhattan, New York"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: app/features/locations.php:
|
2568 |
msgid "Latitude/Longitude"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: app/features/locations.php:
|
2572 |
msgid ""
|
2573 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2574 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2577,26 +2577,26 @@ msgid ""
|
|
2577 |
"the location on the map to find lat long coordinates."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: app/features/locations.php:
|
2581 |
msgid "Get Latitude and Longitude"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: app/features/locations.php:
|
2585 |
-
#: app/features/popup/event.php:
|
2586 |
msgid "Choose image"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: app/features/locations.php:
|
2590 |
msgid "Don't show map in single event page"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: app/features/locations.php:
|
2594 |
#, fuzzy
|
2595 |
#| msgid "Location"
|
2596 |
msgid "Other Locations"
|
2597 |
msgstr "helyszín"
|
2598 |
|
2599 |
-
#: app/features/locations.php:
|
2600 |
msgid ""
|
2601 |
"You can select extra locations in addition to main location if you like."
|
2602 |
msgstr ""
|
@@ -2663,7 +2663,7 @@ msgstr ""
|
|
2663 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2664 |
#: app/features/mec/meta_boxes/filter.php:71
|
2665 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2666 |
-
#: app/libraries/main.php:
|
2667 |
msgid "Organizers"
|
2668 |
msgstr ""
|
2669 |
|
@@ -2696,7 +2696,7 @@ msgstr ""
|
|
2696 |
msgid "MEC - Go Pro"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2700 |
#: app/features/mec/go-pro.php:9
|
2701 |
msgid "Go Pro"
|
2702 |
msgstr ""
|
@@ -2753,69 +2753,69 @@ msgstr ""
|
|
2753 |
msgid "Modal Popup"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: app/features/mec.php:
|
2757 |
msgid "Total Bookings"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: app/features/mec.php:
|
2761 |
msgid "Modern Events Calendar (Lite)"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: app/features/mec.php:
|
2765 |
#: app/features/mec/settings.php:428
|
2766 |
msgid "Upcoming Events"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: app/features/mec.php:
|
2770 |
msgid "News & Updates"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: app/features/mec.php:
|
2774 |
msgid "Blog"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: app/features/mec.php:
|
2778 |
msgid "Help"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: app/features/mec.php:
|
2782 |
msgid "This Month"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
-
#: app/features/mec.php:
|
2786 |
msgid "Last Month"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#: app/features/mec.php:
|
2790 |
msgid "This Year"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#: app/features/mec.php:
|
2794 |
msgid "Last Year"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#: app/features/mec.php:
|
2798 |
msgid "Bar"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
-
#: app/features/mec.php:
|
2802 |
msgid "Line"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#: app/features/mec.php:
|
2806 |
msgid "Filter"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
#: app/features/mec.php:
|
2810 |
#, php-format
|
2811 |
msgid "Total Sells (%s)"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: app/features/mec.php:
|
2815 |
msgid "Print Calendar"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: app/features/mec.php:
|
2819 |
#, fuzzy
|
2820 |
#| msgid "Facebook Events"
|
2821 |
msgid "Display Events"
|
@@ -3202,7 +3202,7 @@ msgstr ""
|
|
3202 |
#: app/features/mec/notifications.php:923
|
3203 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3204 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3205 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3206 |
msgid "Verified"
|
3207 |
msgstr ""
|
3208 |
|
@@ -4317,8 +4317,8 @@ msgstr ""
|
|
4317 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4318 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4319 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4320 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4321 |
-
#: app/libraries/skins.php:
|
4322 |
msgid "Speaker"
|
4323 |
msgstr ""
|
4324 |
|
@@ -4334,7 +4334,7 @@ msgstr ""
|
|
4334 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4335 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4336 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4337 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4338 |
msgid "Tag"
|
4339 |
msgstr ""
|
4340 |
|
@@ -5075,7 +5075,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
5075 |
msgstr ""
|
5076 |
|
5077 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5078 |
-
#: app/libraries/notifications.php:
|
5079 |
msgid "Booking Reminder"
|
5080 |
msgstr ""
|
5081 |
|
@@ -5103,7 +5103,7 @@ msgstr ""
|
|
5103 |
msgid "Please, insert comma to separate reminder days."
|
5104 |
msgstr ""
|
5105 |
|
5106 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5107 |
#: app/libraries/main.php:584
|
5108 |
msgid "New Event"
|
5109 |
msgstr ""
|
@@ -5301,7 +5301,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5301 |
msgstr ""
|
5302 |
|
5303 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5304 |
-
#: app/libraries/main.php:
|
5305 |
msgid "Weekdays"
|
5306 |
msgstr ""
|
5307 |
|
@@ -5966,7 +5966,7 @@ msgid ""
|
|
5966 |
msgstr ""
|
5967 |
|
5968 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
5969 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
5970 |
#, fuzzy
|
5971 |
#| msgid "Facebook Events"
|
5972 |
msgid "Related Events"
|
@@ -6535,7 +6535,7 @@ msgid "Insert organizer email address."
|
|
6535 |
msgstr ""
|
6536 |
|
6537 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
6538 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
6539 |
msgid "Link to organizer page"
|
6540 |
msgstr ""
|
6541 |
|
@@ -6552,40 +6552,40 @@ msgstr ""
|
|
6552 |
msgid "Event Main %s"
|
6553 |
msgstr ""
|
6554 |
|
6555 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
6556 |
msgid "Hide organizer"
|
6557 |
msgstr ""
|
6558 |
|
6559 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
6560 |
msgid "Insert a new organizer"
|
6561 |
msgstr ""
|
6562 |
|
6563 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
6564 |
msgid "Choose one of saved organizers or insert new one below."
|
6565 |
msgstr ""
|
6566 |
|
6567 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
6568 |
msgid "Phone number."
|
6569 |
msgstr ""
|
6570 |
|
6571 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
6572 |
msgid "eg. +1 (234) 5678"
|
6573 |
msgstr ""
|
6574 |
|
6575 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
6576 |
msgid "Email address."
|
6577 |
msgstr ""
|
6578 |
|
6579 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
6580 |
msgid "eg. john@smith.com"
|
6581 |
msgstr "például john@smith.com"
|
6582 |
|
6583 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
6584 |
msgid "eg. https://webnus.net"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
6588 |
-
#: app/skins/single.php:
|
6589 |
msgid "Other Organizers"
|
6590 |
msgstr ""
|
6591 |
|
@@ -6608,63 +6608,53 @@ msgstr "Név"
|
|
6608 |
msgid "Event name is required"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#: app/features/popup/event.php:
|
6612 |
-
#: app/libraries/main.php:6643
|
6613 |
-
msgid "AM"
|
6614 |
-
msgstr ""
|
6615 |
-
|
6616 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
6617 |
-
#: app/libraries/main.php:6644
|
6618 |
-
msgid "PM"
|
6619 |
-
msgstr ""
|
6620 |
-
|
6621 |
-
#: app/features/popup/event.php:256
|
6622 |
msgid "Choose one of saved locations or insert new one."
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: app/features/popup/event.php:
|
6626 |
#, fuzzy
|
6627 |
#| msgid "Location"
|
6628 |
msgid "Add Location"
|
6629 |
msgstr "helyszín"
|
6630 |
|
6631 |
-
#: app/features/popup/event.php:
|
6632 |
#, fuzzy
|
6633 |
#| msgid "Organizer"
|
6634 |
msgid "Add Organizer"
|
6635 |
msgstr "Szervező"
|
6636 |
|
6637 |
-
#: app/features/popup/event.php:
|
6638 |
#, fuzzy
|
6639 |
#| msgid "Category"
|
6640 |
msgid "All Categories"
|
6641 |
msgstr "kategória"
|
6642 |
|
6643 |
-
#: app/features/popup/event.php:
|
6644 |
msgid "Most Used"
|
6645 |
msgstr ""
|
6646 |
|
6647 |
-
#: app/features/popup/event.php:
|
6648 |
#, fuzzy
|
6649 |
#| msgid "Category"
|
6650 |
msgid "Add New Category"
|
6651 |
msgstr "kategória"
|
6652 |
|
6653 |
-
#: app/features/popup/event.php:
|
6654 |
msgid "Set Featured Image"
|
6655 |
msgstr ""
|
6656 |
|
6657 |
-
#: app/features/popup/event.php:
|
6658 |
msgid "Your Event Has Been Created."
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#: app/features/popup/event.php:
|
6662 |
msgid "Prev"
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#: app/features/popup/event.php:
|
6666 |
#: app/modules/booking/steps/form.php:188
|
6667 |
-
#: app/modules/booking/steps/tickets.php:
|
6668 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
6669 |
msgid "Next"
|
6670 |
msgstr "Tovább"
|
@@ -6876,11 +6866,11 @@ msgstr ""
|
|
6876 |
msgid "No search result."
|
6877 |
msgstr ""
|
6878 |
|
6879 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
6880 |
-
#: app/libraries/notifications.php:
|
6881 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
6882 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
6883 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
6884 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
6885 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
6886 |
msgid "All Day"
|
@@ -6956,12 +6946,12 @@ msgstr ""
|
|
6956 |
msgid "%s Price"
|
6957 |
msgstr ""
|
6958 |
|
6959 |
-
#: app/libraries/book.php:
|
6960 |
msgid "Discount"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
-
#: app/libraries/book.php:
|
6964 |
-
#: app/modules/booking/default.php:
|
6965 |
msgid "Download Invoice"
|
6966 |
msgstr ""
|
6967 |
|
@@ -6984,51 +6974,51 @@ msgctxt "plugin link"
|
|
6984 |
msgid "Upgrade"
|
6985 |
msgstr ""
|
6986 |
|
6987 |
-
#: app/libraries/factory.php:
|
6988 |
msgid "day"
|
6989 |
msgstr ""
|
6990 |
|
6991 |
-
#: app/libraries/factory.php:
|
6992 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
6993 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
6994 |
msgid "days"
|
6995 |
msgstr "Nap"
|
6996 |
|
6997 |
-
#: app/libraries/factory.php:
|
6998 |
msgid "hour"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
-
#: app/libraries/factory.php:
|
7002 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7003 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7004 |
msgid "hours"
|
7005 |
msgstr "óra"
|
7006 |
|
7007 |
-
#: app/libraries/factory.php:
|
7008 |
msgid "minute"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
-
#: app/libraries/factory.php:
|
7012 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7013 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7014 |
msgid "minutes"
|
7015 |
msgstr "perc"
|
7016 |
|
7017 |
-
#: app/libraries/factory.php:
|
7018 |
msgid "second"
|
7019 |
msgstr ""
|
7020 |
|
7021 |
-
#: app/libraries/factory.php:
|
7022 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7023 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7024 |
msgid "seconds"
|
7025 |
msgstr "másodperc"
|
7026 |
|
7027 |
-
#: app/libraries/factory.php:
|
7028 |
msgid "MEC Single Sidebar"
|
7029 |
msgstr ""
|
7030 |
|
7031 |
-
#: app/libraries/factory.php:
|
7032 |
msgid "Custom sidebar for single and modal page of MEC."
|
7033 |
msgstr ""
|
7034 |
|
@@ -7090,31 +7080,31 @@ msgstr ""
|
|
7090 |
msgid "Timeline View"
|
7091 |
msgstr ""
|
7092 |
|
7093 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7094 |
msgid "SU"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7098 |
msgid "MO"
|
7099 |
msgstr ""
|
7100 |
|
7101 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7102 |
msgid "TU"
|
7103 |
msgstr ""
|
7104 |
|
7105 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7106 |
msgid "WE"
|
7107 |
msgstr ""
|
7108 |
|
7109 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7110 |
msgid "TH"
|
7111 |
msgstr ""
|
7112 |
|
7113 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7114 |
msgid "FR"
|
7115 |
msgstr ""
|
7116 |
|
7117 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7118 |
msgid "SA"
|
7119 |
msgstr ""
|
7120 |
|
@@ -7423,109 +7413,109 @@ msgstr ""
|
|
7423 |
msgid "Free"
|
7424 |
msgstr "Ingyenes"
|
7425 |
|
7426 |
-
#: app/libraries/main.php:
|
7427 |
msgid "M.E. Calender"
|
7428 |
msgstr ""
|
7429 |
|
7430 |
-
#: app/libraries/main.php:
|
7431 |
#, php-format
|
7432 |
msgid "Copy of %s"
|
7433 |
msgstr ""
|
7434 |
|
7435 |
-
#: app/libraries/main.php:
|
7436 |
msgid "Booked an event."
|
7437 |
msgstr ""
|
7438 |
|
7439 |
-
#: app/libraries/main.php:
|
7440 |
#, php-format
|
7441 |
msgid "%s booked %s event."
|
7442 |
msgstr ""
|
7443 |
|
7444 |
-
#: app/libraries/main.php:
|
7445 |
msgid "Taxonomies"
|
7446 |
msgstr ""
|
7447 |
|
7448 |
-
#: app/libraries/main.php:
|
7449 |
msgid "Category Plural Label"
|
7450 |
msgstr ""
|
7451 |
|
7452 |
-
#: app/libraries/main.php:
|
7453 |
msgid "Category Singular Label"
|
7454 |
msgstr ""
|
7455 |
|
7456 |
-
#: app/libraries/main.php:
|
7457 |
msgid "Label Plural Label"
|
7458 |
msgstr ""
|
7459 |
|
7460 |
-
#: app/libraries/main.php:
|
7461 |
msgid "Label Singular Label"
|
7462 |
msgstr ""
|
7463 |
|
7464 |
-
#: app/libraries/main.php:
|
7465 |
msgid "label"
|
7466 |
msgstr ""
|
7467 |
|
7468 |
-
#: app/libraries/main.php:
|
7469 |
msgid "Location Plural Label"
|
7470 |
msgstr ""
|
7471 |
|
7472 |
-
#: app/libraries/main.php:
|
7473 |
msgid "Location Singular Label"
|
7474 |
msgstr ""
|
7475 |
|
7476 |
-
#: app/libraries/main.php:
|
7477 |
msgid "Organizer Plural Label"
|
7478 |
msgstr ""
|
7479 |
|
7480 |
-
#: app/libraries/main.php:
|
7481 |
msgid "Organizer Singular Label"
|
7482 |
msgstr ""
|
7483 |
|
7484 |
-
#: app/libraries/main.php:
|
7485 |
msgid "Speaker Plural Label"
|
7486 |
msgstr ""
|
7487 |
|
7488 |
-
#: app/libraries/main.php:
|
7489 |
msgid "Speaker Singular Label"
|
7490 |
msgstr ""
|
7491 |
|
7492 |
-
#: app/libraries/main.php:
|
7493 |
msgid "Sunday abbreviation"
|
7494 |
msgstr ""
|
7495 |
|
7496 |
-
#: app/libraries/main.php:
|
7497 |
msgid "Monday abbreviation"
|
7498 |
msgstr ""
|
7499 |
|
7500 |
-
#: app/libraries/main.php:
|
7501 |
msgid "Tuesday abbreviation"
|
7502 |
msgstr ""
|
7503 |
|
7504 |
-
#: app/libraries/main.php:
|
7505 |
msgid "Wednesday abbreviation"
|
7506 |
msgstr ""
|
7507 |
|
7508 |
-
#: app/libraries/main.php:
|
7509 |
msgid "Thursday abbreviation"
|
7510 |
msgstr ""
|
7511 |
|
7512 |
-
#: app/libraries/main.php:
|
7513 |
msgid "Friday abbreviation"
|
7514 |
msgstr ""
|
7515 |
|
7516 |
-
#: app/libraries/main.php:
|
7517 |
msgid "Saturday abbreviation"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
-
#: app/libraries/main.php:
|
7521 |
msgid "Others"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
-
#: app/libraries/main.php:
|
7525 |
msgid "Booking Success Message"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
-
#: app/libraries/main.php:
|
7529 |
#, fuzzy
|
7530 |
#| msgid ""
|
7531 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -7537,17 +7527,17 @@ msgstr ""
|
|
7537 |
"Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
|
7538 |
"jóváhagyásra lesz szükség!"
|
7539 |
|
7540 |
-
#: app/libraries/main.php:
|
7541 |
msgid "Register Button"
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#: app/libraries/main.php:
|
7545 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
7546 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
7547 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
7548 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
7549 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
7550 |
-
#: app/skins/single.php:
|
7551 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
7552 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
7553 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -7559,149 +7549,157 @@ msgstr ""
|
|
7559 |
msgid "REGISTER"
|
7560 |
msgstr "REGISZTRÁCIÓ"
|
7561 |
|
7562 |
-
#: app/libraries/main.php:
|
7563 |
msgid "View Detail Button"
|
7564 |
msgstr ""
|
7565 |
|
7566 |
-
#: app/libraries/main.php:
|
7567 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
7568 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
7569 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
7570 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
7571 |
-
#: app/skins/single.php:
|
7572 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
7573 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
7574 |
msgid "View Detail"
|
7575 |
msgstr ""
|
7576 |
|
7577 |
-
#: app/libraries/main.php:
|
7578 |
msgid "Event Detail Button"
|
7579 |
msgstr ""
|
7580 |
|
7581 |
-
#: app/libraries/main.php:
|
7582 |
msgid "Event Detail"
|
7583 |
msgstr ""
|
7584 |
|
7585 |
-
#: app/libraries/main.php:
|
7586 |
msgid "More Info Link"
|
7587 |
msgstr ""
|
7588 |
|
7589 |
-
#: app/libraries/main.php:
|
7590 |
msgid "Ticket (Singular)"
|
7591 |
msgstr ""
|
7592 |
|
7593 |
-
#: app/libraries/main.php:
|
7594 |
msgid "Tickets (Plural)"
|
7595 |
msgstr ""
|
7596 |
|
7597 |
-
#: app/libraries/main.php:
|
7598 |
msgid "EventON"
|
7599 |
msgstr ""
|
7600 |
|
7601 |
-
#: app/libraries/main.php:
|
7602 |
msgid "The Events Calendar"
|
7603 |
msgstr ""
|
7604 |
|
7605 |
-
#: app/libraries/main.php:
|
7606 |
msgid "Events Schedule WP Plugin"
|
7607 |
msgstr ""
|
7608 |
|
7609 |
-
#: app/libraries/main.php:
|
7610 |
msgid "Calendarize It"
|
7611 |
msgstr ""
|
7612 |
|
7613 |
-
#: app/libraries/main.php:
|
7614 |
msgid "Event Espresso"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
-
#: app/libraries/main.php:
|
7618 |
msgid "Events Manager (Recurring)"
|
7619 |
msgstr ""
|
7620 |
|
7621 |
-
#: app/libraries/main.php:
|
7622 |
msgid "Events Manager (Single)"
|
7623 |
msgstr ""
|
7624 |
|
7625 |
-
#: app/libraries/main.php:
|
7626 |
msgid "Confirmed"
|
7627 |
msgstr ""
|
7628 |
|
7629 |
-
#: app/libraries/main.php:
|
7630 |
msgid "Rejected"
|
7631 |
msgstr ""
|
7632 |
|
7633 |
-
#: app/libraries/main.php:
|
7634 |
msgid "Pending"
|
7635 |
msgstr ""
|
7636 |
|
7637 |
-
#: app/libraries/main.php:
|
7638 |
msgid "Waiting"
|
7639 |
msgstr ""
|
7640 |
|
7641 |
-
#: app/libraries/main.php:
|
7642 |
msgid "Sun"
|
7643 |
msgstr ""
|
7644 |
|
7645 |
-
#: app/libraries/main.php:
|
7646 |
msgid "Mon"
|
7647 |
msgstr ""
|
7648 |
|
7649 |
-
#: app/libraries/main.php:
|
7650 |
msgid "Tue"
|
7651 |
msgstr ""
|
7652 |
|
7653 |
-
#: app/libraries/main.php:
|
7654 |
msgid "Wed"
|
7655 |
msgstr ""
|
7656 |
|
7657 |
-
#: app/libraries/main.php:
|
7658 |
msgid "Thu"
|
7659 |
msgstr ""
|
7660 |
|
7661 |
-
#: app/libraries/main.php:
|
7662 |
msgid "Fri"
|
7663 |
msgstr ""
|
7664 |
|
7665 |
-
#: app/libraries/main.php:
|
7666 |
msgid "Sat"
|
7667 |
msgstr ""
|
7668 |
|
7669 |
-
#: app/libraries/main.php:
|
7670 |
#: app/libraries/render.php:432
|
7671 |
msgid "Skin controller does not exist."
|
7672 |
msgstr ""
|
7673 |
|
7674 |
-
#: app/libraries/main.php:
|
7675 |
msgid "Sold Out"
|
7676 |
msgstr ""
|
7677 |
|
7678 |
-
#: app/libraries/main.php:
|
7679 |
#, fuzzy
|
7680 |
#| msgid "First name"
|
7681 |
msgid "Last Few Tickets"
|
7682 |
msgstr "Keresztnév"
|
7683 |
|
7684 |
-
#: app/libraries/main.php:
|
7685 |
#, fuzzy
|
7686 |
#| msgid "hours"
|
7687 |
msgid "Hours"
|
7688 |
msgstr "óra"
|
7689 |
|
7690 |
-
#: app/libraries/main.php:
|
7691 |
#, fuzzy
|
7692 |
#| msgid "minutes"
|
7693 |
msgid "Minutes"
|
7694 |
msgstr "perc"
|
7695 |
|
7696 |
-
#: app/libraries/main.php:
|
7697 |
msgid "AM / PM"
|
7698 |
msgstr ""
|
7699 |
|
7700 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7701 |
msgid "Ongoing..."
|
7702 |
msgstr ""
|
7703 |
|
7704 |
-
#: app/libraries/main.php:
|
7705 |
msgid "Expired!"
|
7706 |
msgstr ""
|
7707 |
|
@@ -7709,76 +7707,84 @@ msgstr ""
|
|
7709 |
msgid "Please verify your email."
|
7710 |
msgstr ""
|
7711 |
|
7712 |
-
#: app/libraries/notifications.php:
|
7713 |
msgid "Your booking is received."
|
7714 |
msgstr ""
|
7715 |
|
7716 |
-
#: app/libraries/notifications.php:
|
7717 |
msgid "Your booking is confirmed."
|
7718 |
msgstr ""
|
7719 |
|
7720 |
-
#: app/libraries/notifications.php:
|
7721 |
#, fuzzy
|
7722 |
#| msgid "Bookings"
|
7723 |
msgid "booking canceled."
|
7724 |
msgstr "Foglalások"
|
7725 |
|
7726 |
-
#: app/libraries/notifications.php:
|
7727 |
msgid "A new booking is received."
|
7728 |
msgstr ""
|
7729 |
|
7730 |
-
#: app/libraries/notifications.php:
|
7731 |
msgid "A new event is added."
|
7732 |
msgstr ""
|
7733 |
|
7734 |
-
#: app/libraries/notifications.php:
|
7735 |
msgid "Your event is published."
|
7736 |
msgstr ""
|
7737 |
|
7738 |
-
#: app/libraries/notifications.php:
|
7739 |
#, php-format
|
7740 |
msgid "%s to %s"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
-
#: app/libraries/notifications.php:
|
7744 |
-
#: app/libraries/notifications.php:
|
7745 |
msgid "to"
|
7746 |
msgstr ""
|
7747 |
|
7748 |
-
#: app/libraries/notifications.php:
|
7749 |
msgid "+ Add to Google Calendar"
|
7750 |
msgstr "+ Google Naptárba mentés"
|
7751 |
|
7752 |
-
#: app/libraries/notifications.php:
|
7753 |
msgid "+ iCal export"
|
7754 |
msgstr "+ iCal Exportálás"
|
7755 |
|
7756 |
-
#: app/libraries/notifications.php:
|
7757 |
msgid "Yes"
|
7758 |
msgstr ""
|
7759 |
|
7760 |
-
#: app/libraries/notifications.php:
|
7761 |
msgid "No"
|
7762 |
msgstr ""
|
7763 |
|
7764 |
-
#: app/libraries/skins.php:
|
7765 |
msgid "Select"
|
7766 |
msgstr ""
|
7767 |
|
7768 |
-
#: app/modules/attendees-list/details.php:
|
7769 |
msgid "Event Attendees"
|
7770 |
msgstr ""
|
7771 |
|
7772 |
-
#: app/modules/attendees-list/details.php:
|
7773 |
msgid "No attendee found! Be the first one to book!"
|
7774 |
msgstr ""
|
7775 |
|
7776 |
-
#: app/modules/attendees-list/details.php:
|
7777 |
#, fuzzy
|
7778 |
#| msgid "First name"
|
7779 |
msgid "tickets"
|
7780 |
msgstr "Keresztnév"
|
7781 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7782 |
#: app/modules/booking/steps/checkout.php:37
|
7783 |
msgid "Checkout"
|
7784 |
msgstr "Ellenőrzés"
|
@@ -7828,27 +7834,27 @@ msgstr "Jelentkezési lap"
|
|
7828 |
msgid "Fill other attendees information like the first form."
|
7829 |
msgstr ""
|
7830 |
|
7831 |
-
#: app/modules/booking/steps/tickets.php:
|
7832 |
msgid "Book Event"
|
7833 |
msgstr "Foglalás az eseményre"
|
7834 |
|
7835 |
-
#: app/modules/booking/steps/tickets.php:
|
7836 |
#, fuzzy
|
7837 |
#| msgid "Tickets Price"
|
7838 |
msgid "1 Ticket selected."
|
7839 |
msgstr "Jegy(ek) ára"
|
7840 |
|
7841 |
-
#: app/modules/booking/steps/tickets.php:
|
7842 |
#, php-format
|
7843 |
msgid "Available %s: <span>%s</span>"
|
7844 |
msgstr ""
|
7845 |
|
7846 |
-
#: app/modules/booking/steps/tickets.php:
|
7847 |
#, php-format
|
7848 |
msgid "The %s ticket sales has stopped!"
|
7849 |
msgstr ""
|
7850 |
|
7851 |
-
#: app/modules/booking/steps/tickets.php:
|
7852 |
#, php-format
|
7853 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
7854 |
msgstr ""
|
@@ -7869,7 +7875,7 @@ msgstr "Honnan"
|
|
7869 |
msgid "Get Directions"
|
7870 |
msgstr ""
|
7871 |
|
7872 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
7873 |
msgid "Share this event"
|
7874 |
msgstr ""
|
7875 |
|
@@ -7920,7 +7926,7 @@ msgstr ""
|
|
7920 |
msgid "Go to occurrence page"
|
7921 |
msgstr ""
|
7922 |
|
7923 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
7924 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
7925 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
7926 |
msgid "Time"
|
@@ -8050,24 +8056,24 @@ msgstr ""
|
|
8050 |
msgid "No Events"
|
8051 |
msgstr ""
|
8052 |
|
8053 |
-
#: app/skins/single.php:
|
8054 |
msgid "Home"
|
8055 |
msgstr ""
|
8056 |
|
8057 |
-
#: app/skins/single.php:
|
8058 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8059 |
#: app/skins/single/modern.php:292
|
8060 |
msgid "Sold out!"
|
8061 |
msgstr ""
|
8062 |
|
8063 |
-
#: app/skins/single.php:
|
8064 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8065 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8066 |
#: app/skins/single/modern.php:55
|
8067 |
msgid "Phone"
|
8068 |
msgstr ""
|
8069 |
|
8070 |
-
#: app/skins/single.php:
|
8071 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8072 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8073 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -8076,7 +8082,7 @@ msgstr ""
|
|
8076 |
msgid "Website"
|
8077 |
msgstr "Honlap"
|
8078 |
|
8079 |
-
#: app/skins/single.php:
|
8080 |
msgid "Speakers:"
|
8081 |
msgstr ""
|
8082 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-06-16 16:47+0430\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: hu_HU\n"
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr ""
|
303 |
msgstr ""
|
304 |
|
305 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
306 |
+
#: app/features/popup/event.php:252
|
307 |
msgid "View Event"
|
308 |
msgstr ""
|
309 |
|
325 |
#: app/features/mec/meta_boxes/search_form.php:654
|
326 |
#: app/features/mec/meta_boxes/search_form.php:760
|
327 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
328 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
329 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
330 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
331 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
332 |
#: app/skins/single/modern.php:137
|
336 |
#: app/features/events.php:186 app/features/events.php:3193
|
337 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
338 |
#: app/features/mec/meta_boxes/filter.php:69
|
339 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
340 |
msgid "Categories"
|
341 |
msgstr ""
|
342 |
|
421 |
msgstr ""
|
422 |
|
423 |
#: app/features/events.php:336 app/features/events.php:1215
|
424 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
425 |
msgid "Hourly Schedule"
|
426 |
msgstr "Programterv"
|
427 |
|
453 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
454 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
455 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
456 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
457 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
458 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
459 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
460 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
461 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
462 |
msgid "Organizer"
|
463 |
msgstr "Szervező"
|
464 |
|
465 |
#: app/features/events.php:340 app/features/events.php:1092
|
466 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
467 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
468 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
469 |
#: app/skins/single/modern.php:234
|
470 |
msgid "Cost"
|
486 |
#: app/features/events.php:3769 app/features/fes.php:223
|
487 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
488 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
489 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
490 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
491 |
msgid "Name"
|
492 |
msgstr "Név"
|
493 |
|
499 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
500 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
501 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
502 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
503 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
504 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
505 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
506 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
507 |
#: app/skins/single/modern.php:62
|
517 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
518 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
519 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
520 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
521 |
#: app/features/mec/meta_boxes/display_options.php:278
|
522 |
#: app/features/mec/meta_boxes/display_options.php:517
|
523 |
#: app/features/mec/meta_boxes/display_options.php:623
|
541 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
542 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
543 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
544 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
545 |
msgid "End Date"
|
546 |
msgstr ""
|
547 |
|
548 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
549 |
+
#: app/features/popup/event.php:109
|
550 |
msgid "All-day Event"
|
551 |
msgstr ""
|
552 |
|
578 |
#: app/features/events.php:2151 app/features/events.php:2166
|
579 |
#: app/features/events.php:2196 app/features/events.php:2209
|
580 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
581 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
582 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
583 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
584 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
642 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
643 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
644 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
645 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
646 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
647 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
648 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
649 |
#: app/skins/single/modern.php:160
|
663 |
msgstr ""
|
664 |
|
665 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
666 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
667 |
#: app/skins/full_calendar/tpl.php:121
|
668 |
msgid "Daily"
|
669 |
msgstr ""
|
687 |
msgstr ""
|
688 |
|
689 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
690 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
691 |
#: app/skins/full_calendar/tpl.php:119
|
692 |
msgid "Monthly"
|
693 |
msgstr ""
|
694 |
|
695 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
696 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
697 |
#: app/skins/full_calendar/tpl.php:118
|
698 |
msgid "Yearly"
|
699 |
msgstr ""
|
817 |
#: app/features/events.php:1088 app/features/events.php:3431
|
818 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
819 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
820 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
821 |
#: app/widgets/single.php:103
|
822 |
msgid "Event Cost"
|
823 |
msgstr ""
|
833 |
#: app/features/events.php:1124 app/features/events.php:2330
|
834 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
835 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
836 |
+
#: app/modules/booking/steps/tickets.php:36
|
837 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
838 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
839 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
840 |
msgid "Date"
|
919 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
920 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
921 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
922 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
923 |
#: app/modules/speakers/details.php:18
|
924 |
msgid "Speakers"
|
925 |
msgstr ""
|
934 |
msgstr ""
|
935 |
|
936 |
#: app/features/events.php:1408 app/features/events.php:1414
|
937 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
938 |
msgid "Event Link"
|
939 |
msgstr ""
|
940 |
|
955 |
msgstr ""
|
956 |
|
957 |
#: app/features/events.php:1424 app/features/events.php:1437
|
958 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
959 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
960 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
961 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
962 |
#: app/widgets/single.php:107
|
992 |
msgstr "Foglalások"
|
993 |
|
994 |
#: app/features/events.php:1463 app/features/events.php:1605
|
995 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
996 |
+
#: app/modules/booking/steps/tickets.php:64
|
997 |
msgid "Tickets"
|
998 |
msgstr ""
|
999 |
|
1021 |
|
1022 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1023 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1024 |
+
#: app/modules/booking/steps/tickets.php:64
|
1025 |
#: app/skins/available_spot/tpl.php:142
|
1026 |
msgid "Unlimited"
|
1027 |
msgstr ""
|
1175 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1176 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1177 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1178 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1179 |
msgid "Label"
|
1180 |
msgstr ""
|
1181 |
|
1391 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1392 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1393 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1394 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1395 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1396 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1397 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1398 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1406 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1407 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1408 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1409 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1410 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1411 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1412 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1413 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1414 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1415 |
#: app/skins/single/modern.php:113
|
1451 |
|
1452 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1453 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1454 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1455 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1456 |
msgid "ID"
|
1457 |
msgstr ""
|
1473 |
|
1474 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1475 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1476 |
+
#: app/libraries/main.php:5666
|
1477 |
msgid "Ticket"
|
1478 |
msgstr ""
|
1479 |
|
1670 |
msgstr ""
|
1671 |
|
1672 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1673 |
+
#: app/features/popup/event.php:183
|
1674 |
msgid "eg. John Smith"
|
1675 |
msgstr ""
|
1676 |
|
1691 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1692 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1693 |
#: app/features/mec/meta_boxes/filter.php:72
|
1694 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1695 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1696 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1697 |
#: app/skins/single/modern.php:249
|
1698 |
msgid "Labels"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2429 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2430 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2431 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2432 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2444 |
msgid "You can show featured and canceled events by a different style!"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2448 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2449 |
+
#: app/modules/booking/steps/tickets.php:62
|
2450 |
msgid "Count"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2454 |
#: app/features/organizers.php:207
|
2455 |
msgid "Slug"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2459 |
#, php-format
|
2460 |
msgid "Event %s"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2464 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2465 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2466 |
msgid "Locations"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2470 |
+
#: app/features/locations.php:262
|
2471 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2472 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2473 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2482 |
msgid "Address"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2486 |
msgid "Enter the location address"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2490 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2491 |
msgid "Latitude"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2495 |
msgid "Geo latitude (Optional)"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2499 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2500 |
msgid "Longitude"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2504 |
msgid "Geo longitude (Optional)"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2508 |
+
#: app/features/locations.php:372
|
2509 |
#, fuzzy
|
2510 |
#| msgid "Location"
|
2511 |
msgid "Location Website"
|
2512 |
msgstr "helyszín"
|
2513 |
|
2514 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2515 |
msgid "Location Website (Optional)"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2519 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2520 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2521 |
msgid "Thumbnail"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2525 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2526 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2527 |
msgid "Upload/Add image"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2531 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2532 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2533 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2534 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2535 |
msgid "Remove image"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2539 |
msgid "Hide location"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2543 |
msgid "Insert a new location"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: app/features/locations.php:334
|
2547 |
msgid "Choose one of saved locations or insert new one below."
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2551 |
msgid "Location Name"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2555 |
msgid "eg. City Hall"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2559 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2560 |
msgid "Event Location"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2564 |
msgid "eg. City hall, Manhattan, New York"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2568 |
msgid "Latitude/Longitude"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2572 |
msgid ""
|
2573 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2574 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2577 |
"the location on the map to find lat long coordinates."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2581 |
msgid "Get Latitude and Longitude"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2585 |
+
#: app/features/popup/event.php:202
|
2586 |
msgid "Choose image"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2590 |
msgid "Don't show map in single event page"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2594 |
#, fuzzy
|
2595 |
#| msgid "Location"
|
2596 |
msgid "Other Locations"
|
2597 |
msgstr "helyszín"
|
2598 |
|
2599 |
+
#: app/features/locations.php:398
|
2600 |
msgid ""
|
2601 |
"You can select extra locations in addition to main location if you like."
|
2602 |
msgstr ""
|
2663 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2664 |
#: app/features/mec/meta_boxes/filter.php:71
|
2665 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2666 |
+
#: app/libraries/main.php:5637
|
2667 |
msgid "Organizers"
|
2668 |
msgstr ""
|
2669 |
|
2696 |
msgid "MEC - Go Pro"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2700 |
#: app/features/mec/go-pro.php:9
|
2701 |
msgid "Go Pro"
|
2702 |
msgstr ""
|
2753 |
msgid "Modal Popup"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2757 |
msgid "Total Bookings"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2761 |
msgid "Modern Events Calendar (Lite)"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2765 |
#: app/features/mec/settings.php:428
|
2766 |
msgid "Upcoming Events"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: app/features/mec.php:1201
|
2770 |
msgid "News & Updates"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: app/features/mec.php:1214
|
2774 |
msgid "Blog"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: app/features/mec.php:1214
|
2778 |
msgid "Help"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: app/features/mec.php:1260
|
2782 |
msgid "This Month"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: app/features/mec.php:1266
|
2786 |
msgid "Last Month"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: app/features/mec.php:1272
|
2790 |
msgid "This Year"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: app/features/mec.php:1278
|
2794 |
msgid "Last Year"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
+
#: app/features/mec.php:1290
|
2798 |
msgid "Bar"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: app/features/mec.php:1291
|
2802 |
msgid "Line"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
+
#: app/features/mec.php:1293
|
2806 |
msgid "Filter"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
+
#: app/features/mec.php:1309
|
2810 |
#, php-format
|
2811 |
msgid "Total Sells (%s)"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: app/features/mec.php:1337
|
2815 |
msgid "Print Calendar"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: app/features/mec.php:1352
|
2819 |
#, fuzzy
|
2820 |
#| msgid "Facebook Events"
|
2821 |
msgid "Display Events"
|
3202 |
#: app/features/mec/notifications.php:923
|
3203 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3204 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3205 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3206 |
msgid "Verified"
|
3207 |
msgstr ""
|
3208 |
|
4317 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4318 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4319 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4320 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4321 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4322 |
msgid "Speaker"
|
4323 |
msgstr ""
|
4324 |
|
4334 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4335 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4336 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4337 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4338 |
msgid "Tag"
|
4339 |
msgstr ""
|
4340 |
|
5075 |
msgstr ""
|
5076 |
|
5077 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5078 |
+
#: app/libraries/notifications.php:587
|
5079 |
msgid "Booking Reminder"
|
5080 |
msgstr ""
|
5081 |
|
5103 |
msgid "Please, insert comma to separate reminder days."
|
5104 |
msgstr ""
|
5105 |
|
5106 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5107 |
#: app/libraries/main.php:584
|
5108 |
msgid "New Event"
|
5109 |
msgstr ""
|
5301 |
msgstr ""
|
5302 |
|
5303 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5304 |
+
#: app/libraries/main.php:5644
|
5305 |
msgid "Weekdays"
|
5306 |
msgstr ""
|
5307 |
|
5966 |
msgstr ""
|
5967 |
|
5968 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
5969 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
5970 |
#, fuzzy
|
5971 |
#| msgid "Facebook Events"
|
5972 |
msgid "Related Events"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
6538 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
6539 |
msgid "Link to organizer page"
|
6540 |
msgstr ""
|
6541 |
|
6552 |
msgid "Event Main %s"
|
6553 |
msgstr ""
|
6554 |
|
6555 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
6556 |
msgid "Hide organizer"
|
6557 |
msgstr ""
|
6558 |
|
6559 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
6560 |
msgid "Insert a new organizer"
|
6561 |
msgstr ""
|
6562 |
|
6563 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
6564 |
msgid "Choose one of saved organizers or insert new one below."
|
6565 |
msgstr ""
|
6566 |
|
6567 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
6568 |
msgid "Phone number."
|
6569 |
msgstr ""
|
6570 |
|
6571 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
6572 |
msgid "eg. +1 (234) 5678"
|
6573 |
msgstr ""
|
6574 |
|
6575 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
6576 |
msgid "Email address."
|
6577 |
msgstr ""
|
6578 |
|
6579 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
6580 |
msgid "eg. john@smith.com"
|
6581 |
msgstr "például john@smith.com"
|
6582 |
|
6583 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
6584 |
msgid "eg. https://webnus.net"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
6588 |
+
#: app/skins/single.php:1152
|
6589 |
msgid "Other Organizers"
|
6590 |
msgstr ""
|
6591 |
|
6608 |
msgid "Event name is required"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6612 |
msgid "Choose one of saved locations or insert new one."
|
6613 |
msgstr ""
|
6614 |
|
6615 |
+
#: app/features/popup/event.php:130
|
6616 |
#, fuzzy
|
6617 |
#| msgid "Location"
|
6618 |
msgid "Add Location"
|
6619 |
msgstr "helyszín"
|
6620 |
|
6621 |
+
#: app/features/popup/event.php:177
|
6622 |
#, fuzzy
|
6623 |
#| msgid "Organizer"
|
6624 |
msgid "Add Organizer"
|
6625 |
msgstr "Szervező"
|
6626 |
|
6627 |
+
#: app/features/popup/event.php:217
|
6628 |
#, fuzzy
|
6629 |
#| msgid "Category"
|
6630 |
msgid "All Categories"
|
6631 |
msgstr "kategória"
|
6632 |
|
6633 |
+
#: app/features/popup/event.php:218
|
6634 |
msgid "Most Used"
|
6635 |
msgstr ""
|
6636 |
|
6637 |
+
#: app/features/popup/event.php:229
|
6638 |
#, fuzzy
|
6639 |
#| msgid "Category"
|
6640 |
msgid "Add New Category"
|
6641 |
msgstr "kategória"
|
6642 |
|
6643 |
+
#: app/features/popup/event.php:240
|
6644 |
msgid "Set Featured Image"
|
6645 |
msgstr ""
|
6646 |
|
6647 |
+
#: app/features/popup/event.php:250
|
6648 |
msgid "Your Event Has Been Created."
|
6649 |
msgstr ""
|
6650 |
|
6651 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
6652 |
msgid "Prev"
|
6653 |
msgstr ""
|
6654 |
|
6655 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
6656 |
#: app/modules/booking/steps/form.php:188
|
6657 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
6658 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
6659 |
msgid "Next"
|
6660 |
msgstr "Tovább"
|
6866 |
msgid "No search result."
|
6867 |
msgstr ""
|
6868 |
|
6869 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
6870 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
6871 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
6872 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
6873 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
6874 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
6875 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
6876 |
msgid "All Day"
|
6946 |
msgid "%s Price"
|
6947 |
msgstr ""
|
6948 |
|
6949 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
6950 |
msgid "Discount"
|
6951 |
msgstr ""
|
6952 |
|
6953 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
6954 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
6955 |
msgid "Download Invoice"
|
6956 |
msgstr ""
|
6957 |
|
6974 |
msgid "Upgrade"
|
6975 |
msgstr ""
|
6976 |
|
6977 |
+
#: app/libraries/factory.php:369
|
6978 |
msgid "day"
|
6979 |
msgstr ""
|
6980 |
|
6981 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
6982 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
6983 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
6984 |
msgid "days"
|
6985 |
msgstr "Nap"
|
6986 |
|
6987 |
+
#: app/libraries/factory.php:371
|
6988 |
msgid "hour"
|
6989 |
msgstr ""
|
6990 |
|
6991 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
6992 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
6993 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
6994 |
msgid "hours"
|
6995 |
msgstr "óra"
|
6996 |
|
6997 |
+
#: app/libraries/factory.php:373
|
6998 |
msgid "minute"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7002 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7003 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7004 |
msgid "minutes"
|
7005 |
msgstr "perc"
|
7006 |
|
7007 |
+
#: app/libraries/factory.php:375
|
7008 |
msgid "second"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7012 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7013 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7014 |
msgid "seconds"
|
7015 |
msgstr "másodperc"
|
7016 |
|
7017 |
+
#: app/libraries/factory.php:428
|
7018 |
msgid "MEC Single Sidebar"
|
7019 |
msgstr ""
|
7020 |
|
7021 |
+
#: app/libraries/factory.php:429
|
7022 |
msgid "Custom sidebar for single and modal page of MEC."
|
7023 |
msgstr ""
|
7024 |
|
7080 |
msgid "Timeline View"
|
7081 |
msgstr ""
|
7082 |
|
7083 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7084 |
msgid "SU"
|
7085 |
msgstr ""
|
7086 |
|
7087 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7088 |
msgid "MO"
|
7089 |
msgstr ""
|
7090 |
|
7091 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7092 |
msgid "TU"
|
7093 |
msgstr ""
|
7094 |
|
7095 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7096 |
msgid "WE"
|
7097 |
msgstr ""
|
7098 |
|
7099 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7100 |
msgid "TH"
|
7101 |
msgstr ""
|
7102 |
|
7103 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7104 |
msgid "FR"
|
7105 |
msgstr ""
|
7106 |
|
7107 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7108 |
msgid "SA"
|
7109 |
msgstr ""
|
7110 |
|
7413 |
msgid "Free"
|
7414 |
msgstr "Ingyenes"
|
7415 |
|
7416 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
7417 |
msgid "M.E. Calender"
|
7418 |
msgstr ""
|
7419 |
|
7420 |
+
#: app/libraries/main.php:4105
|
7421 |
#, php-format
|
7422 |
msgid "Copy of %s"
|
7423 |
msgstr ""
|
7424 |
|
7425 |
+
#: app/libraries/main.php:4923
|
7426 |
msgid "Booked an event."
|
7427 |
msgstr ""
|
7428 |
|
7429 |
+
#: app/libraries/main.php:4964
|
7430 |
#, php-format
|
7431 |
msgid "%s booked %s event."
|
7432 |
msgstr ""
|
7433 |
|
7434 |
+
#: app/libraries/main.php:5629
|
7435 |
msgid "Taxonomies"
|
7436 |
msgstr ""
|
7437 |
|
7438 |
+
#: app/libraries/main.php:5631
|
7439 |
msgid "Category Plural Label"
|
7440 |
msgstr ""
|
7441 |
|
7442 |
+
#: app/libraries/main.php:5632
|
7443 |
msgid "Category Singular Label"
|
7444 |
msgstr ""
|
7445 |
|
7446 |
+
#: app/libraries/main.php:5633
|
7447 |
msgid "Label Plural Label"
|
7448 |
msgstr ""
|
7449 |
|
7450 |
+
#: app/libraries/main.php:5634
|
7451 |
msgid "Label Singular Label"
|
7452 |
msgstr ""
|
7453 |
|
7454 |
+
#: app/libraries/main.php:5634
|
7455 |
msgid "label"
|
7456 |
msgstr ""
|
7457 |
|
7458 |
+
#: app/libraries/main.php:5635
|
7459 |
msgid "Location Plural Label"
|
7460 |
msgstr ""
|
7461 |
|
7462 |
+
#: app/libraries/main.php:5636
|
7463 |
msgid "Location Singular Label"
|
7464 |
msgstr ""
|
7465 |
|
7466 |
+
#: app/libraries/main.php:5637
|
7467 |
msgid "Organizer Plural Label"
|
7468 |
msgstr ""
|
7469 |
|
7470 |
+
#: app/libraries/main.php:5638
|
7471 |
msgid "Organizer Singular Label"
|
7472 |
msgstr ""
|
7473 |
|
7474 |
+
#: app/libraries/main.php:5639
|
7475 |
msgid "Speaker Plural Label"
|
7476 |
msgstr ""
|
7477 |
|
7478 |
+
#: app/libraries/main.php:5640
|
7479 |
msgid "Speaker Singular Label"
|
7480 |
msgstr ""
|
7481 |
|
7482 |
+
#: app/libraries/main.php:5646
|
7483 |
msgid "Sunday abbreviation"
|
7484 |
msgstr ""
|
7485 |
|
7486 |
+
#: app/libraries/main.php:5647
|
7487 |
msgid "Monday abbreviation"
|
7488 |
msgstr ""
|
7489 |
|
7490 |
+
#: app/libraries/main.php:5648
|
7491 |
msgid "Tuesday abbreviation"
|
7492 |
msgstr ""
|
7493 |
|
7494 |
+
#: app/libraries/main.php:5649
|
7495 |
msgid "Wednesday abbreviation"
|
7496 |
msgstr ""
|
7497 |
|
7498 |
+
#: app/libraries/main.php:5650
|
7499 |
msgid "Thursday abbreviation"
|
7500 |
msgstr ""
|
7501 |
|
7502 |
+
#: app/libraries/main.php:5651
|
7503 |
msgid "Friday abbreviation"
|
7504 |
msgstr ""
|
7505 |
|
7506 |
+
#: app/libraries/main.php:5652
|
7507 |
msgid "Saturday abbreviation"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
+
#: app/libraries/main.php:5656
|
7511 |
msgid "Others"
|
7512 |
msgstr ""
|
7513 |
|
7514 |
+
#: app/libraries/main.php:5658
|
7515 |
msgid "Booking Success Message"
|
7516 |
msgstr ""
|
7517 |
|
7518 |
+
#: app/libraries/main.php:5658
|
7519 |
#, fuzzy
|
7520 |
#| msgid ""
|
7521 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
7527 |
"Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
|
7528 |
"jóváhagyásra lesz szükség!"
|
7529 |
|
7530 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
7531 |
msgid "Register Button"
|
7532 |
msgstr ""
|
7533 |
|
7534 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
7535 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
7536 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
7537 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
7538 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
7539 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
7540 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
7541 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
7542 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
7543 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
7549 |
msgid "REGISTER"
|
7550 |
msgstr "REGISZTRÁCIÓ"
|
7551 |
|
7552 |
+
#: app/libraries/main.php:5660
|
7553 |
msgid "View Detail Button"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
7557 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
7558 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
7559 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
7560 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
7561 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
7562 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
7563 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
7564 |
msgid "View Detail"
|
7565 |
msgstr ""
|
7566 |
|
7567 |
+
#: app/libraries/main.php:5661
|
7568 |
msgid "Event Detail Button"
|
7569 |
msgstr ""
|
7570 |
|
7571 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
7572 |
msgid "Event Detail"
|
7573 |
msgstr ""
|
7574 |
|
7575 |
+
#: app/libraries/main.php:5663
|
7576 |
msgid "More Info Link"
|
7577 |
msgstr ""
|
7578 |
|
7579 |
+
#: app/libraries/main.php:5666
|
7580 |
msgid "Ticket (Singular)"
|
7581 |
msgstr ""
|
7582 |
|
7583 |
+
#: app/libraries/main.php:5667
|
7584 |
msgid "Tickets (Plural)"
|
7585 |
msgstr ""
|
7586 |
|
7587 |
+
#: app/libraries/main.php:5754
|
7588 |
msgid "EventON"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
+
#: app/libraries/main.php:5755
|
7592 |
msgid "The Events Calendar"
|
7593 |
msgstr ""
|
7594 |
|
7595 |
+
#: app/libraries/main.php:5756
|
7596 |
msgid "Events Schedule WP Plugin"
|
7597 |
msgstr ""
|
7598 |
|
7599 |
+
#: app/libraries/main.php:5757
|
7600 |
msgid "Calendarize It"
|
7601 |
msgstr ""
|
7602 |
|
7603 |
+
#: app/libraries/main.php:5758
|
7604 |
msgid "Event Espresso"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
+
#: app/libraries/main.php:5759
|
7608 |
msgid "Events Manager (Recurring)"
|
7609 |
msgstr ""
|
7610 |
|
7611 |
+
#: app/libraries/main.php:5760
|
7612 |
msgid "Events Manager (Single)"
|
7613 |
msgstr ""
|
7614 |
|
7615 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
7616 |
msgid "Confirmed"
|
7617 |
msgstr ""
|
7618 |
|
7619 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
7620 |
msgid "Rejected"
|
7621 |
msgstr ""
|
7622 |
|
7623 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
7624 |
msgid "Pending"
|
7625 |
msgstr ""
|
7626 |
|
7627 |
+
#: app/libraries/main.php:5882
|
7628 |
msgid "Waiting"
|
7629 |
msgstr ""
|
7630 |
|
7631 |
+
#: app/libraries/main.php:5925
|
7632 |
msgid "Sun"
|
7633 |
msgstr ""
|
7634 |
|
7635 |
+
#: app/libraries/main.php:5925
|
7636 |
msgid "Mon"
|
7637 |
msgstr ""
|
7638 |
|
7639 |
+
#: app/libraries/main.php:5925
|
7640 |
msgid "Tue"
|
7641 |
msgstr ""
|
7642 |
|
7643 |
+
#: app/libraries/main.php:5925
|
7644 |
msgid "Wed"
|
7645 |
msgstr ""
|
7646 |
|
7647 |
+
#: app/libraries/main.php:5925
|
7648 |
msgid "Thu"
|
7649 |
msgstr ""
|
7650 |
|
7651 |
+
#: app/libraries/main.php:5925
|
7652 |
msgid "Fri"
|
7653 |
msgstr ""
|
7654 |
|
7655 |
+
#: app/libraries/main.php:5925
|
7656 |
msgid "Sat"
|
7657 |
msgstr ""
|
7658 |
|
7659 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
7660 |
#: app/libraries/render.php:432
|
7661 |
msgid "Skin controller does not exist."
|
7662 |
msgstr ""
|
7663 |
|
7664 |
+
#: app/libraries/main.php:6302
|
7665 |
msgid "Sold Out"
|
7666 |
msgstr ""
|
7667 |
|
7668 |
+
#: app/libraries/main.php:6310
|
7669 |
#, fuzzy
|
7670 |
#| msgid "First name"
|
7671 |
msgid "Last Few Tickets"
|
7672 |
msgstr "Keresztnév"
|
7673 |
|
7674 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
7675 |
#, fuzzy
|
7676 |
#| msgid "hours"
|
7677 |
msgid "Hours"
|
7678 |
msgstr "óra"
|
7679 |
|
7680 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
7681 |
#, fuzzy
|
7682 |
#| msgid "minutes"
|
7683 |
msgid "Minutes"
|
7684 |
msgstr "perc"
|
7685 |
|
7686 |
+
#: app/libraries/main.php:6652
|
7687 |
msgid "AM / PM"
|
7688 |
msgstr ""
|
7689 |
|
7690 |
+
#: app/libraries/main.php:6653
|
7691 |
+
msgid "AM"
|
7692 |
+
msgstr ""
|
7693 |
+
|
7694 |
+
#: app/libraries/main.php:6654
|
7695 |
+
msgid "PM"
|
7696 |
+
msgstr ""
|
7697 |
+
|
7698 |
+
#: app/libraries/main.php:6662
|
7699 |
msgid "Ongoing..."
|
7700 |
msgstr ""
|
7701 |
|
7702 |
+
#: app/libraries/main.php:6663
|
7703 |
msgid "Expired!"
|
7704 |
msgstr ""
|
7705 |
|
7707 |
msgid "Please verify your email."
|
7708 |
msgstr ""
|
7709 |
|
7710 |
+
#: app/libraries/notifications.php:158
|
7711 |
msgid "Your booking is received."
|
7712 |
msgstr ""
|
7713 |
|
7714 |
+
#: app/libraries/notifications.php:268
|
7715 |
msgid "Your booking is confirmed."
|
7716 |
msgstr ""
|
7717 |
|
7718 |
+
#: app/libraries/notifications.php:425
|
7719 |
#, fuzzy
|
7720 |
#| msgid "Bookings"
|
7721 |
msgid "booking canceled."
|
7722 |
msgstr "Foglalások"
|
7723 |
|
7724 |
+
#: app/libraries/notifications.php:503
|
7725 |
msgid "A new booking is received."
|
7726 |
msgstr ""
|
7727 |
|
7728 |
+
#: app/libraries/notifications.php:707
|
7729 |
msgid "A new event is added."
|
7730 |
msgstr ""
|
7731 |
|
7732 |
+
#: app/libraries/notifications.php:779
|
7733 |
msgid "Your event is published."
|
7734 |
msgstr ""
|
7735 |
|
7736 |
+
#: app/libraries/notifications.php:912
|
7737 |
#, php-format
|
7738 |
msgid "%s to %s"
|
7739 |
msgstr ""
|
7740 |
|
7741 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
7742 |
+
#: app/libraries/notifications.php:1060
|
7743 |
msgid "to"
|
7744 |
msgstr ""
|
7745 |
|
7746 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
7747 |
msgid "+ Add to Google Calendar"
|
7748 |
msgstr "+ Google Naptárba mentés"
|
7749 |
|
7750 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
7751 |
msgid "+ iCal export"
|
7752 |
msgstr "+ iCal Exportálás"
|
7753 |
|
7754 |
+
#: app/libraries/notifications.php:1139
|
7755 |
msgid "Yes"
|
7756 |
msgstr ""
|
7757 |
|
7758 |
+
#: app/libraries/notifications.php:1139
|
7759 |
msgid "No"
|
7760 |
msgstr ""
|
7761 |
|
7762 |
+
#: app/libraries/skins.php:1069
|
7763 |
msgid "Select"
|
7764 |
msgstr ""
|
7765 |
|
7766 |
+
#: app/modules/attendees-list/details.php:39
|
7767 |
msgid "Event Attendees"
|
7768 |
msgstr ""
|
7769 |
|
7770 |
+
#: app/modules/attendees-list/details.php:41
|
7771 |
msgid "No attendee found! Be the first one to book!"
|
7772 |
msgstr ""
|
7773 |
|
7774 |
+
#: app/modules/attendees-list/details.php:62
|
7775 |
#, fuzzy
|
7776 |
#| msgid "First name"
|
7777 |
msgid "tickets"
|
7778 |
msgstr "Keresztnév"
|
7779 |
|
7780 |
+
#: app/modules/attendees-list/details.php:92
|
7781 |
+
#, fuzzy, php-format
|
7782 |
+
#| msgid "First name"
|
7783 |
+
msgid "%s ticket"
|
7784 |
+
msgid_plural "%s tickets"
|
7785 |
+
msgstr[0] "Keresztnév"
|
7786 |
+
msgstr[1] "Keresztnév"
|
7787 |
+
|
7788 |
#: app/modules/booking/steps/checkout.php:37
|
7789 |
msgid "Checkout"
|
7790 |
msgstr "Ellenőrzés"
|
7834 |
msgid "Fill other attendees information like the first form."
|
7835 |
msgstr ""
|
7836 |
|
7837 |
+
#: app/modules/booking/steps/tickets.php:32
|
7838 |
msgid "Book Event"
|
7839 |
msgstr "Foglalás az eseményre"
|
7840 |
|
7841 |
+
#: app/modules/booking/steps/tickets.php:59
|
7842 |
#, fuzzy
|
7843 |
#| msgid "Tickets Price"
|
7844 |
msgid "1 Ticket selected."
|
7845 |
msgstr "Jegy(ek) ára"
|
7846 |
|
7847 |
+
#: app/modules/booking/steps/tickets.php:64
|
7848 |
#, php-format
|
7849 |
msgid "Available %s: <span>%s</span>"
|
7850 |
msgstr ""
|
7851 |
|
7852 |
+
#: app/modules/booking/steps/tickets.php:69
|
7853 |
#, php-format
|
7854 |
msgid "The %s ticket sales has stopped!"
|
7855 |
msgstr ""
|
7856 |
|
7857 |
+
#: app/modules/booking/steps/tickets.php:70
|
7858 |
#, php-format
|
7859 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
7860 |
msgstr ""
|
7875 |
msgid "Get Directions"
|
7876 |
msgstr ""
|
7877 |
|
7878 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
7879 |
msgid "Share this event"
|
7880 |
msgstr ""
|
7881 |
|
7926 |
msgid "Go to occurrence page"
|
7927 |
msgstr ""
|
7928 |
|
7929 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
7930 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
7931 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
7932 |
msgid "Time"
|
8056 |
msgid "No Events"
|
8057 |
msgstr ""
|
8058 |
|
8059 |
+
#: app/skins/single.php:393
|
8060 |
msgid "Home"
|
8061 |
msgstr ""
|
8062 |
|
8063 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
8064 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8065 |
#: app/skins/single/modern.php:292
|
8066 |
msgid "Sold out!"
|
8067 |
msgstr ""
|
8068 |
|
8069 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
8070 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8071 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8072 |
#: app/skins/single/modern.php:55
|
8073 |
msgid "Phone"
|
8074 |
msgstr ""
|
8075 |
|
8076 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
8077 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8078 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8079 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
8082 |
msgid "Website"
|
8083 |
msgstr "Honlap"
|
8084 |
|
8085 |
+
#: app/skins/single.php:1261
|
8086 |
msgid "Speakers:"
|
8087 |
msgstr ""
|
8088 |
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-06-
|
5 |
-
"PO-Revision-Date: 2020-06-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it_IT\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr "Calendario moderno degli eventi"
|
@@ -315,7 +315,7 @@ msgid "Edit Event"
|
|
315 |
msgstr ""
|
316 |
|
317 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
318 |
-
#: app/features/popup/event.php:
|
319 |
msgid "View Event"
|
320 |
msgstr "Visualizza Evento"
|
321 |
|
@@ -337,8 +337,8 @@ msgstr "Nessun evento trovato nel cestino!"
|
|
337 |
#: app/features/mec/meta_boxes/search_form.php:654
|
338 |
#: app/features/mec/meta_boxes/search_form.php:760
|
339 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
340 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
341 |
-
#: app/libraries/skins.php:
|
342 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
343 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
344 |
#: app/skins/single/modern.php:137
|
@@ -348,7 +348,7 @@ msgstr "Categoria"
|
|
348 |
#: app/features/events.php:186 app/features/events.php:3193
|
349 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
350 |
#: app/features/mec/meta_boxes/filter.php:69
|
351 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
352 |
msgid "Categories"
|
353 |
msgstr "Categorie"
|
354 |
|
@@ -437,7 +437,7 @@ msgid "Event Repeating"
|
|
437 |
msgstr "Ripetizione dell'evento"
|
438 |
|
439 |
#: app/features/events.php:336 app/features/events.php:1215
|
440 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
441 |
msgid "Hourly Schedule"
|
442 |
msgstr "Schedula per Ore"
|
443 |
|
@@ -471,18 +471,18 @@ msgstr "Link"
|
|
471 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
472 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
473 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
474 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
475 |
-
#: app/features/popup/event.php:
|
476 |
-
#: app/libraries/main.php:
|
477 |
-
#: app/skins/single.php:
|
478 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
479 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
480 |
msgid "Organizer"
|
481 |
msgstr "Organizzatore"
|
482 |
|
483 |
#: app/features/events.php:340 app/features/events.php:1092
|
484 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
485 |
-
#: app/skins/single.php:
|
486 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
487 |
#: app/skins/single/modern.php:234
|
488 |
msgid "Cost"
|
@@ -504,8 +504,8 @@ msgstr "Dati dell'ospite"
|
|
504 |
#: app/features/events.php:3769 app/features/fes.php:223
|
505 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
506 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
507 |
-
#: app/features/popup/event.php:
|
508 |
-
#: app/libraries/notifications.php:
|
509 |
msgid "Name"
|
510 |
msgstr "Nome"
|
511 |
|
@@ -517,9 +517,9 @@ msgstr "Nome"
|
|
517 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
518 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
519 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
520 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
521 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
522 |
-
#: app/skins/single.php:
|
523 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
524 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
525 |
#: app/skins/single/modern.php:62
|
@@ -535,7 +535,7 @@ msgstr "Data e Ora"
|
|
535 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
536 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
537 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
538 |
-
#: app/features/mec.php:
|
539 |
#: app/features/mec/meta_boxes/display_options.php:278
|
540 |
#: app/features/mec/meta_boxes/display_options.php:517
|
541 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -559,12 +559,12 @@ msgstr "Data di inizio"
|
|
559 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
560 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
561 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
562 |
-
#: app/features/mec.php:
|
563 |
msgid "End Date"
|
564 |
msgstr "Data di fine"
|
565 |
|
566 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
567 |
-
#: app/features/popup/event.php:
|
568 |
#, fuzzy
|
569 |
#| msgid "All Day Event"
|
570 |
msgid "All-day Event"
|
@@ -606,7 +606,7 @@ msgstr ""
|
|
606 |
#: app/features/events.php:2151 app/features/events.php:2166
|
607 |
#: app/features/events.php:2196 app/features/events.php:2209
|
608 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
609 |
-
#: app/features/locations.php:
|
610 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
611 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
612 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -670,8 +670,8 @@ msgstr ""
|
|
670 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
671 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
672 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
673 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
674 |
-
#: app/features/popup/event.php:
|
675 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
676 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
677 |
#: app/skins/single/modern.php:160
|
@@ -695,7 +695,7 @@ msgid "Repeats"
|
|
695 |
msgstr "Ripeti"
|
696 |
|
697 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
698 |
-
#: app/features/mec.php:
|
699 |
#: app/skins/full_calendar/tpl.php:121
|
700 |
msgid "Daily"
|
701 |
msgstr "Giornaliero"
|
@@ -719,13 +719,13 @@ msgid "Weekly"
|
|
719 |
msgstr "Settimanale"
|
720 |
|
721 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
722 |
-
#: app/features/mec.php:
|
723 |
#: app/skins/full_calendar/tpl.php:119
|
724 |
msgid "Monthly"
|
725 |
msgstr "Mensile"
|
726 |
|
727 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
728 |
-
#: app/features/mec.php:
|
729 |
#: app/skins/full_calendar/tpl.php:118
|
730 |
msgid "Yearly"
|
731 |
msgstr "Annuale"
|
@@ -863,7 +863,7 @@ msgstr "Il prossimo evento degli altri eventi"
|
|
863 |
#: app/features/events.php:1088 app/features/events.php:3431
|
864 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
865 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
866 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
867 |
#: app/widgets/single.php:103
|
868 |
msgid "Event Cost"
|
869 |
msgstr "Costo Evento"
|
@@ -881,8 +881,8 @@ msgstr "Escludi certi giorni"
|
|
881 |
#: app/features/events.php:1124 app/features/events.php:2330
|
882 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
883 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
884 |
-
#: app/modules/booking/steps/tickets.php:
|
885 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
886 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
887 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
888 |
msgid "Date"
|
@@ -967,7 +967,7 @@ msgstr "Descrizione"
|
|
967 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
968 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
969 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
970 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
971 |
#: app/modules/speakers/details.php:18
|
972 |
msgid "Speakers"
|
973 |
msgstr ""
|
@@ -984,7 +984,7 @@ msgid "Event Links"
|
|
984 |
msgstr "Link dell'evento"
|
985 |
|
986 |
#: app/features/events.php:1408 app/features/events.php:1414
|
987 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
988 |
msgid "Event Link"
|
989 |
msgstr "Link dell'evento"
|
990 |
|
@@ -1011,8 +1011,8 @@ msgid "URL Shortener"
|
|
1011 |
msgstr ""
|
1012 |
|
1013 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1014 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
1015 |
-
#: app/skins/single.php:
|
1016 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1017 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1018 |
#: app/widgets/single.php:107
|
@@ -1051,8 +1051,8 @@ msgid "Total User Booking Limits"
|
|
1051 |
msgstr "Limite totale delle prenotazioni"
|
1052 |
|
1053 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1054 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
1055 |
-
#: app/modules/booking/steps/tickets.php:
|
1056 |
msgid "Tickets"
|
1057 |
msgstr "Biglietto/ticket"
|
1058 |
|
@@ -1080,7 +1080,7 @@ msgstr "Limite totale delle prenotazioni"
|
|
1080 |
|
1081 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1082 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1083 |
-
#: app/modules/booking/steps/tickets.php:
|
1084 |
#: app/skins/available_spot/tpl.php:142
|
1085 |
msgid "Unlimited"
|
1086 |
msgstr "Illimitato"
|
@@ -1250,7 +1250,7 @@ msgstr "Etichetta prezzo"
|
|
1250 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1251 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1252 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1253 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1254 |
msgid "Label"
|
1255 |
msgstr "Etichetta"
|
1256 |
|
@@ -1474,8 +1474,8 @@ msgstr "Limite partecipanti"
|
|
1474 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1475 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1476 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1477 |
-
#: app/features/locations.php:
|
1478 |
-
#: app/features/locations.php:
|
1479 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1480 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1481 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1489,10 +1489,10 @@ msgstr "Limite partecipanti"
|
|
1489 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1490 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1491 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1492 |
-
#: app/features/popup/event.php:
|
1493 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1494 |
-
#: app/libraries/main.php:
|
1495 |
-
#: app/skins/single.php:
|
1496 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1497 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1498 |
#: app/skins/single/modern.php:113
|
@@ -1534,7 +1534,7 @@ msgstr "Duplica"
|
|
1534 |
|
1535 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1536 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1537 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1538 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1539 |
msgid "ID"
|
1540 |
msgstr "ID"
|
@@ -1556,7 +1556,7 @@ msgstr ""
|
|
1556 |
|
1557 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1558 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1559 |
-
#: app/libraries/main.php:
|
1560 |
msgid "Ticket"
|
1561 |
msgstr "Ticket"
|
1562 |
|
@@ -1765,7 +1765,7 @@ msgid "eg. yourname@gmail.com"
|
|
1765 |
msgstr "es. iltuonome@gmail.com"
|
1766 |
|
1767 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1768 |
-
#: app/features/popup/event.php:
|
1769 |
msgid "eg. John Smith"
|
1770 |
msgstr "es. Mario Rossi"
|
1771 |
|
@@ -1792,8 +1792,8 @@ msgstr "Rimuovi immagine"
|
|
1792 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1793 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1794 |
#: app/features/mec/meta_boxes/filter.php:72
|
1795 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1796 |
-
#: app/skins/single.php:
|
1797 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1798 |
#: app/skins/single/modern.php:249
|
1799 |
msgid "Labels"
|
@@ -2610,7 +2610,7 @@ msgid "Featured"
|
|
2610 |
msgstr "Immagine in evidenza"
|
2611 |
|
2612 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2613 |
-
#: app/libraries/main.php:
|
2614 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2615 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2616 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2628,30 +2628,30 @@ msgstr "Cancellato"
|
|
2628 |
msgid "You can show featured and canceled events by a different style!"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2632 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2633 |
-
#: app/modules/booking/steps/tickets.php:
|
2634 |
msgid "Count"
|
2635 |
msgstr "Numero"
|
2636 |
|
2637 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2638 |
#: app/features/organizers.php:207
|
2639 |
msgid "Slug"
|
2640 |
msgstr "Slug"
|
2641 |
|
2642 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2643 |
#, php-format
|
2644 |
msgid "Event %s"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2648 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2649 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2650 |
msgid "Locations"
|
2651 |
msgstr "Luoghi"
|
2652 |
|
2653 |
-
#: app/features/locations.php:
|
2654 |
-
#: app/features/locations.php:
|
2655 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2656 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2657 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2666,97 +2666,97 @@ msgstr "Luoghi"
|
|
2666 |
msgid "Address"
|
2667 |
msgstr "Indirizzo"
|
2668 |
|
2669 |
-
#: app/features/locations.php:
|
2670 |
msgid "Enter the location address"
|
2671 |
msgstr "Inserisci l'indirizzo del luogo"
|
2672 |
|
2673 |
-
#: app/features/locations.php:
|
2674 |
-
#: app/features/locations.php:
|
2675 |
msgid "Latitude"
|
2676 |
msgstr "Latitudine"
|
2677 |
|
2678 |
-
#: app/features/locations.php:
|
2679 |
msgid "Geo latitude (Optional)"
|
2680 |
msgstr "Latitudine geografica (opzionale)"
|
2681 |
|
2682 |
-
#: app/features/locations.php:
|
2683 |
-
#: app/features/locations.php:
|
2684 |
msgid "Longitude"
|
2685 |
msgstr "Longitudine"
|
2686 |
|
2687 |
-
#: app/features/locations.php:
|
2688 |
msgid "Geo longitude (Optional)"
|
2689 |
msgstr "Longitudine geografica (opzionale)"
|
2690 |
|
2691 |
-
#: app/features/locations.php:
|
2692 |
-
#: app/features/locations.php:
|
2693 |
#, fuzzy
|
2694 |
#| msgid "Locations"
|
2695 |
msgid "Location Website"
|
2696 |
msgstr "Luoghi"
|
2697 |
|
2698 |
-
#: app/features/locations.php:
|
2699 |
#, fuzzy
|
2700 |
#| msgid "Geo latitude (Optional)"
|
2701 |
msgid "Location Website (Optional)"
|
2702 |
msgstr "Latitudine geografica (opzionale)"
|
2703 |
|
2704 |
-
#: app/features/locations.php:
|
2705 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2706 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2707 |
msgid "Thumbnail"
|
2708 |
msgstr "Anteprima"
|
2709 |
|
2710 |
-
#: app/features/locations.php:
|
2711 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2712 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2713 |
msgid "Upload/Add image"
|
2714 |
msgstr "Carica/Aggiungi immagine"
|
2715 |
|
2716 |
-
#: app/features/locations.php:
|
2717 |
-
#: app/features/locations.php:
|
2718 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2719 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2720 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2721 |
msgid "Remove image"
|
2722 |
msgstr "Rimuovi immagine"
|
2723 |
|
2724 |
-
#: app/features/locations.php:
|
2725 |
msgid "Hide location"
|
2726 |
msgstr "Nascondi luogo"
|
2727 |
|
2728 |
-
#: app/features/locations.php:
|
2729 |
msgid "Insert a new location"
|
2730 |
msgstr "Inserisci un nuovo luogo"
|
2731 |
|
2732 |
-
#: app/features/locations.php:
|
2733 |
msgid "Choose one of saved locations or insert new one below."
|
2734 |
msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
|
2735 |
|
2736 |
-
#: app/features/locations.php:
|
2737 |
msgid "Location Name"
|
2738 |
msgstr "Nome del luogo"
|
2739 |
|
2740 |
-
#: app/features/locations.php:
|
2741 |
msgid "eg. City Hall"
|
2742 |
msgstr "es. Città"
|
2743 |
|
2744 |
-
#: app/features/locations.php:
|
2745 |
-
#: app/features/popup/event.php:
|
2746 |
msgid "Event Location"
|
2747 |
msgstr "Luogo dell'evento"
|
2748 |
|
2749 |
-
#: app/features/locations.php:
|
2750 |
msgid "eg. City hall, Manhattan, New York"
|
2751 |
msgstr "es. Città, Roma, Campobasso"
|
2752 |
|
2753 |
-
#: app/features/locations.php:
|
2754 |
#, fuzzy
|
2755 |
#| msgid "Longitude"
|
2756 |
msgid "Latitude/Longitude"
|
2757 |
msgstr "Longitudine"
|
2758 |
|
2759 |
-
#: app/features/locations.php:
|
2760 |
msgid ""
|
2761 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2762 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2765,26 +2765,26 @@ msgid ""
|
|
2765 |
"the location on the map to find lat long coordinates."
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: app/features/locations.php:
|
2769 |
msgid "Get Latitude and Longitude"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: app/features/locations.php:
|
2773 |
-
#: app/features/popup/event.php:
|
2774 |
msgid "Choose image"
|
2775 |
msgstr "Seleziona immagine"
|
2776 |
|
2777 |
-
#: app/features/locations.php:
|
2778 |
msgid "Don't show map in single event page"
|
2779 |
msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
|
2780 |
|
2781 |
-
#: app/features/locations.php:
|
2782 |
#, fuzzy
|
2783 |
#| msgid "Search Locations"
|
2784 |
msgid "Other Locations"
|
2785 |
msgstr "Cerca luoghi"
|
2786 |
|
2787 |
-
#: app/features/locations.php:
|
2788 |
msgid ""
|
2789 |
"You can select extra locations in addition to main location if you like."
|
2790 |
msgstr ""
|
@@ -2861,7 +2861,7 @@ msgstr "Supporto"
|
|
2861 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2862 |
#: app/features/mec/meta_boxes/filter.php:71
|
2863 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2864 |
-
#: app/libraries/main.php:
|
2865 |
msgid "Organizers"
|
2866 |
msgstr "Organizzatori"
|
2867 |
|
@@ -2902,7 +2902,7 @@ msgstr "Esporta"
|
|
2902 |
msgid "MEC - Go Pro"
|
2903 |
msgstr "Supporto"
|
2904 |
|
2905 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2906 |
#: app/features/mec/go-pro.php:9
|
2907 |
msgid "Go Pro"
|
2908 |
msgstr ""
|
@@ -2959,75 +2959,75 @@ msgstr ""
|
|
2959 |
msgid "Modal Popup"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: app/features/mec.php:
|
2963 |
msgid "Total Bookings"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: app/features/mec.php:
|
2967 |
#, fuzzy
|
2968 |
#| msgid "Modern Events Calendar"
|
2969 |
msgid "Modern Events Calendar (Lite)"
|
2970 |
msgstr "Calendario moderno degli eventi"
|
2971 |
|
2972 |
-
#: app/features/mec.php:
|
2973 |
#: app/features/mec/settings.php:428
|
2974 |
msgid "Upcoming Events"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: app/features/mec.php:
|
2978 |
#, fuzzy
|
2979 |
#| msgid "Update Label"
|
2980 |
msgid "News & Updates"
|
2981 |
msgstr "Aggiorna Etichetta"
|
2982 |
|
2983 |
-
#: app/features/mec.php:
|
2984 |
msgid "Blog"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: app/features/mec.php:
|
2988 |
msgid "Help"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: app/features/mec.php:
|
2992 |
msgid "This Month"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: app/features/mec.php:
|
2996 |
msgid "Last Month"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
-
#: app/features/mec.php:
|
3000 |
msgid "This Year"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: app/features/mec.php:
|
3004 |
msgid "Last Year"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
-
#: app/features/mec.php:
|
3008 |
msgid "Bar"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: app/features/mec.php:
|
3012 |
msgid "Line"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: app/features/mec.php:
|
3016 |
msgid "Filter"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: app/features/mec.php:
|
3020 |
#, php-format
|
3021 |
msgid "Total Sells (%s)"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: app/features/mec.php:
|
3025 |
#, fuzzy
|
3026 |
#| msgid "Modern Events Calendar"
|
3027 |
msgid "Print Calendar"
|
3028 |
msgstr "Calendario moderno degli eventi"
|
3029 |
|
3030 |
-
#: app/features/mec.php:
|
3031 |
#, fuzzy
|
3032 |
#| msgid "Multiple Day Events"
|
3033 |
msgid "Display Events"
|
@@ -3432,7 +3432,7 @@ msgstr ""
|
|
3432 |
#: app/features/mec/notifications.php:923
|
3433 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3434 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3435 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3436 |
msgid "Verified"
|
3437 |
msgstr "Verificato"
|
3438 |
|
@@ -4603,8 +4603,8 @@ msgstr "Mostra il modulo di ricerca"
|
|
4603 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4604 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4605 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4606 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4607 |
-
#: app/libraries/skins.php:
|
4608 |
msgid "Speaker"
|
4609 |
msgstr ""
|
4610 |
|
@@ -4620,7 +4620,7 @@ msgstr ""
|
|
4620 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4621 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4622 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4623 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4624 |
#, fuzzy
|
4625 |
#| msgid "Tags"
|
4626 |
msgid "Tag"
|
@@ -5421,7 +5421,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
5421 |
msgstr "Invia notifica all'amministratore per una nuova prenotazione ricevuta."
|
5422 |
|
5423 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5424 |
-
#: app/libraries/notifications.php:
|
5425 |
msgid "Booking Reminder"
|
5426 |
msgstr ""
|
5427 |
|
@@ -5449,7 +5449,7 @@ msgstr ""
|
|
5449 |
msgid "Please, insert comma to separate reminder days."
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5453 |
#: app/libraries/main.php:584
|
5454 |
msgid "New Event"
|
5455 |
msgstr "Nuovo Evento"
|
@@ -5678,7 +5678,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5678 |
msgstr ""
|
5679 |
|
5680 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5681 |
-
#: app/libraries/main.php:
|
5682 |
msgid "Weekdays"
|
5683 |
msgstr "Settimanali"
|
5684 |
|
@@ -6467,7 +6467,7 @@ msgstr ""
|
|
6467 |
"Mostra opzione giorni eccezionali nella pagina Aggiungi / Modifica eventi"
|
6468 |
|
6469 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6470 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
6471 |
#, fuzzy
|
6472 |
#| msgid "featured event"
|
6473 |
msgid "Related Events"
|
@@ -7129,7 +7129,7 @@ msgid "Insert organizer email address."
|
|
7129 |
msgstr "Inserisci l'indirizzo email dell'organizzatore."
|
7130 |
|
7131 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7132 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
7133 |
msgid "Link to organizer page"
|
7134 |
msgstr "Link alla pagina dell'organizzatore"
|
7135 |
|
@@ -7148,43 +7148,43 @@ msgstr "Info di contatto"
|
|
7148 |
msgid "Event Main %s"
|
7149 |
msgstr ""
|
7150 |
|
7151 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
7152 |
msgid "Hide organizer"
|
7153 |
msgstr "Nascondi organizzatore"
|
7154 |
|
7155 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
7156 |
msgid "Insert a new organizer"
|
7157 |
msgstr "Inserisci un nuovo organizzatore"
|
7158 |
|
7159 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
7160 |
msgid "Choose one of saved organizers or insert new one below."
|
7161 |
msgstr ""
|
7162 |
"Seleziona uno tra gli organizzatori salvati oppure inserisci uni nuovo."
|
7163 |
|
7164 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
7165 |
msgid "Phone number."
|
7166 |
msgstr ""
|
7167 |
|
7168 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
7169 |
msgid "eg. +1 (234) 5678"
|
7170 |
msgstr "es. +1 (234) 5678"
|
7171 |
|
7172 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
7173 |
msgid "Email address."
|
7174 |
msgstr ""
|
7175 |
|
7176 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
7177 |
msgid "eg. john@smith.com"
|
7178 |
msgstr "es. mario@rossi.it"
|
7179 |
|
7180 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
7181 |
#, fuzzy
|
7182 |
#| msgid "http://webnus.biz"
|
7183 |
msgid "eg. https://webnus.net"
|
7184 |
msgstr "http://webnus.biz"
|
7185 |
|
7186 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
7187 |
-
#: app/skins/single.php:
|
7188 |
msgid "Other Organizers"
|
7189 |
msgstr ""
|
7190 |
|
@@ -7209,67 +7209,57 @@ msgstr "Note dell'evento"
|
|
7209 |
msgid "Event name is required"
|
7210 |
msgstr ""
|
7211 |
|
7212 |
-
#: app/features/popup/event.php:
|
7213 |
-
#: app/libraries/main.php:6643
|
7214 |
-
msgid "AM"
|
7215 |
-
msgstr "AM"
|
7216 |
-
|
7217 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
7218 |
-
#: app/libraries/main.php:6644
|
7219 |
-
msgid "PM"
|
7220 |
-
msgstr "PM"
|
7221 |
-
|
7222 |
-
#: app/features/popup/event.php:256
|
7223 |
#, fuzzy
|
7224 |
#| msgid "Choose one of saved locations or insert new one below."
|
7225 |
msgid "Choose one of saved locations or insert new one."
|
7226 |
msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
|
7227 |
|
7228 |
-
#: app/features/popup/event.php:
|
7229 |
#, fuzzy
|
7230 |
#| msgid "Add New Location"
|
7231 |
msgid "Add Location"
|
7232 |
msgstr "Aggiungi nuovo Luogo"
|
7233 |
|
7234 |
-
#: app/features/popup/event.php:
|
7235 |
#, fuzzy
|
7236 |
#| msgid "Add New Organizer"
|
7237 |
msgid "Add Organizer"
|
7238 |
msgstr "Aggiungi nuovo Organizzatore"
|
7239 |
|
7240 |
-
#: app/features/popup/event.php:
|
7241 |
#, fuzzy
|
7242 |
#| msgid "Categories"
|
7243 |
msgid "All Categories"
|
7244 |
msgstr "Categorie"
|
7245 |
|
7246 |
-
#: app/features/popup/event.php:
|
7247 |
msgid "Most Used"
|
7248 |
msgstr ""
|
7249 |
|
7250 |
-
#: app/features/popup/event.php:
|
7251 |
#, fuzzy
|
7252 |
#| msgid "Add New Label"
|
7253 |
msgid "Add New Category"
|
7254 |
msgstr "Aggiungi nuova Etichetta"
|
7255 |
|
7256 |
-
#: app/features/popup/event.php:
|
7257 |
#, fuzzy
|
7258 |
#| msgid "Featured Image"
|
7259 |
msgid "Set Featured Image"
|
7260 |
msgstr "Immagine in evidenza"
|
7261 |
|
7262 |
-
#: app/features/popup/event.php:
|
7263 |
msgid "Your Event Has Been Created."
|
7264 |
msgstr ""
|
7265 |
|
7266 |
-
#: app/features/popup/event.php:
|
7267 |
msgid "Prev"
|
7268 |
msgstr ""
|
7269 |
|
7270 |
-
#: app/features/popup/event.php:
|
7271 |
#: app/modules/booking/steps/form.php:188
|
7272 |
-
#: app/modules/booking/steps/tickets.php:
|
7273 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7274 |
msgid "Next"
|
7275 |
msgstr "Avanti"
|
@@ -7512,11 +7502,11 @@ msgstr "Casella di ricerca"
|
|
7512 |
msgid "No search result."
|
7513 |
msgstr ""
|
7514 |
|
7515 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7516 |
-
#: app/libraries/notifications.php:
|
7517 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7518 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7519 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
7520 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7521 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7522 |
#, fuzzy
|
@@ -7614,12 +7604,12 @@ msgstr ""
|
|
7614 |
msgid "%s Price"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
-
#: app/libraries/book.php:
|
7618 |
msgid "Discount"
|
7619 |
msgstr "Sconto"
|
7620 |
|
7621 |
-
#: app/libraries/book.php:
|
7622 |
-
#: app/modules/booking/default.php:
|
7623 |
msgid "Download Invoice"
|
7624 |
msgstr ""
|
7625 |
|
@@ -7642,51 +7632,51 @@ msgctxt "plugin link"
|
|
7642 |
msgid "Upgrade"
|
7643 |
msgstr ""
|
7644 |
|
7645 |
-
#: app/libraries/factory.php:
|
7646 |
msgid "day"
|
7647 |
msgstr "giorno"
|
7648 |
|
7649 |
-
#: app/libraries/factory.php:
|
7650 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7651 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7652 |
msgid "days"
|
7653 |
msgstr "giorni"
|
7654 |
|
7655 |
-
#: app/libraries/factory.php:
|
7656 |
msgid "hour"
|
7657 |
msgstr "ora"
|
7658 |
|
7659 |
-
#: app/libraries/factory.php:
|
7660 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7661 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7662 |
msgid "hours"
|
7663 |
msgstr "ore"
|
7664 |
|
7665 |
-
#: app/libraries/factory.php:
|
7666 |
msgid "minute"
|
7667 |
msgstr "minuto"
|
7668 |
|
7669 |
-
#: app/libraries/factory.php:
|
7670 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7671 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7672 |
msgid "minutes"
|
7673 |
msgstr "minuti"
|
7674 |
|
7675 |
-
#: app/libraries/factory.php:
|
7676 |
msgid "second"
|
7677 |
msgstr "secondo"
|
7678 |
|
7679 |
-
#: app/libraries/factory.php:
|
7680 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7681 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7682 |
msgid "seconds"
|
7683 |
msgstr "secondi"
|
7684 |
|
7685 |
-
#: app/libraries/factory.php:
|
7686 |
msgid "MEC Single Sidebar"
|
7687 |
msgstr ""
|
7688 |
|
7689 |
-
#: app/libraries/factory.php:
|
7690 |
msgid "Custom sidebar for single and modal page of MEC."
|
7691 |
msgstr ""
|
7692 |
|
@@ -7750,31 +7740,31 @@ msgstr "Visualizza slider"
|
|
7750 |
msgid "Timeline View"
|
7751 |
msgstr "Visualizza slider"
|
7752 |
|
7753 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7754 |
msgid "SU"
|
7755 |
msgstr "D"
|
7756 |
|
7757 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7758 |
msgid "MO"
|
7759 |
msgstr "L"
|
7760 |
|
7761 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7762 |
msgid "TU"
|
7763 |
msgstr "M"
|
7764 |
|
7765 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7766 |
msgid "WE"
|
7767 |
msgstr "M"
|
7768 |
|
7769 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7770 |
msgid "TH"
|
7771 |
msgstr "G"
|
7772 |
|
7773 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7774 |
msgid "FR"
|
7775 |
msgstr "V"
|
7776 |
|
7777 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7778 |
msgid "SA"
|
7779 |
msgstr "S"
|
7780 |
|
@@ -8109,115 +8099,115 @@ msgstr "Inserisci una etichetta per questa opzione"
|
|
8109 |
msgid "Free"
|
8110 |
msgstr "Gratuito"
|
8111 |
|
8112 |
-
#: app/libraries/main.php:
|
8113 |
#, fuzzy
|
8114 |
#| msgid "M.E. Calendar"
|
8115 |
msgid "M.E. Calender"
|
8116 |
msgstr "Calendario"
|
8117 |
|
8118 |
-
#: app/libraries/main.php:
|
8119 |
#, php-format
|
8120 |
msgid "Copy of %s"
|
8121 |
msgstr "Copia di %s"
|
8122 |
|
8123 |
-
#: app/libraries/main.php:
|
8124 |
msgid "Booked an event."
|
8125 |
msgstr "Prenotato un evento."
|
8126 |
|
8127 |
-
#: app/libraries/main.php:
|
8128 |
#, php-format
|
8129 |
msgid "%s booked %s event."
|
8130 |
msgstr "%s ha prenotato l'evento %s."
|
8131 |
|
8132 |
-
#: app/libraries/main.php:
|
8133 |
msgid "Taxonomies"
|
8134 |
msgstr ""
|
8135 |
|
8136 |
-
#: app/libraries/main.php:
|
8137 |
msgid "Category Plural Label"
|
8138 |
msgstr ""
|
8139 |
|
8140 |
-
#: app/libraries/main.php:
|
8141 |
msgid "Category Singular Label"
|
8142 |
msgstr ""
|
8143 |
|
8144 |
-
#: app/libraries/main.php:
|
8145 |
msgid "Label Plural Label"
|
8146 |
msgstr ""
|
8147 |
|
8148 |
-
#: app/libraries/main.php:
|
8149 |
msgid "Label Singular Label"
|
8150 |
msgstr ""
|
8151 |
|
8152 |
-
#: app/libraries/main.php:
|
8153 |
msgid "label"
|
8154 |
msgstr ""
|
8155 |
|
8156 |
-
#: app/libraries/main.php:
|
8157 |
msgid "Location Plural Label"
|
8158 |
msgstr ""
|
8159 |
|
8160 |
-
#: app/libraries/main.php:
|
8161 |
msgid "Location Singular Label"
|
8162 |
msgstr ""
|
8163 |
|
8164 |
-
#: app/libraries/main.php:
|
8165 |
msgid "Organizer Plural Label"
|
8166 |
msgstr ""
|
8167 |
|
8168 |
-
#: app/libraries/main.php:
|
8169 |
msgid "Organizer Singular Label"
|
8170 |
msgstr ""
|
8171 |
|
8172 |
-
#: app/libraries/main.php:
|
8173 |
#, fuzzy
|
8174 |
#| msgid "Search Labels"
|
8175 |
msgid "Speaker Plural Label"
|
8176 |
msgstr "Cerca etichette"
|
8177 |
|
8178 |
-
#: app/libraries/main.php:
|
8179 |
#, fuzzy
|
8180 |
#| msgid "Popular Labels"
|
8181 |
msgid "Speaker Singular Label"
|
8182 |
msgstr "Etichette frequenti"
|
8183 |
|
8184 |
-
#: app/libraries/main.php:
|
8185 |
msgid "Sunday abbreviation"
|
8186 |
msgstr ""
|
8187 |
|
8188 |
-
#: app/libraries/main.php:
|
8189 |
msgid "Monday abbreviation"
|
8190 |
msgstr ""
|
8191 |
|
8192 |
-
#: app/libraries/main.php:
|
8193 |
msgid "Tuesday abbreviation"
|
8194 |
msgstr ""
|
8195 |
|
8196 |
-
#: app/libraries/main.php:
|
8197 |
msgid "Wednesday abbreviation"
|
8198 |
msgstr ""
|
8199 |
|
8200 |
-
#: app/libraries/main.php:
|
8201 |
msgid "Thursday abbreviation"
|
8202 |
msgstr ""
|
8203 |
|
8204 |
-
#: app/libraries/main.php:
|
8205 |
msgid "Friday abbreviation"
|
8206 |
msgstr ""
|
8207 |
|
8208 |
-
#: app/libraries/main.php:
|
8209 |
msgid "Saturday abbreviation"
|
8210 |
msgstr ""
|
8211 |
|
8212 |
-
#: app/libraries/main.php:
|
8213 |
msgid "Others"
|
8214 |
msgstr ""
|
8215 |
|
8216 |
-
#: app/libraries/main.php:
|
8217 |
msgid "Booking Success Message"
|
8218 |
msgstr ""
|
8219 |
|
8220 |
-
#: app/libraries/main.php:
|
8221 |
#, fuzzy
|
8222 |
#| msgid ""
|
8223 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -8230,17 +8220,17 @@ msgstr ""
|
|
8230 |
"essere necessario la verifica della prenotazione, si prega di controllare la "
|
8231 |
"posta elettronica."
|
8232 |
|
8233 |
-
#: app/libraries/main.php:
|
8234 |
msgid "Register Button"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
-
#: app/libraries/main.php:
|
8238 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8239 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8240 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8241 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8242 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
8243 |
-
#: app/skins/single.php:
|
8244 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8245 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8246 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -8252,165 +8242,173 @@ msgstr ""
|
|
8252 |
msgid "REGISTER"
|
8253 |
msgstr "REGISTRA"
|
8254 |
|
8255 |
-
#: app/libraries/main.php:
|
8256 |
msgid "View Detail Button"
|
8257 |
msgstr ""
|
8258 |
|
8259 |
-
#: app/libraries/main.php:
|
8260 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8261 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8262 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8263 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8264 |
-
#: app/skins/single.php:
|
8265 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8266 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8267 |
msgid "View Detail"
|
8268 |
msgstr "Visualizza dettaglio"
|
8269 |
|
8270 |
-
#: app/libraries/main.php:
|
8271 |
msgid "Event Detail Button"
|
8272 |
msgstr ""
|
8273 |
|
8274 |
-
#: app/libraries/main.php:
|
8275 |
msgid "Event Detail"
|
8276 |
msgstr "Dettaglio evento"
|
8277 |
|
8278 |
-
#: app/libraries/main.php:
|
8279 |
msgid "More Info Link"
|
8280 |
msgstr ""
|
8281 |
|
8282 |
-
#: app/libraries/main.php:
|
8283 |
msgid "Ticket (Singular)"
|
8284 |
msgstr ""
|
8285 |
|
8286 |
-
#: app/libraries/main.php:
|
8287 |
msgid "Tickets (Plural)"
|
8288 |
msgstr ""
|
8289 |
|
8290 |
-
#: app/libraries/main.php:
|
8291 |
msgid "EventON"
|
8292 |
msgstr ""
|
8293 |
|
8294 |
-
#: app/libraries/main.php:
|
8295 |
msgid "The Events Calendar"
|
8296 |
msgstr ""
|
8297 |
|
8298 |
-
#: app/libraries/main.php:
|
8299 |
msgid "Events Schedule WP Plugin"
|
8300 |
msgstr ""
|
8301 |
|
8302 |
-
#: app/libraries/main.php:
|
8303 |
msgid "Calendarize It"
|
8304 |
msgstr ""
|
8305 |
|
8306 |
-
#: app/libraries/main.php:
|
8307 |
#, fuzzy
|
8308 |
#| msgid "No Search Options"
|
8309 |
msgid "Event Espresso"
|
8310 |
msgstr "Nessuna opzione di ricerca"
|
8311 |
|
8312 |
-
#: app/libraries/main.php:
|
8313 |
#, fuzzy
|
8314 |
#| msgid "Event Repeating"
|
8315 |
msgid "Events Manager (Recurring)"
|
8316 |
msgstr "Ripetizione dell'evento"
|
8317 |
|
8318 |
-
#: app/libraries/main.php:
|
8319 |
#, fuzzy
|
8320 |
#| msgid "Modern Events Calendar"
|
8321 |
msgid "Events Manager (Single)"
|
8322 |
msgstr "Calendario moderno degli eventi"
|
8323 |
|
8324 |
-
#: app/libraries/main.php:
|
8325 |
msgid "Confirmed"
|
8326 |
msgstr "Confermato"
|
8327 |
|
8328 |
-
#: app/libraries/main.php:
|
8329 |
msgid "Rejected"
|
8330 |
msgstr "Rifiutato"
|
8331 |
|
8332 |
-
#: app/libraries/main.php:
|
8333 |
msgid "Pending"
|
8334 |
msgstr "In attesa"
|
8335 |
|
8336 |
-
#: app/libraries/main.php:
|
8337 |
msgid "Waiting"
|
8338 |
msgstr "In attesa"
|
8339 |
|
8340 |
-
#: app/libraries/main.php:
|
8341 |
#, fuzzy
|
8342 |
#| msgid "Sunday"
|
8343 |
msgid "Sun"
|
8344 |
msgstr "Domenica"
|
8345 |
|
8346 |
-
#: app/libraries/main.php:
|
8347 |
#, fuzzy
|
8348 |
#| msgid "Month"
|
8349 |
msgid "Mon"
|
8350 |
msgstr "Mese"
|
8351 |
|
8352 |
-
#: app/libraries/main.php:
|
8353 |
#, fuzzy
|
8354 |
#| msgid "Tel"
|
8355 |
msgid "Tue"
|
8356 |
msgstr "Tel"
|
8357 |
|
8358 |
-
#: app/libraries/main.php:
|
8359 |
msgid "Wed"
|
8360 |
msgstr ""
|
8361 |
|
8362 |
-
#: app/libraries/main.php:
|
8363 |
msgid "Thu"
|
8364 |
msgstr ""
|
8365 |
|
8366 |
-
#: app/libraries/main.php:
|
8367 |
#, fuzzy
|
8368 |
#| msgid "Friday"
|
8369 |
msgid "Fri"
|
8370 |
msgstr "Venerdì"
|
8371 |
|
8372 |
-
#: app/libraries/main.php:
|
8373 |
#, fuzzy
|
8374 |
#| msgid "Start"
|
8375 |
msgid "Sat"
|
8376 |
msgstr "Partenza"
|
8377 |
|
8378 |
-
#: app/libraries/main.php:
|
8379 |
#: app/libraries/render.php:432
|
8380 |
msgid "Skin controller does not exist."
|
8381 |
msgstr "Non esiste il controllo dello stile."
|
8382 |
|
8383 |
-
#: app/libraries/main.php:
|
8384 |
msgid "Sold Out"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
-
#: app/libraries/main.php:
|
8388 |
#, fuzzy
|
8389 |
#| msgid "Ticket"
|
8390 |
msgid "Last Few Tickets"
|
8391 |
msgstr "Ticket"
|
8392 |
|
8393 |
-
#: app/libraries/main.php:
|
8394 |
#, fuzzy
|
8395 |
#| msgid "hours"
|
8396 |
msgid "Hours"
|
8397 |
msgstr "ore"
|
8398 |
|
8399 |
-
#: app/libraries/main.php:
|
8400 |
#, fuzzy
|
8401 |
#| msgid "minutes"
|
8402 |
msgid "Minutes"
|
8403 |
msgstr "minuti"
|
8404 |
|
8405 |
-
#: app/libraries/main.php:
|
8406 |
msgid "AM / PM"
|
8407 |
msgstr ""
|
8408 |
|
8409 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8410 |
msgid "Ongoing..."
|
8411 |
msgstr ""
|
8412 |
|
8413 |
-
#: app/libraries/main.php:
|
8414 |
msgid "Expired!"
|
8415 |
msgstr ""
|
8416 |
|
@@ -8418,80 +8416,88 @@ msgstr ""
|
|
8418 |
msgid "Please verify your email."
|
8419 |
msgstr "Si prega di verificare la propria email."
|
8420 |
|
8421 |
-
#: app/libraries/notifications.php:
|
8422 |
msgid "Your booking is received."
|
8423 |
msgstr ""
|
8424 |
|
8425 |
-
#: app/libraries/notifications.php:
|
8426 |
msgid "Your booking is confirmed."
|
8427 |
msgstr "La tua prenotazione è confermata."
|
8428 |
|
8429 |
-
#: app/libraries/notifications.php:
|
8430 |
#, fuzzy
|
8431 |
#| msgid "Your booking cannot be canceled."
|
8432 |
msgid "booking canceled."
|
8433 |
msgstr "La tua prenotazione non può essere cancellata."
|
8434 |
|
8435 |
-
#: app/libraries/notifications.php:
|
8436 |
msgid "A new booking is received."
|
8437 |
msgstr "Una nuova prenotazione è stata ricevuta."
|
8438 |
|
8439 |
-
#: app/libraries/notifications.php:
|
8440 |
msgid "A new event is added."
|
8441 |
msgstr "Un nuovo evento è stato aggiunto."
|
8442 |
|
8443 |
-
#: app/libraries/notifications.php:
|
8444 |
#, fuzzy
|
8445 |
#| msgid "The event published."
|
8446 |
msgid "Your event is published."
|
8447 |
msgstr "L'evento è stato pubblicato."
|
8448 |
|
8449 |
-
#: app/libraries/notifications.php:
|
8450 |
#, php-format
|
8451 |
msgid "%s to %s"
|
8452 |
msgstr "%s al %s"
|
8453 |
|
8454 |
-
#: app/libraries/notifications.php:
|
8455 |
-
#: app/libraries/notifications.php:
|
8456 |
msgid "to"
|
8457 |
msgstr ""
|
8458 |
|
8459 |
-
#: app/libraries/notifications.php:
|
8460 |
msgid "+ Add to Google Calendar"
|
8461 |
msgstr "+ Aggiungi a Google Calendar"
|
8462 |
|
8463 |
-
#: app/libraries/notifications.php:
|
8464 |
msgid "+ iCal export"
|
8465 |
msgstr "+ Esporta iCal"
|
8466 |
|
8467 |
-
#: app/libraries/notifications.php:
|
8468 |
msgid "Yes"
|
8469 |
msgstr ""
|
8470 |
|
8471 |
-
#: app/libraries/notifications.php:
|
8472 |
msgid "No"
|
8473 |
msgstr ""
|
8474 |
|
8475 |
-
#: app/libraries/skins.php:
|
8476 |
#, fuzzy
|
8477 |
#| msgid "Select All"
|
8478 |
msgid "Select"
|
8479 |
msgstr "Seleziona tutto"
|
8480 |
|
8481 |
-
#: app/modules/attendees-list/details.php:
|
8482 |
msgid "Event Attendees"
|
8483 |
msgstr "Partecipanti all'evento"
|
8484 |
|
8485 |
-
#: app/modules/attendees-list/details.php:
|
8486 |
msgid "No attendee found! Be the first one to book!"
|
8487 |
msgstr "Non è stato trovato nessun partecipante! Sei il primo a prenotare!"
|
8488 |
|
8489 |
-
#: app/modules/attendees-list/details.php:
|
8490 |
#, fuzzy
|
8491 |
#| msgid "Tickets"
|
8492 |
msgid "tickets"
|
8493 |
msgstr "Biglietto/ticket"
|
8494 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8495 |
#: app/modules/booking/steps/checkout.php:37
|
8496 |
msgid "Checkout"
|
8497 |
msgstr "Checkout"
|
@@ -8543,27 +8549,27 @@ msgstr "Form partecipanti"
|
|
8543 |
msgid "Fill other attendees information like the first form."
|
8544 |
msgstr ""
|
8545 |
|
8546 |
-
#: app/modules/booking/steps/tickets.php:
|
8547 |
msgid "Book Event"
|
8548 |
msgstr "Evento prenotazione"
|
8549 |
|
8550 |
-
#: app/modules/booking/steps/tickets.php:
|
8551 |
#, fuzzy
|
8552 |
#| msgid "Ticket Name"
|
8553 |
msgid "1 Ticket selected."
|
8554 |
msgstr "Nome biglietto/ticket"
|
8555 |
|
8556 |
-
#: app/modules/booking/steps/tickets.php:
|
8557 |
#, php-format
|
8558 |
msgid "Available %s: <span>%s</span>"
|
8559 |
msgstr ""
|
8560 |
|
8561 |
-
#: app/modules/booking/steps/tickets.php:
|
8562 |
#, php-format
|
8563 |
msgid "The %s ticket sales has stopped!"
|
8564 |
msgstr ""
|
8565 |
|
8566 |
-
#: app/modules/booking/steps/tickets.php:
|
8567 |
#, php-format
|
8568 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8569 |
msgstr ""
|
@@ -8584,7 +8590,7 @@ msgstr "Indirizzo da ..."
|
|
8584 |
msgid "Get Directions"
|
8585 |
msgstr ""
|
8586 |
|
8587 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
8588 |
msgid "Share this event"
|
8589 |
msgstr "Condividi questo evento"
|
8590 |
|
@@ -8639,7 +8645,7 @@ msgstr "Prossimo avvenimento"
|
|
8639 |
msgid "Go to occurrence page"
|
8640 |
msgstr "Vai alla pagina necessaria"
|
8641 |
|
8642 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
8643 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8644 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8645 |
msgid "Time"
|
@@ -8775,24 +8781,24 @@ msgstr "Eventi di %s"
|
|
8775 |
msgid "No Events"
|
8776 |
msgstr "Nessun evento"
|
8777 |
|
8778 |
-
#: app/skins/single.php:
|
8779 |
msgid "Home"
|
8780 |
msgstr ""
|
8781 |
|
8782 |
-
#: app/skins/single.php:
|
8783 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8784 |
#: app/skins/single/modern.php:292
|
8785 |
msgid "Sold out!"
|
8786 |
msgstr ""
|
8787 |
|
8788 |
-
#: app/skins/single.php:
|
8789 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8790 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8791 |
#: app/skins/single/modern.php:55
|
8792 |
msgid "Phone"
|
8793 |
msgstr "Telefono"
|
8794 |
|
8795 |
-
#: app/skins/single.php:
|
8796 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8797 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8798 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -8801,7 +8807,7 @@ msgstr "Telefono"
|
|
8801 |
msgid "Website"
|
8802 |
msgstr "Sito web"
|
8803 |
|
8804 |
-
#: app/skins/single.php:
|
8805 |
#, fuzzy
|
8806 |
#| msgid "No Search Options"
|
8807 |
msgid "Speakers:"
|
@@ -9353,9 +9359,6 @@ msgstr ""
|
|
9353 |
#~ msgid "Can I Override MEC Template ?"
|
9354 |
#~ msgstr "Come sovrascrivere i files del tema MEC?"
|
9355 |
|
9356 |
-
#~ msgid "%s tickets"
|
9357 |
-
#~ msgstr "%s biglietti"
|
9358 |
-
|
9359 |
#~ msgid "Security nonce is missing."
|
9360 |
#~ msgstr "Token di sicurezzamancante."
|
9361 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-06-16 16:47+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it_IT\n"
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr "Calendario moderno degli eventi"
|
315 |
msgstr ""
|
316 |
|
317 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
318 |
+
#: app/features/popup/event.php:252
|
319 |
msgid "View Event"
|
320 |
msgstr "Visualizza Evento"
|
321 |
|
337 |
#: app/features/mec/meta_boxes/search_form.php:654
|
338 |
#: app/features/mec/meta_boxes/search_form.php:760
|
339 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
340 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
341 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
342 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
343 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
344 |
#: app/skins/single/modern.php:137
|
348 |
#: app/features/events.php:186 app/features/events.php:3193
|
349 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
350 |
#: app/features/mec/meta_boxes/filter.php:69
|
351 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
352 |
msgid "Categories"
|
353 |
msgstr "Categorie"
|
354 |
|
437 |
msgstr "Ripetizione dell'evento"
|
438 |
|
439 |
#: app/features/events.php:336 app/features/events.php:1215
|
440 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
441 |
msgid "Hourly Schedule"
|
442 |
msgstr "Schedula per Ore"
|
443 |
|
471 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
472 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
473 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
474 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
475 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
476 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
477 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
478 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
479 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
480 |
msgid "Organizer"
|
481 |
msgstr "Organizzatore"
|
482 |
|
483 |
#: app/features/events.php:340 app/features/events.php:1092
|
484 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
485 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
486 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
487 |
#: app/skins/single/modern.php:234
|
488 |
msgid "Cost"
|
504 |
#: app/features/events.php:3769 app/features/fes.php:223
|
505 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
506 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
507 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
508 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
509 |
msgid "Name"
|
510 |
msgstr "Nome"
|
511 |
|
517 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
518 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
519 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
520 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
521 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
522 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
523 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
524 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
525 |
#: app/skins/single/modern.php:62
|
535 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
536 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
537 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
538 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
539 |
#: app/features/mec/meta_boxes/display_options.php:278
|
540 |
#: app/features/mec/meta_boxes/display_options.php:517
|
541 |
#: app/features/mec/meta_boxes/display_options.php:623
|
559 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
560 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
561 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
562 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
563 |
msgid "End Date"
|
564 |
msgstr "Data di fine"
|
565 |
|
566 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
567 |
+
#: app/features/popup/event.php:109
|
568 |
#, fuzzy
|
569 |
#| msgid "All Day Event"
|
570 |
msgid "All-day Event"
|
606 |
#: app/features/events.php:2151 app/features/events.php:2166
|
607 |
#: app/features/events.php:2196 app/features/events.php:2209
|
608 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
609 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
610 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
611 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
612 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
670 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
671 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
672 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
673 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
674 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
675 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
676 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
677 |
#: app/skins/single/modern.php:160
|
695 |
msgstr "Ripeti"
|
696 |
|
697 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
698 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
699 |
#: app/skins/full_calendar/tpl.php:121
|
700 |
msgid "Daily"
|
701 |
msgstr "Giornaliero"
|
719 |
msgstr "Settimanale"
|
720 |
|
721 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
722 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
723 |
#: app/skins/full_calendar/tpl.php:119
|
724 |
msgid "Monthly"
|
725 |
msgstr "Mensile"
|
726 |
|
727 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
728 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
729 |
#: app/skins/full_calendar/tpl.php:118
|
730 |
msgid "Yearly"
|
731 |
msgstr "Annuale"
|
863 |
#: app/features/events.php:1088 app/features/events.php:3431
|
864 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
865 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
866 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
867 |
#: app/widgets/single.php:103
|
868 |
msgid "Event Cost"
|
869 |
msgstr "Costo Evento"
|
881 |
#: app/features/events.php:1124 app/features/events.php:2330
|
882 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
883 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
884 |
+
#: app/modules/booking/steps/tickets.php:36
|
885 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
886 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
887 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
888 |
msgid "Date"
|
967 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
968 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
969 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
970 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
971 |
#: app/modules/speakers/details.php:18
|
972 |
msgid "Speakers"
|
973 |
msgstr ""
|
984 |
msgstr "Link dell'evento"
|
985 |
|
986 |
#: app/features/events.php:1408 app/features/events.php:1414
|
987 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
988 |
msgid "Event Link"
|
989 |
msgstr "Link dell'evento"
|
990 |
|
1011 |
msgstr ""
|
1012 |
|
1013 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1014 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
1015 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
1016 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1017 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1018 |
#: app/widgets/single.php:107
|
1051 |
msgstr "Limite totale delle prenotazioni"
|
1052 |
|
1053 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1054 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
1055 |
+
#: app/modules/booking/steps/tickets.php:64
|
1056 |
msgid "Tickets"
|
1057 |
msgstr "Biglietto/ticket"
|
1058 |
|
1080 |
|
1081 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1082 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1083 |
+
#: app/modules/booking/steps/tickets.php:64
|
1084 |
#: app/skins/available_spot/tpl.php:142
|
1085 |
msgid "Unlimited"
|
1086 |
msgstr "Illimitato"
|
1250 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1251 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1252 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1253 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1254 |
msgid "Label"
|
1255 |
msgstr "Etichetta"
|
1256 |
|
1474 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1475 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1476 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1477 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1478 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1479 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1480 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1481 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1489 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1490 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1491 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1492 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1493 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1494 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1495 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1496 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1497 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1498 |
#: app/skins/single/modern.php:113
|
1534 |
|
1535 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1536 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1537 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1538 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1539 |
msgid "ID"
|
1540 |
msgstr "ID"
|
1556 |
|
1557 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1558 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1559 |
+
#: app/libraries/main.php:5666
|
1560 |
msgid "Ticket"
|
1561 |
msgstr "Ticket"
|
1562 |
|
1765 |
msgstr "es. iltuonome@gmail.com"
|
1766 |
|
1767 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1768 |
+
#: app/features/popup/event.php:183
|
1769 |
msgid "eg. John Smith"
|
1770 |
msgstr "es. Mario Rossi"
|
1771 |
|
1792 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1793 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1794 |
#: app/features/mec/meta_boxes/filter.php:72
|
1795 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1796 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1797 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1798 |
#: app/skins/single/modern.php:249
|
1799 |
msgid "Labels"
|
2610 |
msgstr "Immagine in evidenza"
|
2611 |
|
2612 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2613 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2614 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2615 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2616 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2628 |
msgid "You can show featured and canceled events by a different style!"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2632 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2633 |
+
#: app/modules/booking/steps/tickets.php:62
|
2634 |
msgid "Count"
|
2635 |
msgstr "Numero"
|
2636 |
|
2637 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2638 |
#: app/features/organizers.php:207
|
2639 |
msgid "Slug"
|
2640 |
msgstr "Slug"
|
2641 |
|
2642 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2643 |
#, php-format
|
2644 |
msgid "Event %s"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2648 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2649 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2650 |
msgid "Locations"
|
2651 |
msgstr "Luoghi"
|
2652 |
|
2653 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2654 |
+
#: app/features/locations.php:262
|
2655 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2656 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2657 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2666 |
msgid "Address"
|
2667 |
msgstr "Indirizzo"
|
2668 |
|
2669 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2670 |
msgid "Enter the location address"
|
2671 |
msgstr "Inserisci l'indirizzo del luogo"
|
2672 |
|
2673 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2674 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2675 |
msgid "Latitude"
|
2676 |
msgstr "Latitudine"
|
2677 |
|
2678 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2679 |
msgid "Geo latitude (Optional)"
|
2680 |
msgstr "Latitudine geografica (opzionale)"
|
2681 |
|
2682 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2683 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2684 |
msgid "Longitude"
|
2685 |
msgstr "Longitudine"
|
2686 |
|
2687 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2688 |
msgid "Geo longitude (Optional)"
|
2689 |
msgstr "Longitudine geografica (opzionale)"
|
2690 |
|
2691 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2692 |
+
#: app/features/locations.php:372
|
2693 |
#, fuzzy
|
2694 |
#| msgid "Locations"
|
2695 |
msgid "Location Website"
|
2696 |
msgstr "Luoghi"
|
2697 |
|
2698 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2699 |
#, fuzzy
|
2700 |
#| msgid "Geo latitude (Optional)"
|
2701 |
msgid "Location Website (Optional)"
|
2702 |
msgstr "Latitudine geografica (opzionale)"
|
2703 |
|
2704 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2705 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2706 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2707 |
msgid "Thumbnail"
|
2708 |
msgstr "Anteprima"
|
2709 |
|
2710 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2711 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2712 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2713 |
msgid "Upload/Add image"
|
2714 |
msgstr "Carica/Aggiungi immagine"
|
2715 |
|
2716 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2717 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2718 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2719 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2720 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2721 |
msgid "Remove image"
|
2722 |
msgstr "Rimuovi immagine"
|
2723 |
|
2724 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2725 |
msgid "Hide location"
|
2726 |
msgstr "Nascondi luogo"
|
2727 |
|
2728 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2729 |
msgid "Insert a new location"
|
2730 |
msgstr "Inserisci un nuovo luogo"
|
2731 |
|
2732 |
+
#: app/features/locations.php:334
|
2733 |
msgid "Choose one of saved locations or insert new one below."
|
2734 |
msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
|
2735 |
|
2736 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2737 |
msgid "Location Name"
|
2738 |
msgstr "Nome del luogo"
|
2739 |
|
2740 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2741 |
msgid "eg. City Hall"
|
2742 |
msgstr "es. Città"
|
2743 |
|
2744 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2745 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2746 |
msgid "Event Location"
|
2747 |
msgstr "Luogo dell'evento"
|
2748 |
|
2749 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2750 |
msgid "eg. City hall, Manhattan, New York"
|
2751 |
msgstr "es. Città, Roma, Campobasso"
|
2752 |
|
2753 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2754 |
#, fuzzy
|
2755 |
#| msgid "Longitude"
|
2756 |
msgid "Latitude/Longitude"
|
2757 |
msgstr "Longitudine"
|
2758 |
|
2759 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2760 |
msgid ""
|
2761 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2762 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2765 |
"the location on the map to find lat long coordinates."
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2769 |
msgid "Get Latitude and Longitude"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2773 |
+
#: app/features/popup/event.php:202
|
2774 |
msgid "Choose image"
|
2775 |
msgstr "Seleziona immagine"
|
2776 |
|
2777 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2778 |
msgid "Don't show map in single event page"
|
2779 |
msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
|
2780 |
|
2781 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2782 |
#, fuzzy
|
2783 |
#| msgid "Search Locations"
|
2784 |
msgid "Other Locations"
|
2785 |
msgstr "Cerca luoghi"
|
2786 |
|
2787 |
+
#: app/features/locations.php:398
|
2788 |
msgid ""
|
2789 |
"You can select extra locations in addition to main location if you like."
|
2790 |
msgstr ""
|
2861 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2862 |
#: app/features/mec/meta_boxes/filter.php:71
|
2863 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2864 |
+
#: app/libraries/main.php:5637
|
2865 |
msgid "Organizers"
|
2866 |
msgstr "Organizzatori"
|
2867 |
|
2902 |
msgid "MEC - Go Pro"
|
2903 |
msgstr "Supporto"
|
2904 |
|
2905 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2906 |
#: app/features/mec/go-pro.php:9
|
2907 |
msgid "Go Pro"
|
2908 |
msgstr ""
|
2959 |
msgid "Modal Popup"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2963 |
msgid "Total Bookings"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2967 |
#, fuzzy
|
2968 |
#| msgid "Modern Events Calendar"
|
2969 |
msgid "Modern Events Calendar (Lite)"
|
2970 |
msgstr "Calendario moderno degli eventi"
|
2971 |
|
2972 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2973 |
#: app/features/mec/settings.php:428
|
2974 |
msgid "Upcoming Events"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: app/features/mec.php:1201
|
2978 |
#, fuzzy
|
2979 |
#| msgid "Update Label"
|
2980 |
msgid "News & Updates"
|
2981 |
msgstr "Aggiorna Etichetta"
|
2982 |
|
2983 |
+
#: app/features/mec.php:1214
|
2984 |
msgid "Blog"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: app/features/mec.php:1214
|
2988 |
msgid "Help"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: app/features/mec.php:1260
|
2992 |
msgid "This Month"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
+
#: app/features/mec.php:1266
|
2996 |
msgid "Last Month"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
+
#: app/features/mec.php:1272
|
3000 |
msgid "This Year"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: app/features/mec.php:1278
|
3004 |
msgid "Last Year"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
#: app/features/mec.php:1290
|
3008 |
msgid "Bar"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: app/features/mec.php:1291
|
3012 |
msgid "Line"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: app/features/mec.php:1293
|
3016 |
msgid "Filter"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: app/features/mec.php:1309
|
3020 |
#, php-format
|
3021 |
msgid "Total Sells (%s)"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: app/features/mec.php:1337
|
3025 |
#, fuzzy
|
3026 |
#| msgid "Modern Events Calendar"
|
3027 |
msgid "Print Calendar"
|
3028 |
msgstr "Calendario moderno degli eventi"
|
3029 |
|
3030 |
+
#: app/features/mec.php:1352
|
3031 |
#, fuzzy
|
3032 |
#| msgid "Multiple Day Events"
|
3033 |
msgid "Display Events"
|
3432 |
#: app/features/mec/notifications.php:923
|
3433 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3434 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3435 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3436 |
msgid "Verified"
|
3437 |
msgstr "Verificato"
|
3438 |
|
4603 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4604 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4605 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4606 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4607 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4608 |
msgid "Speaker"
|
4609 |
msgstr ""
|
4610 |
|
4620 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4621 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4622 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4623 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4624 |
#, fuzzy
|
4625 |
#| msgid "Tags"
|
4626 |
msgid "Tag"
|
5421 |
msgstr "Invia notifica all'amministratore per una nuova prenotazione ricevuta."
|
5422 |
|
5423 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5424 |
+
#: app/libraries/notifications.php:587
|
5425 |
msgid "Booking Reminder"
|
5426 |
msgstr ""
|
5427 |
|
5449 |
msgid "Please, insert comma to separate reminder days."
|
5450 |
msgstr ""
|
5451 |
|
5452 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5453 |
#: app/libraries/main.php:584
|
5454 |
msgid "New Event"
|
5455 |
msgstr "Nuovo Evento"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5681 |
+
#: app/libraries/main.php:5644
|
5682 |
msgid "Weekdays"
|
5683 |
msgstr "Settimanali"
|
5684 |
|
6467 |
"Mostra opzione giorni eccezionali nella pagina Aggiungi / Modifica eventi"
|
6468 |
|
6469 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6470 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
6471 |
#, fuzzy
|
6472 |
#| msgid "featured event"
|
6473 |
msgid "Related Events"
|
7129 |
msgstr "Inserisci l'indirizzo email dell'organizzatore."
|
7130 |
|
7131 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7132 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
7133 |
msgid "Link to organizer page"
|
7134 |
msgstr "Link alla pagina dell'organizzatore"
|
7135 |
|
7148 |
msgid "Event Main %s"
|
7149 |
msgstr ""
|
7150 |
|
7151 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
7152 |
msgid "Hide organizer"
|
7153 |
msgstr "Nascondi organizzatore"
|
7154 |
|
7155 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
7156 |
msgid "Insert a new organizer"
|
7157 |
msgstr "Inserisci un nuovo organizzatore"
|
7158 |
|
7159 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
7160 |
msgid "Choose one of saved organizers or insert new one below."
|
7161 |
msgstr ""
|
7162 |
"Seleziona uno tra gli organizzatori salvati oppure inserisci uni nuovo."
|
7163 |
|
7164 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
7165 |
msgid "Phone number."
|
7166 |
msgstr ""
|
7167 |
|
7168 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
7169 |
msgid "eg. +1 (234) 5678"
|
7170 |
msgstr "es. +1 (234) 5678"
|
7171 |
|
7172 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
7173 |
msgid "Email address."
|
7174 |
msgstr ""
|
7175 |
|
7176 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
7177 |
msgid "eg. john@smith.com"
|
7178 |
msgstr "es. mario@rossi.it"
|
7179 |
|
7180 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
7181 |
#, fuzzy
|
7182 |
#| msgid "http://webnus.biz"
|
7183 |
msgid "eg. https://webnus.net"
|
7184 |
msgstr "http://webnus.biz"
|
7185 |
|
7186 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
7187 |
+
#: app/skins/single.php:1152
|
7188 |
msgid "Other Organizers"
|
7189 |
msgstr ""
|
7190 |
|
7209 |
msgid "Event name is required"
|
7210 |
msgstr ""
|
7211 |
|
7212 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7213 |
#, fuzzy
|
7214 |
#| msgid "Choose one of saved locations or insert new one below."
|
7215 |
msgid "Choose one of saved locations or insert new one."
|
7216 |
msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
|
7217 |
|
7218 |
+
#: app/features/popup/event.php:130
|
7219 |
#, fuzzy
|
7220 |
#| msgid "Add New Location"
|
7221 |
msgid "Add Location"
|
7222 |
msgstr "Aggiungi nuovo Luogo"
|
7223 |
|
7224 |
+
#: app/features/popup/event.php:177
|
7225 |
#, fuzzy
|
7226 |
#| msgid "Add New Organizer"
|
7227 |
msgid "Add Organizer"
|
7228 |
msgstr "Aggiungi nuovo Organizzatore"
|
7229 |
|
7230 |
+
#: app/features/popup/event.php:217
|
7231 |
#, fuzzy
|
7232 |
#| msgid "Categories"
|
7233 |
msgid "All Categories"
|
7234 |
msgstr "Categorie"
|
7235 |
|
7236 |
+
#: app/features/popup/event.php:218
|
7237 |
msgid "Most Used"
|
7238 |
msgstr ""
|
7239 |
|
7240 |
+
#: app/features/popup/event.php:229
|
7241 |
#, fuzzy
|
7242 |
#| msgid "Add New Label"
|
7243 |
msgid "Add New Category"
|
7244 |
msgstr "Aggiungi nuova Etichetta"
|
7245 |
|
7246 |
+
#: app/features/popup/event.php:240
|
7247 |
#, fuzzy
|
7248 |
#| msgid "Featured Image"
|
7249 |
msgid "Set Featured Image"
|
7250 |
msgstr "Immagine in evidenza"
|
7251 |
|
7252 |
+
#: app/features/popup/event.php:250
|
7253 |
msgid "Your Event Has Been Created."
|
7254 |
msgstr ""
|
7255 |
|
7256 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
7257 |
msgid "Prev"
|
7258 |
msgstr ""
|
7259 |
|
7260 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
7261 |
#: app/modules/booking/steps/form.php:188
|
7262 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
7263 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7264 |
msgid "Next"
|
7265 |
msgstr "Avanti"
|
7502 |
msgid "No search result."
|
7503 |
msgstr ""
|
7504 |
|
7505 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
7506 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
7507 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7508 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7509 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
7510 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7511 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7512 |
#, fuzzy
|
7604 |
msgid "%s Price"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
7608 |
msgid "Discount"
|
7609 |
msgstr "Sconto"
|
7610 |
|
7611 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
7612 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
7613 |
msgid "Download Invoice"
|
7614 |
msgstr ""
|
7615 |
|
7632 |
msgid "Upgrade"
|
7633 |
msgstr ""
|
7634 |
|
7635 |
+
#: app/libraries/factory.php:369
|
7636 |
msgid "day"
|
7637 |
msgstr "giorno"
|
7638 |
|
7639 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
7640 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7641 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7642 |
msgid "days"
|
7643 |
msgstr "giorni"
|
7644 |
|
7645 |
+
#: app/libraries/factory.php:371
|
7646 |
msgid "hour"
|
7647 |
msgstr "ora"
|
7648 |
|
7649 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
7650 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7651 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7652 |
msgid "hours"
|
7653 |
msgstr "ore"
|
7654 |
|
7655 |
+
#: app/libraries/factory.php:373
|
7656 |
msgid "minute"
|
7657 |
msgstr "minuto"
|
7658 |
|
7659 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7660 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7661 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7662 |
msgid "minutes"
|
7663 |
msgstr "minuti"
|
7664 |
|
7665 |
+
#: app/libraries/factory.php:375
|
7666 |
msgid "second"
|
7667 |
msgstr "secondo"
|
7668 |
|
7669 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7670 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7671 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7672 |
msgid "seconds"
|
7673 |
msgstr "secondi"
|
7674 |
|
7675 |
+
#: app/libraries/factory.php:428
|
7676 |
msgid "MEC Single Sidebar"
|
7677 |
msgstr ""
|
7678 |
|
7679 |
+
#: app/libraries/factory.php:429
|
7680 |
msgid "Custom sidebar for single and modal page of MEC."
|
7681 |
msgstr ""
|
7682 |
|
7740 |
msgid "Timeline View"
|
7741 |
msgstr "Visualizza slider"
|
7742 |
|
7743 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7744 |
msgid "SU"
|
7745 |
msgstr "D"
|
7746 |
|
7747 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7748 |
msgid "MO"
|
7749 |
msgstr "L"
|
7750 |
|
7751 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7752 |
msgid "TU"
|
7753 |
msgstr "M"
|
7754 |
|
7755 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7756 |
msgid "WE"
|
7757 |
msgstr "M"
|
7758 |
|
7759 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7760 |
msgid "TH"
|
7761 |
msgstr "G"
|
7762 |
|
7763 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7764 |
msgid "FR"
|
7765 |
msgstr "V"
|
7766 |
|
7767 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7768 |
msgid "SA"
|
7769 |
msgstr "S"
|
7770 |
|
8099 |
msgid "Free"
|
8100 |
msgstr "Gratuito"
|
8101 |
|
8102 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
8103 |
#, fuzzy
|
8104 |
#| msgid "M.E. Calendar"
|
8105 |
msgid "M.E. Calender"
|
8106 |
msgstr "Calendario"
|
8107 |
|
8108 |
+
#: app/libraries/main.php:4105
|
8109 |
#, php-format
|
8110 |
msgid "Copy of %s"
|
8111 |
msgstr "Copia di %s"
|
8112 |
|
8113 |
+
#: app/libraries/main.php:4923
|
8114 |
msgid "Booked an event."
|
8115 |
msgstr "Prenotato un evento."
|
8116 |
|
8117 |
+
#: app/libraries/main.php:4964
|
8118 |
#, php-format
|
8119 |
msgid "%s booked %s event."
|
8120 |
msgstr "%s ha prenotato l'evento %s."
|
8121 |
|
8122 |
+
#: app/libraries/main.php:5629
|
8123 |
msgid "Taxonomies"
|
8124 |
msgstr ""
|
8125 |
|
8126 |
+
#: app/libraries/main.php:5631
|
8127 |
msgid "Category Plural Label"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
+
#: app/libraries/main.php:5632
|
8131 |
msgid "Category Singular Label"
|
8132 |
msgstr ""
|
8133 |
|
8134 |
+
#: app/libraries/main.php:5633
|
8135 |
msgid "Label Plural Label"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
+
#: app/libraries/main.php:5634
|
8139 |
msgid "Label Singular Label"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
+
#: app/libraries/main.php:5634
|
8143 |
msgid "label"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
+
#: app/libraries/main.php:5635
|
8147 |
msgid "Location Plural Label"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
+
#: app/libraries/main.php:5636
|
8151 |
msgid "Location Singular Label"
|
8152 |
msgstr ""
|
8153 |
|
8154 |
+
#: app/libraries/main.php:5637
|
8155 |
msgid "Organizer Plural Label"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
+
#: app/libraries/main.php:5638
|
8159 |
msgid "Organizer Singular Label"
|
8160 |
msgstr ""
|
8161 |
|
8162 |
+
#: app/libraries/main.php:5639
|
8163 |
#, fuzzy
|
8164 |
#| msgid "Search Labels"
|
8165 |
msgid "Speaker Plural Label"
|
8166 |
msgstr "Cerca etichette"
|
8167 |
|
8168 |
+
#: app/libraries/main.php:5640
|
8169 |
#, fuzzy
|
8170 |
#| msgid "Popular Labels"
|
8171 |
msgid "Speaker Singular Label"
|
8172 |
msgstr "Etichette frequenti"
|
8173 |
|
8174 |
+
#: app/libraries/main.php:5646
|
8175 |
msgid "Sunday abbreviation"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
+
#: app/libraries/main.php:5647
|
8179 |
msgid "Monday abbreviation"
|
8180 |
msgstr ""
|
8181 |
|
8182 |
+
#: app/libraries/main.php:5648
|
8183 |
msgid "Tuesday abbreviation"
|
8184 |
msgstr ""
|
8185 |
|
8186 |
+
#: app/libraries/main.php:5649
|
8187 |
msgid "Wednesday abbreviation"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
+
#: app/libraries/main.php:5650
|
8191 |
msgid "Thursday abbreviation"
|
8192 |
msgstr ""
|
8193 |
|
8194 |
+
#: app/libraries/main.php:5651
|
8195 |
msgid "Friday abbreviation"
|
8196 |
msgstr ""
|
8197 |
|
8198 |
+
#: app/libraries/main.php:5652
|
8199 |
msgid "Saturday abbreviation"
|
8200 |
msgstr ""
|
8201 |
|
8202 |
+
#: app/libraries/main.php:5656
|
8203 |
msgid "Others"
|
8204 |
msgstr ""
|
8205 |
|
8206 |
+
#: app/libraries/main.php:5658
|
8207 |
msgid "Booking Success Message"
|
8208 |
msgstr ""
|
8209 |
|
8210 |
+
#: app/libraries/main.php:5658
|
8211 |
#, fuzzy
|
8212 |
#| msgid ""
|
8213 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
8220 |
"essere necessario la verifica della prenotazione, si prega di controllare la "
|
8221 |
"posta elettronica."
|
8222 |
|
8223 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
8224 |
msgid "Register Button"
|
8225 |
msgstr ""
|
8226 |
|
8227 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
8228 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8229 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8230 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8231 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8232 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
8233 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
8234 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8235 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8236 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
8242 |
msgid "REGISTER"
|
8243 |
msgstr "REGISTRA"
|
8244 |
|
8245 |
+
#: app/libraries/main.php:5660
|
8246 |
msgid "View Detail Button"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
8250 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8251 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8252 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8253 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8254 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
8255 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8256 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8257 |
msgid "View Detail"
|
8258 |
msgstr "Visualizza dettaglio"
|
8259 |
|
8260 |
+
#: app/libraries/main.php:5661
|
8261 |
msgid "Event Detail Button"
|
8262 |
msgstr ""
|
8263 |
|
8264 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
8265 |
msgid "Event Detail"
|
8266 |
msgstr "Dettaglio evento"
|
8267 |
|
8268 |
+
#: app/libraries/main.php:5663
|
8269 |
msgid "More Info Link"
|
8270 |
msgstr ""
|
8271 |
|
8272 |
+
#: app/libraries/main.php:5666
|
8273 |
msgid "Ticket (Singular)"
|
8274 |
msgstr ""
|
8275 |
|
8276 |
+
#: app/libraries/main.php:5667
|
8277 |
msgid "Tickets (Plural)"
|
8278 |
msgstr ""
|
8279 |
|
8280 |
+
#: app/libraries/main.php:5754
|
8281 |
msgid "EventON"
|
8282 |
msgstr ""
|
8283 |
|
8284 |
+
#: app/libraries/main.php:5755
|
8285 |
msgid "The Events Calendar"
|
8286 |
msgstr ""
|
8287 |
|
8288 |
+
#: app/libraries/main.php:5756
|
8289 |
msgid "Events Schedule WP Plugin"
|
8290 |
msgstr ""
|
8291 |
|
8292 |
+
#: app/libraries/main.php:5757
|
8293 |
msgid "Calendarize It"
|
8294 |
msgstr ""
|
8295 |
|
8296 |
+
#: app/libraries/main.php:5758
|
8297 |
#, fuzzy
|
8298 |
#| msgid "No Search Options"
|
8299 |
msgid "Event Espresso"
|
8300 |
msgstr "Nessuna opzione di ricerca"
|
8301 |
|
8302 |
+
#: app/libraries/main.php:5759
|
8303 |
#, fuzzy
|
8304 |
#| msgid "Event Repeating"
|
8305 |
msgid "Events Manager (Recurring)"
|
8306 |
msgstr "Ripetizione dell'evento"
|
8307 |
|
8308 |
+
#: app/libraries/main.php:5760
|
8309 |
#, fuzzy
|
8310 |
#| msgid "Modern Events Calendar"
|
8311 |
msgid "Events Manager (Single)"
|
8312 |
msgstr "Calendario moderno degli eventi"
|
8313 |
|
8314 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
8315 |
msgid "Confirmed"
|
8316 |
msgstr "Confermato"
|
8317 |
|
8318 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
8319 |
msgid "Rejected"
|
8320 |
msgstr "Rifiutato"
|
8321 |
|
8322 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
8323 |
msgid "Pending"
|
8324 |
msgstr "In attesa"
|
8325 |
|
8326 |
+
#: app/libraries/main.php:5882
|
8327 |
msgid "Waiting"
|
8328 |
msgstr "In attesa"
|
8329 |
|
8330 |
+
#: app/libraries/main.php:5925
|
8331 |
#, fuzzy
|
8332 |
#| msgid "Sunday"
|
8333 |
msgid "Sun"
|
8334 |
msgstr "Domenica"
|
8335 |
|
8336 |
+
#: app/libraries/main.php:5925
|
8337 |
#, fuzzy
|
8338 |
#| msgid "Month"
|
8339 |
msgid "Mon"
|
8340 |
msgstr "Mese"
|
8341 |
|
8342 |
+
#: app/libraries/main.php:5925
|
8343 |
#, fuzzy
|
8344 |
#| msgid "Tel"
|
8345 |
msgid "Tue"
|
8346 |
msgstr "Tel"
|
8347 |
|
8348 |
+
#: app/libraries/main.php:5925
|
8349 |
msgid "Wed"
|
8350 |
msgstr ""
|
8351 |
|
8352 |
+
#: app/libraries/main.php:5925
|
8353 |
msgid "Thu"
|
8354 |
msgstr ""
|
8355 |
|
8356 |
+
#: app/libraries/main.php:5925
|
8357 |
#, fuzzy
|
8358 |
#| msgid "Friday"
|
8359 |
msgid "Fri"
|
8360 |
msgstr "Venerdì"
|
8361 |
|
8362 |
+
#: app/libraries/main.php:5925
|
8363 |
#, fuzzy
|
8364 |
#| msgid "Start"
|
8365 |
msgid "Sat"
|
8366 |
msgstr "Partenza"
|
8367 |
|
8368 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
8369 |
#: app/libraries/render.php:432
|
8370 |
msgid "Skin controller does not exist."
|
8371 |
msgstr "Non esiste il controllo dello stile."
|
8372 |
|
8373 |
+
#: app/libraries/main.php:6302
|
8374 |
msgid "Sold Out"
|
8375 |
msgstr ""
|
8376 |
|
8377 |
+
#: app/libraries/main.php:6310
|
8378 |
#, fuzzy
|
8379 |
#| msgid "Ticket"
|
8380 |
msgid "Last Few Tickets"
|
8381 |
msgstr "Ticket"
|
8382 |
|
8383 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
8384 |
#, fuzzy
|
8385 |
#| msgid "hours"
|
8386 |
msgid "Hours"
|
8387 |
msgstr "ore"
|
8388 |
|
8389 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
8390 |
#, fuzzy
|
8391 |
#| msgid "minutes"
|
8392 |
msgid "Minutes"
|
8393 |
msgstr "minuti"
|
8394 |
|
8395 |
+
#: app/libraries/main.php:6652
|
8396 |
msgid "AM / PM"
|
8397 |
msgstr ""
|
8398 |
|
8399 |
+
#: app/libraries/main.php:6653
|
8400 |
+
msgid "AM"
|
8401 |
+
msgstr "AM"
|
8402 |
+
|
8403 |
+
#: app/libraries/main.php:6654
|
8404 |
+
msgid "PM"
|
8405 |
+
msgstr "PM"
|
8406 |
+
|
8407 |
+
#: app/libraries/main.php:6662
|
8408 |
msgid "Ongoing..."
|
8409 |
msgstr ""
|
8410 |
|
8411 |
+
#: app/libraries/main.php:6663
|
8412 |
msgid "Expired!"
|
8413 |
msgstr ""
|
8414 |
|
8416 |
msgid "Please verify your email."
|
8417 |
msgstr "Si prega di verificare la propria email."
|
8418 |
|
8419 |
+
#: app/libraries/notifications.php:158
|
8420 |
msgid "Your booking is received."
|
8421 |
msgstr ""
|
8422 |
|
8423 |
+
#: app/libraries/notifications.php:268
|
8424 |
msgid "Your booking is confirmed."
|
8425 |
msgstr "La tua prenotazione è confermata."
|
8426 |
|
8427 |
+
#: app/libraries/notifications.php:425
|
8428 |
#, fuzzy
|
8429 |
#| msgid "Your booking cannot be canceled."
|
8430 |
msgid "booking canceled."
|
8431 |
msgstr "La tua prenotazione non può essere cancellata."
|
8432 |
|
8433 |
+
#: app/libraries/notifications.php:503
|
8434 |
msgid "A new booking is received."
|
8435 |
msgstr "Una nuova prenotazione è stata ricevuta."
|
8436 |
|
8437 |
+
#: app/libraries/notifications.php:707
|
8438 |
msgid "A new event is added."
|
8439 |
msgstr "Un nuovo evento è stato aggiunto."
|
8440 |
|
8441 |
+
#: app/libraries/notifications.php:779
|
8442 |
#, fuzzy
|
8443 |
#| msgid "The event published."
|
8444 |
msgid "Your event is published."
|
8445 |
msgstr "L'evento è stato pubblicato."
|
8446 |
|
8447 |
+
#: app/libraries/notifications.php:912
|
8448 |
#, php-format
|
8449 |
msgid "%s to %s"
|
8450 |
msgstr "%s al %s"
|
8451 |
|
8452 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
8453 |
+
#: app/libraries/notifications.php:1060
|
8454 |
msgid "to"
|
8455 |
msgstr ""
|
8456 |
|
8457 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
8458 |
msgid "+ Add to Google Calendar"
|
8459 |
msgstr "+ Aggiungi a Google Calendar"
|
8460 |
|
8461 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
8462 |
msgid "+ iCal export"
|
8463 |
msgstr "+ Esporta iCal"
|
8464 |
|
8465 |
+
#: app/libraries/notifications.php:1139
|
8466 |
msgid "Yes"
|
8467 |
msgstr ""
|
8468 |
|
8469 |
+
#: app/libraries/notifications.php:1139
|
8470 |
msgid "No"
|
8471 |
msgstr ""
|
8472 |
|
8473 |
+
#: app/libraries/skins.php:1069
|
8474 |
#, fuzzy
|
8475 |
#| msgid "Select All"
|
8476 |
msgid "Select"
|
8477 |
msgstr "Seleziona tutto"
|
8478 |
|
8479 |
+
#: app/modules/attendees-list/details.php:39
|
8480 |
msgid "Event Attendees"
|
8481 |
msgstr "Partecipanti all'evento"
|
8482 |
|
8483 |
+
#: app/modules/attendees-list/details.php:41
|
8484 |
msgid "No attendee found! Be the first one to book!"
|
8485 |
msgstr "Non è stato trovato nessun partecipante! Sei il primo a prenotare!"
|
8486 |
|
8487 |
+
#: app/modules/attendees-list/details.php:62
|
8488 |
#, fuzzy
|
8489 |
#| msgid "Tickets"
|
8490 |
msgid "tickets"
|
8491 |
msgstr "Biglietto/ticket"
|
8492 |
|
8493 |
+
#: app/modules/attendees-list/details.php:92
|
8494 |
+
#, fuzzy, php-format
|
8495 |
+
#| msgid "%s tickets"
|
8496 |
+
msgid "%s ticket"
|
8497 |
+
msgid_plural "%s tickets"
|
8498 |
+
msgstr[0] "%s biglietti"
|
8499 |
+
msgstr[1] "%s biglietti"
|
8500 |
+
|
8501 |
#: app/modules/booking/steps/checkout.php:37
|
8502 |
msgid "Checkout"
|
8503 |
msgstr "Checkout"
|
8549 |
msgid "Fill other attendees information like the first form."
|
8550 |
msgstr ""
|
8551 |
|
8552 |
+
#: app/modules/booking/steps/tickets.php:32
|
8553 |
msgid "Book Event"
|
8554 |
msgstr "Evento prenotazione"
|
8555 |
|
8556 |
+
#: app/modules/booking/steps/tickets.php:59
|
8557 |
#, fuzzy
|
8558 |
#| msgid "Ticket Name"
|
8559 |
msgid "1 Ticket selected."
|
8560 |
msgstr "Nome biglietto/ticket"
|
8561 |
|
8562 |
+
#: app/modules/booking/steps/tickets.php:64
|
8563 |
#, php-format
|
8564 |
msgid "Available %s: <span>%s</span>"
|
8565 |
msgstr ""
|
8566 |
|
8567 |
+
#: app/modules/booking/steps/tickets.php:69
|
8568 |
#, php-format
|
8569 |
msgid "The %s ticket sales has stopped!"
|
8570 |
msgstr ""
|
8571 |
|
8572 |
+
#: app/modules/booking/steps/tickets.php:70
|
8573 |
#, php-format
|
8574 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8575 |
msgstr ""
|
8590 |
msgid "Get Directions"
|
8591 |
msgstr ""
|
8592 |
|
8593 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
8594 |
msgid "Share this event"
|
8595 |
msgstr "Condividi questo evento"
|
8596 |
|
8645 |
msgid "Go to occurrence page"
|
8646 |
msgstr "Vai alla pagina necessaria"
|
8647 |
|
8648 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
8649 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8650 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8651 |
msgid "Time"
|
8781 |
msgid "No Events"
|
8782 |
msgstr "Nessun evento"
|
8783 |
|
8784 |
+
#: app/skins/single.php:393
|
8785 |
msgid "Home"
|
8786 |
msgstr ""
|
8787 |
|
8788 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
8789 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8790 |
#: app/skins/single/modern.php:292
|
8791 |
msgid "Sold out!"
|
8792 |
msgstr ""
|
8793 |
|
8794 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
8795 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8796 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8797 |
#: app/skins/single/modern.php:55
|
8798 |
msgid "Phone"
|
8799 |
msgstr "Telefono"
|
8800 |
|
8801 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
8802 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8803 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8804 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
8807 |
msgid "Website"
|
8808 |
msgstr "Sito web"
|
8809 |
|
8810 |
+
#: app/skins/single.php:1261
|
8811 |
#, fuzzy
|
8812 |
#| msgid "No Search Options"
|
8813 |
msgid "Speakers:"
|
9359 |
#~ msgid "Can I Override MEC Template ?"
|
9360 |
#~ msgstr "Come sovrascrivere i files del tema MEC?"
|
9361 |
|
|
|
|
|
|
|
9362 |
#~ msgid "Security nonce is missing."
|
9363 |
#~ msgstr "Token di sicurezzamancante."
|
9364 |
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-06-
|
5 |
-
"PO-Revision-Date: 2020-06-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb_NO\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr "Modern Events Calendar"
|
@@ -347,7 +347,7 @@ msgid "Edit Event"
|
|
347 |
msgstr "Rediger arrangement"
|
348 |
|
349 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
350 |
-
#: app/features/popup/event.php:
|
351 |
msgid "View Event"
|
352 |
msgstr "Vis arrangement"
|
353 |
|
@@ -369,8 +369,8 @@ msgstr "Ingen arrangement funnet i søppelbøtta!"
|
|
369 |
#: app/features/mec/meta_boxes/search_form.php:654
|
370 |
#: app/features/mec/meta_boxes/search_form.php:760
|
371 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
372 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
373 |
-
#: app/libraries/skins.php:
|
374 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
375 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
376 |
#: app/skins/single/modern.php:137
|
@@ -380,7 +380,7 @@ msgstr "Kategori"
|
|
380 |
#: app/features/events.php:186 app/features/events.php:3193
|
381 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
382 |
#: app/features/mec/meta_boxes/filter.php:69
|
383 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
384 |
msgid "Categories"
|
385 |
msgstr "Kategorier"
|
386 |
|
@@ -469,7 +469,7 @@ msgid "Event Repeating"
|
|
469 |
msgstr "Gjentakende arrangement"
|
470 |
|
471 |
#: app/features/events.php:336 app/features/events.php:1215
|
472 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
473 |
msgid "Hourly Schedule"
|
474 |
msgstr "Timeplan"
|
475 |
|
@@ -503,18 +503,18 @@ msgstr "Lenke"
|
|
503 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
504 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
505 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
506 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
507 |
-
#: app/features/popup/event.php:
|
508 |
-
#: app/libraries/main.php:
|
509 |
-
#: app/skins/single.php:
|
510 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
511 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
512 |
msgid "Organizer"
|
513 |
msgstr "Arrangør"
|
514 |
|
515 |
#: app/features/events.php:340 app/features/events.php:1092
|
516 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
517 |
-
#: app/skins/single.php:
|
518 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
519 |
#: app/skins/single/modern.php:234
|
520 |
msgid "Cost"
|
@@ -538,8 +538,8 @@ msgstr "Gjestedata"
|
|
538 |
#: app/features/events.php:3769 app/features/fes.php:223
|
539 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
540 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
541 |
-
#: app/features/popup/event.php:
|
542 |
-
#: app/libraries/notifications.php:
|
543 |
msgid "Name"
|
544 |
msgstr "Navn"
|
545 |
|
@@ -551,9 +551,9 @@ msgstr "Navn"
|
|
551 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
552 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
553 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
554 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
555 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
556 |
-
#: app/skins/single.php:
|
557 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
558 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
559 |
#: app/skins/single/modern.php:62
|
@@ -569,7 +569,7 @@ msgstr "Dato og klokkeslett"
|
|
569 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
570 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
571 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
572 |
-
#: app/features/mec.php:
|
573 |
#: app/features/mec/meta_boxes/display_options.php:278
|
574 |
#: app/features/mec/meta_boxes/display_options.php:517
|
575 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -593,12 +593,12 @@ msgstr "Startdato"
|
|
593 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
594 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
595 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
596 |
-
#: app/features/mec.php:
|
597 |
msgid "End Date"
|
598 |
msgstr "Sluttdato"
|
599 |
|
600 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
601 |
-
#: app/features/popup/event.php:
|
602 |
#, fuzzy
|
603 |
#| msgid "All Day Event"
|
604 |
msgid "All-day Event"
|
@@ -640,7 +640,7 @@ msgstr ""
|
|
640 |
#: app/features/events.php:2151 app/features/events.php:2166
|
641 |
#: app/features/events.php:2196 app/features/events.php:2209
|
642 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
643 |
-
#: app/features/locations.php:
|
644 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
645 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
646 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -704,8 +704,8 @@ msgstr ""
|
|
704 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
705 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
706 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
707 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
708 |
-
#: app/features/popup/event.php:
|
709 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
710 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
711 |
#: app/skins/single/modern.php:160
|
@@ -729,7 +729,7 @@ msgid "Repeats"
|
|
729 |
msgstr "Gjentakelser"
|
730 |
|
731 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
732 |
-
#: app/features/mec.php:
|
733 |
#: app/skins/full_calendar/tpl.php:121
|
734 |
msgid "Daily"
|
735 |
msgstr "Daglig"
|
@@ -753,13 +753,13 @@ msgid "Weekly"
|
|
753 |
msgstr "Ukentlig"
|
754 |
|
755 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
756 |
-
#: app/features/mec.php:
|
757 |
#: app/skins/full_calendar/tpl.php:119
|
758 |
msgid "Monthly"
|
759 |
msgstr "Månedlig"
|
760 |
|
761 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
762 |
-
#: app/features/mec.php:
|
763 |
#: app/skins/full_calendar/tpl.php:118
|
764 |
msgid "Yearly"
|
765 |
msgstr "Årlig"
|
@@ -899,7 +899,7 @@ msgstr "Neste forekomst av Andre Arrangement"
|
|
899 |
#: app/features/events.php:1088 app/features/events.php:3431
|
900 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
901 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
902 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
903 |
#: app/widgets/single.php:103
|
904 |
msgid "Event Cost"
|
905 |
msgstr "Kostnad for arrangementet"
|
@@ -917,8 +917,8 @@ msgstr "Ekskluder bestemte dager"
|
|
917 |
#: app/features/events.php:1124 app/features/events.php:2330
|
918 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
919 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
920 |
-
#: app/modules/booking/steps/tickets.php:
|
921 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
922 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
923 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
924 |
msgid "Date"
|
@@ -1005,7 +1005,7 @@ msgstr "Beskrivelse"
|
|
1005 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
1006 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
1007 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
1008 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
1009 |
#: app/modules/speakers/details.php:18
|
1010 |
msgid "Speakers"
|
1011 |
msgstr "Foredragsholdere"
|
@@ -1022,7 +1022,7 @@ msgid "Event Links"
|
|
1022 |
msgstr "Arrangemenslenker"
|
1023 |
|
1024 |
#: app/features/events.php:1408 app/features/events.php:1414
|
1025 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
1026 |
msgid "Event Link"
|
1027 |
msgstr "Arrangemenslenke"
|
1028 |
|
@@ -1049,8 +1049,8 @@ msgid "URL Shortener"
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1052 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
1053 |
-
#: app/skins/single.php:
|
1054 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1055 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1056 |
#: app/widgets/single.php:107
|
@@ -1088,8 +1088,8 @@ msgid "Total User Booking Limits"
|
|
1088 |
msgstr "Totalt antall bestillingsgrenser"
|
1089 |
|
1090 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1091 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
1092 |
-
#: app/modules/booking/steps/tickets.php:
|
1093 |
msgid "Tickets"
|
1094 |
msgstr "Billetter"
|
1095 |
|
@@ -1117,7 +1117,7 @@ msgstr "Totalt antall bestillingsgrenser"
|
|
1117 |
|
1118 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1119 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1120 |
-
#: app/modules/booking/steps/tickets.php:
|
1121 |
#: app/skins/available_spot/tpl.php:142
|
1122 |
msgid "Unlimited"
|
1123 |
msgstr "Ubegrenset"
|
@@ -1289,7 +1289,7 @@ msgstr "Pris pr. dato"
|
|
1289 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1290 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1291 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1292 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1293 |
msgid "Label"
|
1294 |
msgstr "Etikett"
|
1295 |
|
@@ -1511,8 +1511,8 @@ msgstr "Deltagerbegrensning"
|
|
1511 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1512 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1513 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1514 |
-
#: app/features/locations.php:
|
1515 |
-
#: app/features/locations.php:
|
1516 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1517 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1518 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1526,10 +1526,10 @@ msgstr "Deltagerbegrensning"
|
|
1526 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1527 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1528 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1529 |
-
#: app/features/popup/event.php:
|
1530 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1531 |
-
#: app/libraries/main.php:
|
1532 |
-
#: app/skins/single.php:
|
1533 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1534 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1535 |
#: app/skins/single/modern.php:113
|
@@ -1571,7 +1571,7 @@ msgstr "Dupliser"
|
|
1571 |
|
1572 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1573 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1574 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1575 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1576 |
msgid "ID"
|
1577 |
msgstr "ID"
|
@@ -1593,7 +1593,7 @@ msgstr "%s E-post"
|
|
1593 |
|
1594 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1595 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1596 |
-
#: app/libraries/main.php:
|
1597 |
msgid "Ticket"
|
1598 |
msgstr "Billett"
|
1599 |
|
@@ -1806,7 +1806,7 @@ msgid "eg. yourname@gmail.com"
|
|
1806 |
msgstr "f.eks. dittanavn@gmail.com"
|
1807 |
|
1808 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1809 |
-
#: app/features/popup/event.php:
|
1810 |
msgid "eg. John Smith"
|
1811 |
msgstr "f.eks. Ola Nordmann"
|
1812 |
|
@@ -1833,8 +1833,8 @@ msgstr "Fjern bilde"
|
|
1833 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1834 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1835 |
#: app/features/mec/meta_boxes/filter.php:72
|
1836 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1837 |
-
#: app/skins/single.php:
|
1838 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1839 |
#: app/skins/single/modern.php:249
|
1840 |
msgid "Labels"
|
@@ -2628,7 +2628,7 @@ msgid "Featured"
|
|
2628 |
msgstr "Fremhevet"
|
2629 |
|
2630 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2631 |
-
#: app/libraries/main.php:
|
2632 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2633 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2634 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2646,30 +2646,30 @@ msgstr "Kansellert"
|
|
2646 |
msgid "You can show featured and canceled events by a different style!"
|
2647 |
msgstr "Du kan vise utvalgte og kansellerte hendelser med en annen stil!"
|
2648 |
|
2649 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2650 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2651 |
-
#: app/modules/booking/steps/tickets.php:
|
2652 |
msgid "Count"
|
2653 |
msgstr "Antall"
|
2654 |
|
2655 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2656 |
#: app/features/organizers.php:207
|
2657 |
msgid "Slug"
|
2658 |
msgstr "Slug"
|
2659 |
|
2660 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2661 |
#, php-format
|
2662 |
msgid "Event %s"
|
2663 |
msgstr "Arrangement %s"
|
2664 |
|
2665 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2666 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2667 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2668 |
msgid "Locations"
|
2669 |
msgstr "Steder"
|
2670 |
|
2671 |
-
#: app/features/locations.php:
|
2672 |
-
#: app/features/locations.php:
|
2673 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2674 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2675 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2684,97 +2684,97 @@ msgstr "Steder"
|
|
2684 |
msgid "Address"
|
2685 |
msgstr "Adresse"
|
2686 |
|
2687 |
-
#: app/features/locations.php:
|
2688 |
msgid "Enter the location address"
|
2689 |
msgstr "Angi stedsadresse"
|
2690 |
|
2691 |
-
#: app/features/locations.php:
|
2692 |
-
#: app/features/locations.php:
|
2693 |
msgid "Latitude"
|
2694 |
msgstr "Breddegrad"
|
2695 |
|
2696 |
-
#: app/features/locations.php:
|
2697 |
msgid "Geo latitude (Optional)"
|
2698 |
msgstr "Geo Latitude (Valgfritt)"
|
2699 |
|
2700 |
-
#: app/features/locations.php:
|
2701 |
-
#: app/features/locations.php:
|
2702 |
msgid "Longitude"
|
2703 |
msgstr "Lengdegrad"
|
2704 |
|
2705 |
-
#: app/features/locations.php:
|
2706 |
msgid "Geo longitude (Optional)"
|
2707 |
msgstr "Geo lengdegrad (Valgfritt)"
|
2708 |
|
2709 |
-
#: app/features/locations.php:
|
2710 |
-
#: app/features/locations.php:
|
2711 |
#, fuzzy
|
2712 |
#| msgid "Locations"
|
2713 |
msgid "Location Website"
|
2714 |
msgstr "Steder"
|
2715 |
|
2716 |
-
#: app/features/locations.php:
|
2717 |
#, fuzzy
|
2718 |
#| msgid "Geo latitude (Optional)"
|
2719 |
msgid "Location Website (Optional)"
|
2720 |
msgstr "Geo Latitude (Valgfritt)"
|
2721 |
|
2722 |
-
#: app/features/locations.php:
|
2723 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2724 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2725 |
msgid "Thumbnail"
|
2726 |
msgstr "Miniatyrbilde"
|
2727 |
|
2728 |
-
#: app/features/locations.php:
|
2729 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2730 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2731 |
msgid "Upload/Add image"
|
2732 |
msgstr "Last opp/Legg til bilde"
|
2733 |
|
2734 |
-
#: app/features/locations.php:
|
2735 |
-
#: app/features/locations.php:
|
2736 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2737 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2738 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2739 |
msgid "Remove image"
|
2740 |
msgstr "Fjern bilde"
|
2741 |
|
2742 |
-
#: app/features/locations.php:
|
2743 |
msgid "Hide location"
|
2744 |
msgstr "Skjul Plassering"
|
2745 |
|
2746 |
-
#: app/features/locations.php:
|
2747 |
msgid "Insert a new location"
|
2748 |
msgstr "Sett inn nytt sted"
|
2749 |
|
2750 |
-
#: app/features/locations.php:
|
2751 |
msgid "Choose one of saved locations or insert new one below."
|
2752 |
msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
|
2753 |
|
2754 |
-
#: app/features/locations.php:
|
2755 |
msgid "Location Name"
|
2756 |
msgstr "Skriv inn stedsnavn..."
|
2757 |
|
2758 |
-
#: app/features/locations.php:
|
2759 |
msgid "eg. City Hall"
|
2760 |
msgstr "f.eks. rådhuset"
|
2761 |
|
2762 |
-
#: app/features/locations.php:
|
2763 |
-
#: app/features/popup/event.php:
|
2764 |
msgid "Event Location"
|
2765 |
msgstr "Arrangementssted"
|
2766 |
|
2767 |
-
#: app/features/locations.php:
|
2768 |
msgid "eg. City hall, Manhattan, New York"
|
2769 |
msgstr "f.eks Norske Operaen, Oslo, Norge"
|
2770 |
|
2771 |
-
#: app/features/locations.php:
|
2772 |
#, fuzzy
|
2773 |
#| msgid "Longitude"
|
2774 |
msgid "Latitude/Longitude"
|
2775 |
msgstr "Lengdegrad"
|
2776 |
|
2777 |
-
#: app/features/locations.php:
|
2778 |
msgid ""
|
2779 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2780 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2783,26 +2783,26 @@ msgid ""
|
|
2783 |
"the location on the map to find lat long coordinates."
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: app/features/locations.php:
|
2787 |
msgid "Get Latitude and Longitude"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: app/features/locations.php:
|
2791 |
-
#: app/features/popup/event.php:
|
2792 |
msgid "Choose image"
|
2793 |
msgstr "Velg bilde"
|
2794 |
|
2795 |
-
#: app/features/locations.php:
|
2796 |
msgid "Don't show map in single event page"
|
2797 |
msgstr "Ikke vis kart i enkelt arrangement visning"
|
2798 |
|
2799 |
-
#: app/features/locations.php:
|
2800 |
#, fuzzy
|
2801 |
#| msgid "Locations"
|
2802 |
msgid "Other Locations"
|
2803 |
msgstr "Steder"
|
2804 |
|
2805 |
-
#: app/features/locations.php:
|
2806 |
#, fuzzy
|
2807 |
#| msgid ""
|
2808 |
#| "You can select extra organizers in addition to main organizer if you like."
|
@@ -2889,7 +2889,7 @@ msgstr "Support"
|
|
2889 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2890 |
#: app/features/mec/meta_boxes/filter.php:71
|
2891 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2892 |
-
#: app/libraries/main.php:
|
2893 |
msgid "Organizers"
|
2894 |
msgstr "Arrangører"
|
2895 |
|
@@ -2930,7 +2930,7 @@ msgstr "Eksporter"
|
|
2930 |
msgid "MEC - Go Pro"
|
2931 |
msgstr "MEC-støtte"
|
2932 |
|
2933 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2934 |
#: app/features/mec/go-pro.php:9
|
2935 |
msgid "Go Pro"
|
2936 |
msgstr ""
|
@@ -2989,73 +2989,73 @@ msgstr "Separer Vindu"
|
|
2989 |
msgid "Modal Popup"
|
2990 |
msgstr "Modale 1"
|
2991 |
|
2992 |
-
#: app/features/mec.php:
|
2993 |
msgid "Total Bookings"
|
2994 |
msgstr "Totalt Antall Bestillinger"
|
2995 |
|
2996 |
-
#: app/features/mec.php:
|
2997 |
msgid "Modern Events Calendar (Lite)"
|
2998 |
msgstr "Kalender for moderne arrangementer (lite)"
|
2999 |
|
3000 |
-
#: app/features/mec.php:
|
3001 |
#: app/features/mec/settings.php:428
|
3002 |
msgid "Upcoming Events"
|
3003 |
msgstr "Kommende arrangementer"
|
3004 |
|
3005 |
-
#: app/features/mec.php:
|
3006 |
#, fuzzy
|
3007 |
#| msgid "Update %s"
|
3008 |
msgid "News & Updates"
|
3009 |
msgstr "Oppdatere %s"
|
3010 |
|
3011 |
-
#: app/features/mec.php:
|
3012 |
msgid "Blog"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: app/features/mec.php:
|
3016 |
msgid "Help"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: app/features/mec.php:
|
3020 |
msgid "This Month"
|
3021 |
msgstr "Denne måneden"
|
3022 |
|
3023 |
-
#: app/features/mec.php:
|
3024 |
msgid "Last Month"
|
3025 |
msgstr "Siste måned"
|
3026 |
|
3027 |
-
#: app/features/mec.php:
|
3028 |
msgid "This Year"
|
3029 |
msgstr "Dette Året"
|
3030 |
|
3031 |
-
#: app/features/mec.php:
|
3032 |
msgid "Last Year"
|
3033 |
msgstr "Siste År"
|
3034 |
|
3035 |
-
#: app/features/mec.php:
|
3036 |
msgid "Bar"
|
3037 |
msgstr "Stolpe"
|
3038 |
|
3039 |
-
#: app/features/mec.php:
|
3040 |
msgid "Line"
|
3041 |
msgstr "Linje"
|
3042 |
|
3043 |
-
#: app/features/mec.php:
|
3044 |
msgid "Filter"
|
3045 |
msgstr "Filter"
|
3046 |
|
3047 |
-
#: app/features/mec.php:
|
3048 |
#, php-format
|
3049 |
msgid "Total Sells (%s)"
|
3050 |
msgstr "Totalt salg (% s)"
|
3051 |
|
3052 |
-
#: app/features/mec.php:
|
3053 |
#, fuzzy
|
3054 |
#| msgid "Modern Events Calendar"
|
3055 |
msgid "Print Calendar"
|
3056 |
msgstr "Modern Events Calendar"
|
3057 |
|
3058 |
-
#: app/features/mec.php:
|
3059 |
#, fuzzy
|
3060 |
#| msgid "Display Event Price"
|
3061 |
msgid "Display Events"
|
@@ -3454,7 +3454,7 @@ msgstr "Innstillinger Lagret!"
|
|
3454 |
#: app/features/mec/notifications.php:923
|
3455 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3456 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3457 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3458 |
msgid "Verified"
|
3459 |
msgstr "Verifisert"
|
3460 |
|
@@ -4645,8 +4645,8 @@ msgstr "Vis Søkefelt"
|
|
4645 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4646 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4647 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4648 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4649 |
-
#: app/libraries/skins.php:
|
4650 |
msgid "Speaker"
|
4651 |
msgstr "Foredragsholder"
|
4652 |
|
@@ -4662,7 +4662,7 @@ msgstr "Foredragsholder"
|
|
4662 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4663 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4664 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4665 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4666 |
#, fuzzy
|
4667 |
#| msgid "Tags"
|
4668 |
msgid "Tag"
|
@@ -5461,7 +5461,7 @@ msgstr ""
|
|
5461 |
"Sender melding til admin for å gi hint til han/henne at ny booking er kommet."
|
5462 |
|
5463 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5464 |
-
#: app/libraries/notifications.php:
|
5465 |
msgid "Booking Reminder"
|
5466 |
msgstr "Påminnelse angående din bestilling"
|
5467 |
|
@@ -5492,7 +5492,7 @@ msgstr "Dager"
|
|
5492 |
msgid "Please, insert comma to separate reminder days."
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5496 |
#: app/libraries/main.php:584
|
5497 |
msgid "New Event"
|
5498 |
msgstr "Nytt Arrangement"
|
@@ -5726,7 +5726,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5726 |
msgstr ""
|
5727 |
|
5728 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5729 |
-
#: app/libraries/main.php:
|
5730 |
msgid "Weekdays"
|
5731 |
msgstr "Ukedager"
|
5732 |
|
@@ -6520,7 +6520,7 @@ msgstr ""
|
|
6520 |
"arrangement side."
|
6521 |
|
6522 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6523 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
6524 |
#, fuzzy
|
6525 |
#| msgid "featured event"
|
6526 |
msgid "Related Events"
|
@@ -7191,7 +7191,7 @@ msgid "Insert organizer email address."
|
|
7191 |
msgstr "Sett inn organisatorens e-postadresse."
|
7192 |
|
7193 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7194 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
7195 |
msgid "Link to organizer page"
|
7196 |
msgstr "Lenke til arrangørside"
|
7197 |
|
@@ -7208,40 +7208,40 @@ msgstr "Kontaktinfo"
|
|
7208 |
msgid "Event Main %s"
|
7209 |
msgstr "Hendelse Hoved %s"
|
7210 |
|
7211 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
7212 |
msgid "Hide organizer"
|
7213 |
msgstr "Skjul arrangør"
|
7214 |
|
7215 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
7216 |
msgid "Insert a new organizer"
|
7217 |
msgstr "Sett inn en ny arrangør"
|
7218 |
|
7219 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
7220 |
msgid "Choose one of saved organizers or insert new one below."
|
7221 |
msgstr "Velg en av lagrede arrangører eller sett inn en ny nedenfor."
|
7222 |
|
7223 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
7224 |
msgid "Phone number."
|
7225 |
msgstr "Telefonnummer."
|
7226 |
|
7227 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
7228 |
msgid "eg. +1 (234) 5678"
|
7229 |
msgstr "f.eks. +47 22334455"
|
7230 |
|
7231 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
7232 |
msgid "Email address."
|
7233 |
msgstr "E-postadresse."
|
7234 |
|
7235 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
7236 |
msgid "eg. john@smith.com"
|
7237 |
msgstr "f.eks. Ola Nordmann"
|
7238 |
|
7239 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
7240 |
msgid "eg. https://webnus.net"
|
7241 |
msgstr "F.eks. https://webnus.net"
|
7242 |
|
7243 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
7244 |
-
#: app/skins/single.php:
|
7245 |
msgid "Other Organizers"
|
7246 |
msgstr "Andre Arrangører"
|
7247 |
|
@@ -7267,67 +7267,57 @@ msgstr "Arrangementsnotat"
|
|
7267 |
msgid "Event name is required"
|
7268 |
msgstr ""
|
7269 |
|
7270 |
-
#: app/features/popup/event.php:
|
7271 |
-
#: app/libraries/main.php:6643
|
7272 |
-
msgid "AM"
|
7273 |
-
msgstr "AM"
|
7274 |
-
|
7275 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
7276 |
-
#: app/libraries/main.php:6644
|
7277 |
-
msgid "PM"
|
7278 |
-
msgstr "PM"
|
7279 |
-
|
7280 |
-
#: app/features/popup/event.php:256
|
7281 |
#, fuzzy
|
7282 |
#| msgid "Choose one of saved locations or insert new one below."
|
7283 |
msgid "Choose one of saved locations or insert new one."
|
7284 |
msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
|
7285 |
|
7286 |
-
#: app/features/popup/event.php:
|
7287 |
#, fuzzy
|
7288 |
#| msgid "Location"
|
7289 |
msgid "Add Location"
|
7290 |
msgstr "Sted"
|
7291 |
|
7292 |
-
#: app/features/popup/event.php:
|
7293 |
#, fuzzy
|
7294 |
#| msgid "Organizer"
|
7295 |
msgid "Add Organizer"
|
7296 |
msgstr "Arrangør"
|
7297 |
|
7298 |
-
#: app/features/popup/event.php:
|
7299 |
#, fuzzy
|
7300 |
#| msgid "Categories"
|
7301 |
msgid "All Categories"
|
7302 |
msgstr "Kategorier"
|
7303 |
|
7304 |
-
#: app/features/popup/event.php:
|
7305 |
msgid "Most Used"
|
7306 |
msgstr ""
|
7307 |
|
7308 |
-
#: app/features/popup/event.php:
|
7309 |
#, fuzzy
|
7310 |
#| msgid "Add New Coupon"
|
7311 |
msgid "Add New Category"
|
7312 |
msgstr "Legg til ny rabattkode"
|
7313 |
|
7314 |
-
#: app/features/popup/event.php:
|
7315 |
#, fuzzy
|
7316 |
#| msgid "Featured Image"
|
7317 |
msgid "Set Featured Image"
|
7318 |
msgstr "Fremhevet bilde"
|
7319 |
|
7320 |
-
#: app/features/popup/event.php:
|
7321 |
msgid "Your Event Has Been Created."
|
7322 |
msgstr ""
|
7323 |
|
7324 |
-
#: app/features/popup/event.php:
|
7325 |
msgid "Prev"
|
7326 |
msgstr ""
|
7327 |
|
7328 |
-
#: app/features/popup/event.php:
|
7329 |
#: app/modules/booking/steps/form.php:188
|
7330 |
-
#: app/modules/booking/steps/tickets.php:
|
7331 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7332 |
msgid "Next"
|
7333 |
msgstr "Neste"
|
@@ -7572,11 +7562,11 @@ msgstr "Søk i %s"
|
|
7572 |
msgid "No search result."
|
7573 |
msgstr ""
|
7574 |
|
7575 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7576 |
-
#: app/libraries/notifications.php:
|
7577 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7578 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7579 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
7580 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7581 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7582 |
#, fuzzy
|
@@ -7660,12 +7650,12 @@ msgstr ""
|
|
7660 |
msgid "%s Price"
|
7661 |
msgstr "%s pris"
|
7662 |
|
7663 |
-
#: app/libraries/book.php:
|
7664 |
msgid "Discount"
|
7665 |
msgstr "Rabatt"
|
7666 |
|
7667 |
-
#: app/libraries/book.php:
|
7668 |
-
#: app/modules/booking/default.php:
|
7669 |
msgid "Download Invoice"
|
7670 |
msgstr "Last ned Faktura"
|
7671 |
|
@@ -7688,51 +7678,51 @@ msgctxt "plugin link"
|
|
7688 |
msgid "Upgrade"
|
7689 |
msgstr "Oppgrader"
|
7690 |
|
7691 |
-
#: app/libraries/factory.php:
|
7692 |
msgid "day"
|
7693 |
msgstr "dag"
|
7694 |
|
7695 |
-
#: app/libraries/factory.php:
|
7696 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7697 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7698 |
msgid "days"
|
7699 |
msgstr "dager"
|
7700 |
|
7701 |
-
#: app/libraries/factory.php:
|
7702 |
msgid "hour"
|
7703 |
msgstr "time"
|
7704 |
|
7705 |
-
#: app/libraries/factory.php:
|
7706 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7707 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7708 |
msgid "hours"
|
7709 |
msgstr "timer"
|
7710 |
|
7711 |
-
#: app/libraries/factory.php:
|
7712 |
msgid "minute"
|
7713 |
msgstr "minutt"
|
7714 |
|
7715 |
-
#: app/libraries/factory.php:
|
7716 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7717 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7718 |
msgid "minutes"
|
7719 |
msgstr "minutter"
|
7720 |
|
7721 |
-
#: app/libraries/factory.php:
|
7722 |
msgid "second"
|
7723 |
msgstr "sekund"
|
7724 |
|
7725 |
-
#: app/libraries/factory.php:
|
7726 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7727 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7728 |
msgid "seconds"
|
7729 |
msgstr "sekunder"
|
7730 |
|
7731 |
-
#: app/libraries/factory.php:
|
7732 |
msgid "MEC Single Sidebar"
|
7733 |
msgstr "MEC Singel Sidebar"
|
7734 |
|
7735 |
-
#: app/libraries/factory.php:
|
7736 |
msgid "Custom sidebar for single and modal page of MEC."
|
7737 |
msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
|
7738 |
|
@@ -7796,31 +7786,31 @@ msgstr "Slider Visning"
|
|
7796 |
msgid "Timeline View"
|
7797 |
msgstr "Tidstabell Visning"
|
7798 |
|
7799 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7800 |
msgid "SU"
|
7801 |
msgstr "SØN"
|
7802 |
|
7803 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7804 |
msgid "MO"
|
7805 |
msgstr "MAN"
|
7806 |
|
7807 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7808 |
msgid "TU"
|
7809 |
msgstr "TIRS"
|
7810 |
|
7811 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7812 |
msgid "WE"
|
7813 |
msgstr "ONS"
|
7814 |
|
7815 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7816 |
msgid "TH"
|
7817 |
msgstr "TORS"
|
7818 |
|
7819 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7820 |
msgid "FR"
|
7821 |
msgstr "FRE"
|
7822 |
|
7823 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7824 |
msgid "SA"
|
7825 |
msgstr "LØR"
|
7826 |
|
@@ -8153,111 +8143,111 @@ msgstr "Sett inn en etikett for dette alternativet"
|
|
8153 |
msgid "Free"
|
8154 |
msgstr "Gratis"
|
8155 |
|
8156 |
-
#: app/libraries/main.php:
|
8157 |
#, fuzzy
|
8158 |
#| msgid "M.E. Calendar"
|
8159 |
msgid "M.E. Calender"
|
8160 |
msgstr "ME Kalender"
|
8161 |
|
8162 |
-
#: app/libraries/main.php:
|
8163 |
#, php-format
|
8164 |
msgid "Copy of %s"
|
8165 |
msgstr "Kopi av %s"
|
8166 |
|
8167 |
-
#: app/libraries/main.php:
|
8168 |
msgid "Booked an event."
|
8169 |
msgstr "Bestilte ett arrangement."
|
8170 |
|
8171 |
-
#: app/libraries/main.php:
|
8172 |
#, php-format
|
8173 |
msgid "%s booked %s event."
|
8174 |
msgstr "%s bestilt %s arrangement."
|
8175 |
|
8176 |
-
#: app/libraries/main.php:
|
8177 |
msgid "Taxonomies"
|
8178 |
msgstr "Taxonomies"
|
8179 |
|
8180 |
-
#: app/libraries/main.php:
|
8181 |
msgid "Category Plural Label"
|
8182 |
msgstr "Kategori Fler Etikett"
|
8183 |
|
8184 |
-
#: app/libraries/main.php:
|
8185 |
msgid "Category Singular Label"
|
8186 |
msgstr "Kategori Singel Tittel"
|
8187 |
|
8188 |
-
#: app/libraries/main.php:
|
8189 |
msgid "Label Plural Label"
|
8190 |
msgstr "Etiketter Flertall"
|
8191 |
|
8192 |
-
#: app/libraries/main.php:
|
8193 |
msgid "Label Singular Label"
|
8194 |
msgstr "Etiketter Entall"
|
8195 |
|
8196 |
-
#: app/libraries/main.php:
|
8197 |
msgid "label"
|
8198 |
msgstr "etikett"
|
8199 |
|
8200 |
-
#: app/libraries/main.php:
|
8201 |
msgid "Location Plural Label"
|
8202 |
msgstr "Lokasjon Flertall Etiketter"
|
8203 |
|
8204 |
-
#: app/libraries/main.php:
|
8205 |
msgid "Location Singular Label"
|
8206 |
msgstr "Plasseringen Entall Etikett"
|
8207 |
|
8208 |
-
#: app/libraries/main.php:
|
8209 |
msgid "Organizer Plural Label"
|
8210 |
msgstr "Arrangør Flertall etikett"
|
8211 |
|
8212 |
-
#: app/libraries/main.php:
|
8213 |
msgid "Organizer Singular Label"
|
8214 |
msgstr "Arrangør Enkel Etikett"
|
8215 |
|
8216 |
-
#: app/libraries/main.php:
|
8217 |
msgid "Speaker Plural Label"
|
8218 |
msgstr "Instruktør/Foredragsholder flere etiketter"
|
8219 |
|
8220 |
-
#: app/libraries/main.php:
|
8221 |
msgid "Speaker Singular Label"
|
8222 |
msgstr "Instruktør/Foredragsholder enkelt etikett"
|
8223 |
|
8224 |
-
#: app/libraries/main.php:
|
8225 |
msgid "Sunday abbreviation"
|
8226 |
msgstr "Forkortelser på søndager"
|
8227 |
|
8228 |
-
#: app/libraries/main.php:
|
8229 |
msgid "Monday abbreviation"
|
8230 |
msgstr "Mandag forkortelse"
|
8231 |
|
8232 |
-
#: app/libraries/main.php:
|
8233 |
msgid "Tuesday abbreviation"
|
8234 |
msgstr "Tirsdag forkortelse"
|
8235 |
|
8236 |
-
#: app/libraries/main.php:
|
8237 |
msgid "Wednesday abbreviation"
|
8238 |
msgstr "Onsdag forkortelse"
|
8239 |
|
8240 |
-
#: app/libraries/main.php:
|
8241 |
msgid "Thursday abbreviation"
|
8242 |
msgstr "Torsdag forkortelse"
|
8243 |
|
8244 |
-
#: app/libraries/main.php:
|
8245 |
msgid "Friday abbreviation"
|
8246 |
msgstr "Fredag forkortelse"
|
8247 |
|
8248 |
-
#: app/libraries/main.php:
|
8249 |
msgid "Saturday abbreviation"
|
8250 |
msgstr "Lørdag forkortelse"
|
8251 |
|
8252 |
-
#: app/libraries/main.php:
|
8253 |
msgid "Others"
|
8254 |
msgstr "Øvrige"
|
8255 |
|
8256 |
-
#: app/libraries/main.php:
|
8257 |
msgid "Booking Success Message"
|
8258 |
msgstr "Melding ved vellykket bestilling"
|
8259 |
|
8260 |
-
#: app/libraries/main.php:
|
8261 |
#, fuzzy
|
8262 |
#| msgid ""
|
8263 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -8269,17 +8259,17 @@ msgstr ""
|
|
8269 |
"Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
|
8270 |
"bekreftelse. Vennligst sjekk din epost."
|
8271 |
|
8272 |
-
#: app/libraries/main.php:
|
8273 |
msgid "Register Button"
|
8274 |
msgstr "Registreringsknapp"
|
8275 |
|
8276 |
-
#: app/libraries/main.php:
|
8277 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8278 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8279 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8280 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8281 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
8282 |
-
#: app/skins/single.php:
|
8283 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8284 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8285 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -8291,167 +8281,175 @@ msgstr "Registreringsknapp"
|
|
8291 |
msgid "REGISTER"
|
8292 |
msgstr "Registrere"
|
8293 |
|
8294 |
-
#: app/libraries/main.php:
|
8295 |
msgid "View Detail Button"
|
8296 |
msgstr "Se Detalj Knapp"
|
8297 |
|
8298 |
-
#: app/libraries/main.php:
|
8299 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8300 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8301 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8302 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8303 |
-
#: app/skins/single.php:
|
8304 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8305 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8306 |
msgid "View Detail"
|
8307 |
msgstr "Se detaljer"
|
8308 |
|
8309 |
-
#: app/libraries/main.php:
|
8310 |
msgid "Event Detail Button"
|
8311 |
msgstr "Knapp for arrangementsdetaljer"
|
8312 |
|
8313 |
-
#: app/libraries/main.php:
|
8314 |
msgid "Event Detail"
|
8315 |
msgstr "Arrangement Detaljer"
|
8316 |
|
8317 |
-
#: app/libraries/main.php:
|
8318 |
msgid "More Info Link"
|
8319 |
msgstr "Mer Info Lenke"
|
8320 |
|
8321 |
-
#: app/libraries/main.php:
|
8322 |
msgid "Ticket (Singular)"
|
8323 |
msgstr "Billett (Singel)"
|
8324 |
|
8325 |
-
#: app/libraries/main.php:
|
8326 |
msgid "Tickets (Plural)"
|
8327 |
msgstr "Billetter (Flertall)"
|
8328 |
|
8329 |
-
#: app/libraries/main.php:
|
8330 |
msgid "EventON"
|
8331 |
msgstr "EventON"
|
8332 |
|
8333 |
-
#: app/libraries/main.php:
|
8334 |
msgid "The Events Calendar"
|
8335 |
msgstr "Aktivitetskalenderen"
|
8336 |
|
8337 |
-
#: app/libraries/main.php:
|
8338 |
msgid "Events Schedule WP Plugin"
|
8339 |
msgstr "Arrangement Planlegging WP Plugin"
|
8340 |
|
8341 |
-
#: app/libraries/main.php:
|
8342 |
msgid "Calendarize It"
|
8343 |
msgstr "HOP Kalender"
|
8344 |
|
8345 |
-
#: app/libraries/main.php:
|
8346 |
#, fuzzy
|
8347 |
#| msgid "Event Speakers"
|
8348 |
msgid "Event Espresso"
|
8349 |
msgstr "Event høyttalere"
|
8350 |
|
8351 |
-
#: app/libraries/main.php:
|
8352 |
#, fuzzy
|
8353 |
#| msgid "Event Repeating"
|
8354 |
msgid "Events Manager (Recurring)"
|
8355 |
msgstr "Gjentakende arrangement"
|
8356 |
|
8357 |
-
#: app/libraries/main.php:
|
8358 |
#, fuzzy
|
8359 |
#| msgid "Modern Events Calendar (Lite)"
|
8360 |
msgid "Events Manager (Single)"
|
8361 |
msgstr "Kalender for moderne arrangementer (lite)"
|
8362 |
|
8363 |
-
#: app/libraries/main.php:
|
8364 |
msgid "Confirmed"
|
8365 |
msgstr "Bekreftet"
|
8366 |
|
8367 |
-
#: app/libraries/main.php:
|
8368 |
msgid "Rejected"
|
8369 |
msgstr "Avvist"
|
8370 |
|
8371 |
-
#: app/libraries/main.php:
|
8372 |
msgid "Pending"
|
8373 |
msgstr "Venter"
|
8374 |
|
8375 |
-
#: app/libraries/main.php:
|
8376 |
msgid "Waiting"
|
8377 |
msgstr "Ventende"
|
8378 |
|
8379 |
-
#: app/libraries/main.php:
|
8380 |
#, fuzzy
|
8381 |
#| msgid "Sunday"
|
8382 |
msgid "Sun"
|
8383 |
msgstr "Søndag"
|
8384 |
|
8385 |
-
#: app/libraries/main.php:
|
8386 |
#, fuzzy
|
8387 |
#| msgid "Month"
|
8388 |
msgid "Mon"
|
8389 |
msgstr "Måned"
|
8390 |
|
8391 |
-
#: app/libraries/main.php:
|
8392 |
#, fuzzy
|
8393 |
#| msgid "Tel"
|
8394 |
msgid "Tue"
|
8395 |
msgstr "Tlf"
|
8396 |
|
8397 |
-
#: app/libraries/main.php:
|
8398 |
msgid "Wed"
|
8399 |
msgstr ""
|
8400 |
|
8401 |
-
#: app/libraries/main.php:
|
8402 |
msgid "Thu"
|
8403 |
msgstr ""
|
8404 |
|
8405 |
-
#: app/libraries/main.php:
|
8406 |
#, fuzzy
|
8407 |
#| msgid "Friday"
|
8408 |
msgid "Fri"
|
8409 |
msgstr "Fredag"
|
8410 |
|
8411 |
-
#: app/libraries/main.php:
|
8412 |
#, fuzzy
|
8413 |
#| msgid "Start"
|
8414 |
msgid "Sat"
|
8415 |
msgstr "Start"
|
8416 |
|
8417 |
-
#: app/libraries/main.php:
|
8418 |
#: app/libraries/render.php:432
|
8419 |
msgid "Skin controller does not exist."
|
8420 |
msgstr "Skin kontroller eksisterer ikke."
|
8421 |
|
8422 |
-
#: app/libraries/main.php:
|
8423 |
#, fuzzy
|
8424 |
#| msgid "Sold out!"
|
8425 |
msgid "Sold Out"
|
8426 |
msgstr "Utsolgt!"
|
8427 |
|
8428 |
-
#: app/libraries/main.php:
|
8429 |
#, fuzzy
|
8430 |
#| msgid "Ticket"
|
8431 |
msgid "Last Few Tickets"
|
8432 |
msgstr "Billett"
|
8433 |
|
8434 |
-
#: app/libraries/main.php:
|
8435 |
#, fuzzy
|
8436 |
#| msgid "hours"
|
8437 |
msgid "Hours"
|
8438 |
msgstr "timer"
|
8439 |
|
8440 |
-
#: app/libraries/main.php:
|
8441 |
#, fuzzy
|
8442 |
#| msgid "minutes"
|
8443 |
msgid "Minutes"
|
8444 |
msgstr "minutter"
|
8445 |
|
8446 |
-
#: app/libraries/main.php:
|
8447 |
msgid "AM / PM"
|
8448 |
msgstr ""
|
8449 |
|
8450 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8451 |
msgid "Ongoing..."
|
8452 |
msgstr ""
|
8453 |
|
8454 |
-
#: app/libraries/main.php:
|
8455 |
#, fuzzy
|
8456 |
#| msgid "Expired Events"
|
8457 |
msgid "Expired!"
|
@@ -8461,80 +8459,88 @@ msgstr "Utløpte arrangementer"
|
|
8461 |
msgid "Please verify your email."
|
8462 |
msgstr "Vennligst bekrefte din E-post."
|
8463 |
|
8464 |
-
#: app/libraries/notifications.php:
|
8465 |
msgid "Your booking is received."
|
8466 |
msgstr "Din bestilling er mottatt."
|
8467 |
|
8468 |
-
#: app/libraries/notifications.php:
|
8469 |
msgid "Your booking is confirmed."
|
8470 |
msgstr "Din Bestilling er bekreftet."
|
8471 |
|
8472 |
-
#: app/libraries/notifications.php:
|
8473 |
#, fuzzy
|
8474 |
#| msgid "Your booking cannot be canceled."
|
8475 |
msgid "booking canceled."
|
8476 |
msgstr "Din booking ble ikke kansellert."
|
8477 |
|
8478 |
-
#: app/libraries/notifications.php:
|
8479 |
msgid "A new booking is received."
|
8480 |
msgstr "En ny bestilling er mottatt."
|
8481 |
|
8482 |
-
#: app/libraries/notifications.php:
|
8483 |
msgid "A new event is added."
|
8484 |
msgstr "Ett nytt arrangement er lagt til."
|
8485 |
|
8486 |
-
#: app/libraries/notifications.php:
|
8487 |
#, fuzzy
|
8488 |
#| msgid "The event published."
|
8489 |
msgid "Your event is published."
|
8490 |
msgstr "Arrangement er publisert."
|
8491 |
|
8492 |
-
#: app/libraries/notifications.php:
|
8493 |
#, php-format
|
8494 |
msgid "%s to %s"
|
8495 |
msgstr "%s til %s"
|
8496 |
|
8497 |
-
#: app/libraries/notifications.php:
|
8498 |
-
#: app/libraries/notifications.php:
|
8499 |
msgid "to"
|
8500 |
msgstr "til"
|
8501 |
|
8502 |
-
#: app/libraries/notifications.php:
|
8503 |
msgid "+ Add to Google Calendar"
|
8504 |
msgstr "+ Legg til i Google Kalender"
|
8505 |
|
8506 |
-
#: app/libraries/notifications.php:
|
8507 |
msgid "+ iCal export"
|
8508 |
msgstr "+ iCal eksport"
|
8509 |
|
8510 |
-
#: app/libraries/notifications.php:
|
8511 |
msgid "Yes"
|
8512 |
msgstr "Ja"
|
8513 |
|
8514 |
-
#: app/libraries/notifications.php:
|
8515 |
msgid "No"
|
8516 |
msgstr "Nei"
|
8517 |
|
8518 |
-
#: app/libraries/skins.php:
|
8519 |
#, fuzzy
|
8520 |
#| msgid "Select All"
|
8521 |
msgid "Select"
|
8522 |
msgstr "Velg alle"
|
8523 |
|
8524 |
-
#: app/modules/attendees-list/details.php:
|
8525 |
msgid "Event Attendees"
|
8526 |
msgstr "Arrangementsdeltakere"
|
8527 |
|
8528 |
-
#: app/modules/attendees-list/details.php:
|
8529 |
msgid "No attendee found! Be the first one to book!"
|
8530 |
msgstr "Ingen deltagere funnet! Bli den første å booke plass!"
|
8531 |
|
8532 |
-
#: app/modules/attendees-list/details.php:
|
8533 |
#, fuzzy
|
8534 |
#| msgid "Tickets"
|
8535 |
msgid "tickets"
|
8536 |
msgstr "Billetter"
|
8537 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8538 |
#: app/modules/booking/steps/checkout.php:37
|
8539 |
msgid "Checkout"
|
8540 |
msgstr "Til kassen"
|
@@ -8588,27 +8594,27 @@ msgstr "Deltagerskjema"
|
|
8588 |
msgid "Fill other attendees information like the first form."
|
8589 |
msgstr "Fyll ut andre deltakere informasjon som det første skjemaet."
|
8590 |
|
8591 |
-
#: app/modules/booking/steps/tickets.php:
|
8592 |
msgid "Book Event"
|
8593 |
msgstr "Meld deg på"
|
8594 |
|
8595 |
-
#: app/modules/booking/steps/tickets.php:
|
8596 |
#, fuzzy
|
8597 |
#| msgid "Ticket time"
|
8598 |
msgid "1 Ticket selected."
|
8599 |
msgstr "Billettidspunkt"
|
8600 |
|
8601 |
-
#: app/modules/booking/steps/tickets.php:
|
8602 |
#, php-format
|
8603 |
msgid "Available %s: <span>%s</span>"
|
8604 |
msgstr "Tilgjengelig %s: <span>%s</span>"
|
8605 |
|
8606 |
-
#: app/modules/booking/steps/tickets.php:
|
8607 |
#, php-format
|
8608 |
msgid "The %s ticket sales has stopped!"
|
8609 |
msgstr ""
|
8610 |
|
8611 |
-
#: app/modules/booking/steps/tickets.php:
|
8612 |
#, php-format
|
8613 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8614 |
msgstr ""
|
@@ -8630,7 +8636,7 @@ msgstr "Adresse fra ..."
|
|
8630 |
msgid "Get Directions"
|
8631 |
msgstr "Få veibeskrivelse"
|
8632 |
|
8633 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
8634 |
msgid "Share this event"
|
8635 |
msgstr "Del arrangementet"
|
8636 |
|
@@ -8685,7 +8691,7 @@ msgstr "Neste Forekomst"
|
|
8685 |
msgid "Go to occurrence page"
|
8686 |
msgstr "Gå til gjentagende side"
|
8687 |
|
8688 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
8689 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8690 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8691 |
msgid "Time"
|
@@ -8823,24 +8829,24 @@ msgstr "Kalender for %s"
|
|
8823 |
msgid "No Events"
|
8824 |
msgstr "Ingen hendelser"
|
8825 |
|
8826 |
-
#: app/skins/single.php:
|
8827 |
msgid "Home"
|
8828 |
msgstr ""
|
8829 |
|
8830 |
-
#: app/skins/single.php:
|
8831 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8832 |
#: app/skins/single/modern.php:292
|
8833 |
msgid "Sold out!"
|
8834 |
msgstr "Utsolgt!"
|
8835 |
|
8836 |
-
#: app/skins/single.php:
|
8837 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8838 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8839 |
#: app/skins/single/modern.php:55
|
8840 |
msgid "Phone"
|
8841 |
msgstr "Telefon"
|
8842 |
|
8843 |
-
#: app/skins/single.php:
|
8844 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8845 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8846 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -8849,7 +8855,7 @@ msgstr "Telefon"
|
|
8849 |
msgid "Website"
|
8850 |
msgstr "Nettsted"
|
8851 |
|
8852 |
-
#: app/skins/single.php:
|
8853 |
msgid "Speakers:"
|
8854 |
msgstr "Høyttalere:"
|
8855 |
|
@@ -9450,9 +9456,6 @@ msgstr "http://webnus.net"
|
|
9450 |
#~ msgid "Can I Override MEC Template ?"
|
9451 |
#~ msgstr "Kan jeg overstyre MEC mal?"
|
9452 |
|
9453 |
-
#~ msgid "%s tickets"
|
9454 |
-
#~ msgstr "%s billetter"
|
9455 |
-
|
9456 |
#, fuzzy
|
9457 |
#~| msgid "Discount is not valid for this event!"
|
9458 |
#~ msgid "Event is not repeating. No dates exist for this event!"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-06-16 16:47+0430\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb_NO\n"
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr "Modern Events Calendar"
|
347 |
msgstr "Rediger arrangement"
|
348 |
|
349 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
350 |
+
#: app/features/popup/event.php:252
|
351 |
msgid "View Event"
|
352 |
msgstr "Vis arrangement"
|
353 |
|
369 |
#: app/features/mec/meta_boxes/search_form.php:654
|
370 |
#: app/features/mec/meta_boxes/search_form.php:760
|
371 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
372 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
373 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
374 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
375 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
376 |
#: app/skins/single/modern.php:137
|
380 |
#: app/features/events.php:186 app/features/events.php:3193
|
381 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
382 |
#: app/features/mec/meta_boxes/filter.php:69
|
383 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
384 |
msgid "Categories"
|
385 |
msgstr "Kategorier"
|
386 |
|
469 |
msgstr "Gjentakende arrangement"
|
470 |
|
471 |
#: app/features/events.php:336 app/features/events.php:1215
|
472 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
473 |
msgid "Hourly Schedule"
|
474 |
msgstr "Timeplan"
|
475 |
|
503 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
504 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
505 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
506 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
507 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
508 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
509 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
510 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
511 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
512 |
msgid "Organizer"
|
513 |
msgstr "Arrangør"
|
514 |
|
515 |
#: app/features/events.php:340 app/features/events.php:1092
|
516 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
517 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
518 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
519 |
#: app/skins/single/modern.php:234
|
520 |
msgid "Cost"
|
538 |
#: app/features/events.php:3769 app/features/fes.php:223
|
539 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
540 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
541 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
542 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
543 |
msgid "Name"
|
544 |
msgstr "Navn"
|
545 |
|
551 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
552 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
553 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
554 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
555 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
556 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
557 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
558 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
559 |
#: app/skins/single/modern.php:62
|
569 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
570 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
571 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
572 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
573 |
#: app/features/mec/meta_boxes/display_options.php:278
|
574 |
#: app/features/mec/meta_boxes/display_options.php:517
|
575 |
#: app/features/mec/meta_boxes/display_options.php:623
|
593 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
594 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
595 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
596 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
597 |
msgid "End Date"
|
598 |
msgstr "Sluttdato"
|
599 |
|
600 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
601 |
+
#: app/features/popup/event.php:109
|
602 |
#, fuzzy
|
603 |
#| msgid "All Day Event"
|
604 |
msgid "All-day Event"
|
640 |
#: app/features/events.php:2151 app/features/events.php:2166
|
641 |
#: app/features/events.php:2196 app/features/events.php:2209
|
642 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
643 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
644 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
645 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
646 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
704 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
705 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
706 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
707 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
708 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
709 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
710 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
711 |
#: app/skins/single/modern.php:160
|
729 |
msgstr "Gjentakelser"
|
730 |
|
731 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
732 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
733 |
#: app/skins/full_calendar/tpl.php:121
|
734 |
msgid "Daily"
|
735 |
msgstr "Daglig"
|
753 |
msgstr "Ukentlig"
|
754 |
|
755 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
756 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
757 |
#: app/skins/full_calendar/tpl.php:119
|
758 |
msgid "Monthly"
|
759 |
msgstr "Månedlig"
|
760 |
|
761 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
762 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
763 |
#: app/skins/full_calendar/tpl.php:118
|
764 |
msgid "Yearly"
|
765 |
msgstr "Årlig"
|
899 |
#: app/features/events.php:1088 app/features/events.php:3431
|
900 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
901 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
902 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
903 |
#: app/widgets/single.php:103
|
904 |
msgid "Event Cost"
|
905 |
msgstr "Kostnad for arrangementet"
|
917 |
#: app/features/events.php:1124 app/features/events.php:2330
|
918 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
919 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
920 |
+
#: app/modules/booking/steps/tickets.php:36
|
921 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
922 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
923 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
924 |
msgid "Date"
|
1005 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
1006 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
1007 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
1008 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
1009 |
#: app/modules/speakers/details.php:18
|
1010 |
msgid "Speakers"
|
1011 |
msgstr "Foredragsholdere"
|
1022 |
msgstr "Arrangemenslenker"
|
1023 |
|
1024 |
#: app/features/events.php:1408 app/features/events.php:1414
|
1025 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
1026 |
msgid "Event Link"
|
1027 |
msgstr "Arrangemenslenke"
|
1028 |
|
1049 |
msgstr ""
|
1050 |
|
1051 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1052 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
1053 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
1054 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1055 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1056 |
#: app/widgets/single.php:107
|
1088 |
msgstr "Totalt antall bestillingsgrenser"
|
1089 |
|
1090 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1091 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
1092 |
+
#: app/modules/booking/steps/tickets.php:64
|
1093 |
msgid "Tickets"
|
1094 |
msgstr "Billetter"
|
1095 |
|
1117 |
|
1118 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1119 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1120 |
+
#: app/modules/booking/steps/tickets.php:64
|
1121 |
#: app/skins/available_spot/tpl.php:142
|
1122 |
msgid "Unlimited"
|
1123 |
msgstr "Ubegrenset"
|
1289 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1290 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1291 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1292 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1293 |
msgid "Label"
|
1294 |
msgstr "Etikett"
|
1295 |
|
1511 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1512 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1513 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1514 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1515 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1516 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1517 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1518 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1526 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1527 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1528 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1529 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1530 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1531 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1532 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1533 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1534 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1535 |
#: app/skins/single/modern.php:113
|
1571 |
|
1572 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1573 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1574 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1575 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1576 |
msgid "ID"
|
1577 |
msgstr "ID"
|
1593 |
|
1594 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1595 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1596 |
+
#: app/libraries/main.php:5666
|
1597 |
msgid "Ticket"
|
1598 |
msgstr "Billett"
|
1599 |
|
1806 |
msgstr "f.eks. dittanavn@gmail.com"
|
1807 |
|
1808 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1809 |
+
#: app/features/popup/event.php:183
|
1810 |
msgid "eg. John Smith"
|
1811 |
msgstr "f.eks. Ola Nordmann"
|
1812 |
|
1833 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1834 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1835 |
#: app/features/mec/meta_boxes/filter.php:72
|
1836 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1837 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1838 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1839 |
#: app/skins/single/modern.php:249
|
1840 |
msgid "Labels"
|
2628 |
msgstr "Fremhevet"
|
2629 |
|
2630 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2631 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2632 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2633 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2634 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2646 |
msgid "You can show featured and canceled events by a different style!"
|
2647 |
msgstr "Du kan vise utvalgte og kansellerte hendelser med en annen stil!"
|
2648 |
|
2649 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2650 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2651 |
+
#: app/modules/booking/steps/tickets.php:62
|
2652 |
msgid "Count"
|
2653 |
msgstr "Antall"
|
2654 |
|
2655 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2656 |
#: app/features/organizers.php:207
|
2657 |
msgid "Slug"
|
2658 |
msgstr "Slug"
|
2659 |
|
2660 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2661 |
#, php-format
|
2662 |
msgid "Event %s"
|
2663 |
msgstr "Arrangement %s"
|
2664 |
|
2665 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2666 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2667 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2668 |
msgid "Locations"
|
2669 |
msgstr "Steder"
|
2670 |
|
2671 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2672 |
+
#: app/features/locations.php:262
|
2673 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2674 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2675 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2684 |
msgid "Address"
|
2685 |
msgstr "Adresse"
|
2686 |
|
2687 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2688 |
msgid "Enter the location address"
|
2689 |
msgstr "Angi stedsadresse"
|
2690 |
|
2691 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2692 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2693 |
msgid "Latitude"
|
2694 |
msgstr "Breddegrad"
|
2695 |
|
2696 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2697 |
msgid "Geo latitude (Optional)"
|
2698 |
msgstr "Geo Latitude (Valgfritt)"
|
2699 |
|
2700 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2701 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2702 |
msgid "Longitude"
|
2703 |
msgstr "Lengdegrad"
|
2704 |
|
2705 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2706 |
msgid "Geo longitude (Optional)"
|
2707 |
msgstr "Geo lengdegrad (Valgfritt)"
|
2708 |
|
2709 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2710 |
+
#: app/features/locations.php:372
|
2711 |
#, fuzzy
|
2712 |
#| msgid "Locations"
|
2713 |
msgid "Location Website"
|
2714 |
msgstr "Steder"
|
2715 |
|
2716 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2717 |
#, fuzzy
|
2718 |
#| msgid "Geo latitude (Optional)"
|
2719 |
msgid "Location Website (Optional)"
|
2720 |
msgstr "Geo Latitude (Valgfritt)"
|
2721 |
|
2722 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2723 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2724 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2725 |
msgid "Thumbnail"
|
2726 |
msgstr "Miniatyrbilde"
|
2727 |
|
2728 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2729 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2730 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2731 |
msgid "Upload/Add image"
|
2732 |
msgstr "Last opp/Legg til bilde"
|
2733 |
|
2734 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2735 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2736 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2737 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2738 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2739 |
msgid "Remove image"
|
2740 |
msgstr "Fjern bilde"
|
2741 |
|
2742 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2743 |
msgid "Hide location"
|
2744 |
msgstr "Skjul Plassering"
|
2745 |
|
2746 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2747 |
msgid "Insert a new location"
|
2748 |
msgstr "Sett inn nytt sted"
|
2749 |
|
2750 |
+
#: app/features/locations.php:334
|
2751 |
msgid "Choose one of saved locations or insert new one below."
|
2752 |
msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
|
2753 |
|
2754 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2755 |
msgid "Location Name"
|
2756 |
msgstr "Skriv inn stedsnavn..."
|
2757 |
|
2758 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2759 |
msgid "eg. City Hall"
|
2760 |
msgstr "f.eks. rådhuset"
|
2761 |
|
2762 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2763 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2764 |
msgid "Event Location"
|
2765 |
msgstr "Arrangementssted"
|
2766 |
|
2767 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2768 |
msgid "eg. City hall, Manhattan, New York"
|
2769 |
msgstr "f.eks Norske Operaen, Oslo, Norge"
|
2770 |
|
2771 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2772 |
#, fuzzy
|
2773 |
#| msgid "Longitude"
|
2774 |
msgid "Latitude/Longitude"
|
2775 |
msgstr "Lengdegrad"
|
2776 |
|
2777 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2778 |
msgid ""
|
2779 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2780 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2783 |
"the location on the map to find lat long coordinates."
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2787 |
msgid "Get Latitude and Longitude"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2791 |
+
#: app/features/popup/event.php:202
|
2792 |
msgid "Choose image"
|
2793 |
msgstr "Velg bilde"
|
2794 |
|
2795 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2796 |
msgid "Don't show map in single event page"
|
2797 |
msgstr "Ikke vis kart i enkelt arrangement visning"
|
2798 |
|
2799 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2800 |
#, fuzzy
|
2801 |
#| msgid "Locations"
|
2802 |
msgid "Other Locations"
|
2803 |
msgstr "Steder"
|
2804 |
|
2805 |
+
#: app/features/locations.php:398
|
2806 |
#, fuzzy
|
2807 |
#| msgid ""
|
2808 |
#| "You can select extra organizers in addition to main organizer if you like."
|
2889 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2890 |
#: app/features/mec/meta_boxes/filter.php:71
|
2891 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2892 |
+
#: app/libraries/main.php:5637
|
2893 |
msgid "Organizers"
|
2894 |
msgstr "Arrangører"
|
2895 |
|
2930 |
msgid "MEC - Go Pro"
|
2931 |
msgstr "MEC-støtte"
|
2932 |
|
2933 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2934 |
#: app/features/mec/go-pro.php:9
|
2935 |
msgid "Go Pro"
|
2936 |
msgstr ""
|
2989 |
msgid "Modal Popup"
|
2990 |
msgstr "Modale 1"
|
2991 |
|
2992 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2993 |
msgid "Total Bookings"
|
2994 |
msgstr "Totalt Antall Bestillinger"
|
2995 |
|
2996 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2997 |
msgid "Modern Events Calendar (Lite)"
|
2998 |
msgstr "Kalender for moderne arrangementer (lite)"
|
2999 |
|
3000 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
3001 |
#: app/features/mec/settings.php:428
|
3002 |
msgid "Upcoming Events"
|
3003 |
msgstr "Kommende arrangementer"
|
3004 |
|
3005 |
+
#: app/features/mec.php:1201
|
3006 |
#, fuzzy
|
3007 |
#| msgid "Update %s"
|
3008 |
msgid "News & Updates"
|
3009 |
msgstr "Oppdatere %s"
|
3010 |
|
3011 |
+
#: app/features/mec.php:1214
|
3012 |
msgid "Blog"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: app/features/mec.php:1214
|
3016 |
msgid "Help"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: app/features/mec.php:1260
|
3020 |
msgid "This Month"
|
3021 |
msgstr "Denne måneden"
|
3022 |
|
3023 |
+
#: app/features/mec.php:1266
|
3024 |
msgid "Last Month"
|
3025 |
msgstr "Siste måned"
|
3026 |
|
3027 |
+
#: app/features/mec.php:1272
|
3028 |
msgid "This Year"
|
3029 |
msgstr "Dette Året"
|
3030 |
|
3031 |
+
#: app/features/mec.php:1278
|
3032 |
msgid "Last Year"
|
3033 |
msgstr "Siste År"
|
3034 |
|
3035 |
+
#: app/features/mec.php:1290
|
3036 |
msgid "Bar"
|
3037 |
msgstr "Stolpe"
|
3038 |
|
3039 |
+
#: app/features/mec.php:1291
|
3040 |
msgid "Line"
|
3041 |
msgstr "Linje"
|
3042 |
|
3043 |
+
#: app/features/mec.php:1293
|
3044 |
msgid "Filter"
|
3045 |
msgstr "Filter"
|
3046 |
|
3047 |
+
#: app/features/mec.php:1309
|
3048 |
#, php-format
|
3049 |
msgid "Total Sells (%s)"
|
3050 |
msgstr "Totalt salg (% s)"
|
3051 |
|
3052 |
+
#: app/features/mec.php:1337
|
3053 |
#, fuzzy
|
3054 |
#| msgid "Modern Events Calendar"
|
3055 |
msgid "Print Calendar"
|
3056 |
msgstr "Modern Events Calendar"
|
3057 |
|
3058 |
+
#: app/features/mec.php:1352
|
3059 |
#, fuzzy
|
3060 |
#| msgid "Display Event Price"
|
3061 |
msgid "Display Events"
|
3454 |
#: app/features/mec/notifications.php:923
|
3455 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3456 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3457 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3458 |
msgid "Verified"
|
3459 |
msgstr "Verifisert"
|
3460 |
|
4645 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4646 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4647 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4648 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4649 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4650 |
msgid "Speaker"
|
4651 |
msgstr "Foredragsholder"
|
4652 |
|
4662 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4663 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4664 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4665 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4666 |
#, fuzzy
|
4667 |
#| msgid "Tags"
|
4668 |
msgid "Tag"
|
5461 |
"Sender melding til admin for å gi hint til han/henne at ny booking er kommet."
|
5462 |
|
5463 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5464 |
+
#: app/libraries/notifications.php:587
|
5465 |
msgid "Booking Reminder"
|
5466 |
msgstr "Påminnelse angående din bestilling"
|
5467 |
|
5492 |
msgid "Please, insert comma to separate reminder days."
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5496 |
#: app/libraries/main.php:584
|
5497 |
msgid "New Event"
|
5498 |
msgstr "Nytt Arrangement"
|
5726 |
msgstr ""
|
5727 |
|
5728 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5729 |
+
#: app/libraries/main.php:5644
|
5730 |
msgid "Weekdays"
|
5731 |
msgstr "Ukedager"
|
5732 |
|
6520 |
"arrangement side."
|
6521 |
|
6522 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6523 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
6524 |
#, fuzzy
|
6525 |
#| msgid "featured event"
|
6526 |
msgid "Related Events"
|
7191 |
msgstr "Sett inn organisatorens e-postadresse."
|
7192 |
|
7193 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7194 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
7195 |
msgid "Link to organizer page"
|
7196 |
msgstr "Lenke til arrangørside"
|
7197 |
|
7208 |
msgid "Event Main %s"
|
7209 |
msgstr "Hendelse Hoved %s"
|
7210 |
|
7211 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
7212 |
msgid "Hide organizer"
|
7213 |
msgstr "Skjul arrangør"
|
7214 |
|
7215 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
7216 |
msgid "Insert a new organizer"
|
7217 |
msgstr "Sett inn en ny arrangør"
|
7218 |
|
7219 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
7220 |
msgid "Choose one of saved organizers or insert new one below."
|
7221 |
msgstr "Velg en av lagrede arrangører eller sett inn en ny nedenfor."
|
7222 |
|
7223 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
7224 |
msgid "Phone number."
|
7225 |
msgstr "Telefonnummer."
|
7226 |
|
7227 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
7228 |
msgid "eg. +1 (234) 5678"
|
7229 |
msgstr "f.eks. +47 22334455"
|
7230 |
|
7231 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
7232 |
msgid "Email address."
|
7233 |
msgstr "E-postadresse."
|
7234 |
|
7235 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
7236 |
msgid "eg. john@smith.com"
|
7237 |
msgstr "f.eks. Ola Nordmann"
|
7238 |
|
7239 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
7240 |
msgid "eg. https://webnus.net"
|
7241 |
msgstr "F.eks. https://webnus.net"
|
7242 |
|
7243 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
7244 |
+
#: app/skins/single.php:1152
|
7245 |
msgid "Other Organizers"
|
7246 |
msgstr "Andre Arrangører"
|
7247 |
|
7267 |
msgid "Event name is required"
|
7268 |
msgstr ""
|
7269 |
|
7270 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7271 |
#, fuzzy
|
7272 |
#| msgid "Choose one of saved locations or insert new one below."
|
7273 |
msgid "Choose one of saved locations or insert new one."
|
7274 |
msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
|
7275 |
|
7276 |
+
#: app/features/popup/event.php:130
|
7277 |
#, fuzzy
|
7278 |
#| msgid "Location"
|
7279 |
msgid "Add Location"
|
7280 |
msgstr "Sted"
|
7281 |
|
7282 |
+
#: app/features/popup/event.php:177
|
7283 |
#, fuzzy
|
7284 |
#| msgid "Organizer"
|
7285 |
msgid "Add Organizer"
|
7286 |
msgstr "Arrangør"
|
7287 |
|
7288 |
+
#: app/features/popup/event.php:217
|
7289 |
#, fuzzy
|
7290 |
#| msgid "Categories"
|
7291 |
msgid "All Categories"
|
7292 |
msgstr "Kategorier"
|
7293 |
|
7294 |
+
#: app/features/popup/event.php:218
|
7295 |
msgid "Most Used"
|
7296 |
msgstr ""
|
7297 |
|
7298 |
+
#: app/features/popup/event.php:229
|
7299 |
#, fuzzy
|
7300 |
#| msgid "Add New Coupon"
|
7301 |
msgid "Add New Category"
|
7302 |
msgstr "Legg til ny rabattkode"
|
7303 |
|
7304 |
+
#: app/features/popup/event.php:240
|
7305 |
#, fuzzy
|
7306 |
#| msgid "Featured Image"
|
7307 |
msgid "Set Featured Image"
|
7308 |
msgstr "Fremhevet bilde"
|
7309 |
|
7310 |
+
#: app/features/popup/event.php:250
|
7311 |
msgid "Your Event Has Been Created."
|
7312 |
msgstr ""
|
7313 |
|
7314 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
7315 |
msgid "Prev"
|
7316 |
msgstr ""
|
7317 |
|
7318 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
7319 |
#: app/modules/booking/steps/form.php:188
|
7320 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
7321 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7322 |
msgid "Next"
|
7323 |
msgstr "Neste"
|
7562 |
msgid "No search result."
|
7563 |
msgstr ""
|
7564 |
|
7565 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
7566 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
7567 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7568 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7569 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
7570 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7571 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7572 |
#, fuzzy
|
7650 |
msgid "%s Price"
|
7651 |
msgstr "%s pris"
|
7652 |
|
7653 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
7654 |
msgid "Discount"
|
7655 |
msgstr "Rabatt"
|
7656 |
|
7657 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
7658 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
7659 |
msgid "Download Invoice"
|
7660 |
msgstr "Last ned Faktura"
|
7661 |
|
7678 |
msgid "Upgrade"
|
7679 |
msgstr "Oppgrader"
|
7680 |
|
7681 |
+
#: app/libraries/factory.php:369
|
7682 |
msgid "day"
|
7683 |
msgstr "dag"
|
7684 |
|
7685 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
7686 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7687 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7688 |
msgid "days"
|
7689 |
msgstr "dager"
|
7690 |
|
7691 |
+
#: app/libraries/factory.php:371
|
7692 |
msgid "hour"
|
7693 |
msgstr "time"
|
7694 |
|
7695 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
7696 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7697 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7698 |
msgid "hours"
|
7699 |
msgstr "timer"
|
7700 |
|
7701 |
+
#: app/libraries/factory.php:373
|
7702 |
msgid "minute"
|
7703 |
msgstr "minutt"
|
7704 |
|
7705 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7706 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7707 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7708 |
msgid "minutes"
|
7709 |
msgstr "minutter"
|
7710 |
|
7711 |
+
#: app/libraries/factory.php:375
|
7712 |
msgid "second"
|
7713 |
msgstr "sekund"
|
7714 |
|
7715 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7716 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7717 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7718 |
msgid "seconds"
|
7719 |
msgstr "sekunder"
|
7720 |
|
7721 |
+
#: app/libraries/factory.php:428
|
7722 |
msgid "MEC Single Sidebar"
|
7723 |
msgstr "MEC Singel Sidebar"
|
7724 |
|
7725 |
+
#: app/libraries/factory.php:429
|
7726 |
msgid "Custom sidebar for single and modal page of MEC."
|
7727 |
msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
|
7728 |
|
7786 |
msgid "Timeline View"
|
7787 |
msgstr "Tidstabell Visning"
|
7788 |
|
7789 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7790 |
msgid "SU"
|
7791 |
msgstr "SØN"
|
7792 |
|
7793 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7794 |
msgid "MO"
|
7795 |
msgstr "MAN"
|
7796 |
|
7797 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7798 |
msgid "TU"
|
7799 |
msgstr "TIRS"
|
7800 |
|
7801 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7802 |
msgid "WE"
|
7803 |
msgstr "ONS"
|
7804 |
|
7805 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7806 |
msgid "TH"
|
7807 |
msgstr "TORS"
|
7808 |
|
7809 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7810 |
msgid "FR"
|
7811 |
msgstr "FRE"
|
7812 |
|
7813 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7814 |
msgid "SA"
|
7815 |
msgstr "LØR"
|
7816 |
|
8143 |
msgid "Free"
|
8144 |
msgstr "Gratis"
|
8145 |
|
8146 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
8147 |
#, fuzzy
|
8148 |
#| msgid "M.E. Calendar"
|
8149 |
msgid "M.E. Calender"
|
8150 |
msgstr "ME Kalender"
|
8151 |
|
8152 |
+
#: app/libraries/main.php:4105
|
8153 |
#, php-format
|
8154 |
msgid "Copy of %s"
|
8155 |
msgstr "Kopi av %s"
|
8156 |
|
8157 |
+
#: app/libraries/main.php:4923
|
8158 |
msgid "Booked an event."
|
8159 |
msgstr "Bestilte ett arrangement."
|
8160 |
|
8161 |
+
#: app/libraries/main.php:4964
|
8162 |
#, php-format
|
8163 |
msgid "%s booked %s event."
|
8164 |
msgstr "%s bestilt %s arrangement."
|
8165 |
|
8166 |
+
#: app/libraries/main.php:5629
|
8167 |
msgid "Taxonomies"
|
8168 |
msgstr "Taxonomies"
|
8169 |
|
8170 |
+
#: app/libraries/main.php:5631
|
8171 |
msgid "Category Plural Label"
|
8172 |
msgstr "Kategori Fler Etikett"
|
8173 |
|
8174 |
+
#: app/libraries/main.php:5632
|
8175 |
msgid "Category Singular Label"
|
8176 |
msgstr "Kategori Singel Tittel"
|
8177 |
|
8178 |
+
#: app/libraries/main.php:5633
|
8179 |
msgid "Label Plural Label"
|
8180 |
msgstr "Etiketter Flertall"
|
8181 |
|
8182 |
+
#: app/libraries/main.php:5634
|
8183 |
msgid "Label Singular Label"
|
8184 |
msgstr "Etiketter Entall"
|
8185 |
|
8186 |
+
#: app/libraries/main.php:5634
|
8187 |
msgid "label"
|
8188 |
msgstr "etikett"
|
8189 |
|
8190 |
+
#: app/libraries/main.php:5635
|
8191 |
msgid "Location Plural Label"
|
8192 |
msgstr "Lokasjon Flertall Etiketter"
|
8193 |
|
8194 |
+
#: app/libraries/main.php:5636
|
8195 |
msgid "Location Singular Label"
|
8196 |
msgstr "Plasseringen Entall Etikett"
|
8197 |
|
8198 |
+
#: app/libraries/main.php:5637
|
8199 |
msgid "Organizer Plural Label"
|
8200 |
msgstr "Arrangør Flertall etikett"
|
8201 |
|
8202 |
+
#: app/libraries/main.php:5638
|
8203 |
msgid "Organizer Singular Label"
|
8204 |
msgstr "Arrangør Enkel Etikett"
|
8205 |
|
8206 |
+
#: app/libraries/main.php:5639
|
8207 |
msgid "Speaker Plural Label"
|
8208 |
msgstr "Instruktør/Foredragsholder flere etiketter"
|
8209 |
|
8210 |
+
#: app/libraries/main.php:5640
|
8211 |
msgid "Speaker Singular Label"
|
8212 |
msgstr "Instruktør/Foredragsholder enkelt etikett"
|
8213 |
|
8214 |
+
#: app/libraries/main.php:5646
|
8215 |
msgid "Sunday abbreviation"
|
8216 |
msgstr "Forkortelser på søndager"
|
8217 |
|
8218 |
+
#: app/libraries/main.php:5647
|
8219 |
msgid "Monday abbreviation"
|
8220 |
msgstr "Mandag forkortelse"
|
8221 |
|
8222 |
+
#: app/libraries/main.php:5648
|
8223 |
msgid "Tuesday abbreviation"
|
8224 |
msgstr "Tirsdag forkortelse"
|
8225 |
|
8226 |
+
#: app/libraries/main.php:5649
|
8227 |
msgid "Wednesday abbreviation"
|
8228 |
msgstr "Onsdag forkortelse"
|
8229 |
|
8230 |
+
#: app/libraries/main.php:5650
|
8231 |
msgid "Thursday abbreviation"
|
8232 |
msgstr "Torsdag forkortelse"
|
8233 |
|
8234 |
+
#: app/libraries/main.php:5651
|
8235 |
msgid "Friday abbreviation"
|
8236 |
msgstr "Fredag forkortelse"
|
8237 |
|
8238 |
+
#: app/libraries/main.php:5652
|
8239 |
msgid "Saturday abbreviation"
|
8240 |
msgstr "Lørdag forkortelse"
|
8241 |
|
8242 |
+
#: app/libraries/main.php:5656
|
8243 |
msgid "Others"
|
8244 |
msgstr "Øvrige"
|
8245 |
|
8246 |
+
#: app/libraries/main.php:5658
|
8247 |
msgid "Booking Success Message"
|
8248 |
msgstr "Melding ved vellykket bestilling"
|
8249 |
|
8250 |
+
#: app/libraries/main.php:5658
|
8251 |
#, fuzzy
|
8252 |
#| msgid ""
|
8253 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
8259 |
"Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
|
8260 |
"bekreftelse. Vennligst sjekk din epost."
|
8261 |
|
8262 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
8263 |
msgid "Register Button"
|
8264 |
msgstr "Registreringsknapp"
|
8265 |
|
8266 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
8267 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8268 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8269 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8270 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8271 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
8272 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
8273 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8274 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8275 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
8281 |
msgid "REGISTER"
|
8282 |
msgstr "Registrere"
|
8283 |
|
8284 |
+
#: app/libraries/main.php:5660
|
8285 |
msgid "View Detail Button"
|
8286 |
msgstr "Se Detalj Knapp"
|
8287 |
|
8288 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
8289 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8290 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8291 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8292 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8293 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
8294 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8295 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8296 |
msgid "View Detail"
|
8297 |
msgstr "Se detaljer"
|
8298 |
|
8299 |
+
#: app/libraries/main.php:5661
|
8300 |
msgid "Event Detail Button"
|
8301 |
msgstr "Knapp for arrangementsdetaljer"
|
8302 |
|
8303 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
8304 |
msgid "Event Detail"
|
8305 |
msgstr "Arrangement Detaljer"
|
8306 |
|
8307 |
+
#: app/libraries/main.php:5663
|
8308 |
msgid "More Info Link"
|
8309 |
msgstr "Mer Info Lenke"
|
8310 |
|
8311 |
+
#: app/libraries/main.php:5666
|
8312 |
msgid "Ticket (Singular)"
|
8313 |
msgstr "Billett (Singel)"
|
8314 |
|
8315 |
+
#: app/libraries/main.php:5667
|
8316 |
msgid "Tickets (Plural)"
|
8317 |
msgstr "Billetter (Flertall)"
|
8318 |
|
8319 |
+
#: app/libraries/main.php:5754
|
8320 |
msgid "EventON"
|
8321 |
msgstr "EventON"
|
8322 |
|
8323 |
+
#: app/libraries/main.php:5755
|
8324 |
msgid "The Events Calendar"
|
8325 |
msgstr "Aktivitetskalenderen"
|
8326 |
|
8327 |
+
#: app/libraries/main.php:5756
|
8328 |
msgid "Events Schedule WP Plugin"
|
8329 |
msgstr "Arrangement Planlegging WP Plugin"
|
8330 |
|
8331 |
+
#: app/libraries/main.php:5757
|
8332 |
msgid "Calendarize It"
|
8333 |
msgstr "HOP Kalender"
|
8334 |
|
8335 |
+
#: app/libraries/main.php:5758
|
8336 |
#, fuzzy
|
8337 |
#| msgid "Event Speakers"
|
8338 |
msgid "Event Espresso"
|
8339 |
msgstr "Event høyttalere"
|
8340 |
|
8341 |
+
#: app/libraries/main.php:5759
|
8342 |
#, fuzzy
|
8343 |
#| msgid "Event Repeating"
|
8344 |
msgid "Events Manager (Recurring)"
|
8345 |
msgstr "Gjentakende arrangement"
|
8346 |
|
8347 |
+
#: app/libraries/main.php:5760
|
8348 |
#, fuzzy
|
8349 |
#| msgid "Modern Events Calendar (Lite)"
|
8350 |
msgid "Events Manager (Single)"
|
8351 |
msgstr "Kalender for moderne arrangementer (lite)"
|
8352 |
|
8353 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
8354 |
msgid "Confirmed"
|
8355 |
msgstr "Bekreftet"
|
8356 |
|
8357 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
8358 |
msgid "Rejected"
|
8359 |
msgstr "Avvist"
|
8360 |
|
8361 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
8362 |
msgid "Pending"
|
8363 |
msgstr "Venter"
|
8364 |
|
8365 |
+
#: app/libraries/main.php:5882
|
8366 |
msgid "Waiting"
|
8367 |
msgstr "Ventende"
|
8368 |
|
8369 |
+
#: app/libraries/main.php:5925
|
8370 |
#, fuzzy
|
8371 |
#| msgid "Sunday"
|
8372 |
msgid "Sun"
|
8373 |
msgstr "Søndag"
|
8374 |
|
8375 |
+
#: app/libraries/main.php:5925
|
8376 |
#, fuzzy
|
8377 |
#| msgid "Month"
|
8378 |
msgid "Mon"
|
8379 |
msgstr "Måned"
|
8380 |
|
8381 |
+
#: app/libraries/main.php:5925
|
8382 |
#, fuzzy
|
8383 |
#| msgid "Tel"
|
8384 |
msgid "Tue"
|
8385 |
msgstr "Tlf"
|
8386 |
|
8387 |
+
#: app/libraries/main.php:5925
|
8388 |
msgid "Wed"
|
8389 |
msgstr ""
|
8390 |
|
8391 |
+
#: app/libraries/main.php:5925
|
8392 |
msgid "Thu"
|
8393 |
msgstr ""
|
8394 |
|
8395 |
+
#: app/libraries/main.php:5925
|
8396 |
#, fuzzy
|
8397 |
#| msgid "Friday"
|
8398 |
msgid "Fri"
|
8399 |
msgstr "Fredag"
|
8400 |
|
8401 |
+
#: app/libraries/main.php:5925
|
8402 |
#, fuzzy
|
8403 |
#| msgid "Start"
|
8404 |
msgid "Sat"
|
8405 |
msgstr "Start"
|
8406 |
|
8407 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
8408 |
#: app/libraries/render.php:432
|
8409 |
msgid "Skin controller does not exist."
|
8410 |
msgstr "Skin kontroller eksisterer ikke."
|
8411 |
|
8412 |
+
#: app/libraries/main.php:6302
|
8413 |
#, fuzzy
|
8414 |
#| msgid "Sold out!"
|
8415 |
msgid "Sold Out"
|
8416 |
msgstr "Utsolgt!"
|
8417 |
|
8418 |
+
#: app/libraries/main.php:6310
|
8419 |
#, fuzzy
|
8420 |
#| msgid "Ticket"
|
8421 |
msgid "Last Few Tickets"
|
8422 |
msgstr "Billett"
|
8423 |
|
8424 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
8425 |
#, fuzzy
|
8426 |
#| msgid "hours"
|
8427 |
msgid "Hours"
|
8428 |
msgstr "timer"
|
8429 |
|
8430 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
8431 |
#, fuzzy
|
8432 |
#| msgid "minutes"
|
8433 |
msgid "Minutes"
|
8434 |
msgstr "minutter"
|
8435 |
|
8436 |
+
#: app/libraries/main.php:6652
|
8437 |
msgid "AM / PM"
|
8438 |
msgstr ""
|
8439 |
|
8440 |
+
#: app/libraries/main.php:6653
|
8441 |
+
msgid "AM"
|
8442 |
+
msgstr "AM"
|
8443 |
+
|
8444 |
+
#: app/libraries/main.php:6654
|
8445 |
+
msgid "PM"
|
8446 |
+
msgstr "PM"
|
8447 |
+
|
8448 |
+
#: app/libraries/main.php:6662
|
8449 |
msgid "Ongoing..."
|
8450 |
msgstr ""
|
8451 |
|
8452 |
+
#: app/libraries/main.php:6663
|
8453 |
#, fuzzy
|
8454 |
#| msgid "Expired Events"
|
8455 |
msgid "Expired!"
|
8459 |
msgid "Please verify your email."
|
8460 |
msgstr "Vennligst bekrefte din E-post."
|
8461 |
|
8462 |
+
#: app/libraries/notifications.php:158
|
8463 |
msgid "Your booking is received."
|
8464 |
msgstr "Din bestilling er mottatt."
|
8465 |
|
8466 |
+
#: app/libraries/notifications.php:268
|
8467 |
msgid "Your booking is confirmed."
|
8468 |
msgstr "Din Bestilling er bekreftet."
|
8469 |
|
8470 |
+
#: app/libraries/notifications.php:425
|
8471 |
#, fuzzy
|
8472 |
#| msgid "Your booking cannot be canceled."
|
8473 |
msgid "booking canceled."
|
8474 |
msgstr "Din booking ble ikke kansellert."
|
8475 |
|
8476 |
+
#: app/libraries/notifications.php:503
|
8477 |
msgid "A new booking is received."
|
8478 |
msgstr "En ny bestilling er mottatt."
|
8479 |
|
8480 |
+
#: app/libraries/notifications.php:707
|
8481 |
msgid "A new event is added."
|
8482 |
msgstr "Ett nytt arrangement er lagt til."
|
8483 |
|
8484 |
+
#: app/libraries/notifications.php:779
|
8485 |
#, fuzzy
|
8486 |
#| msgid "The event published."
|
8487 |
msgid "Your event is published."
|
8488 |
msgstr "Arrangement er publisert."
|
8489 |
|
8490 |
+
#: app/libraries/notifications.php:912
|
8491 |
#, php-format
|
8492 |
msgid "%s to %s"
|
8493 |
msgstr "%s til %s"
|
8494 |
|
8495 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
8496 |
+
#: app/libraries/notifications.php:1060
|
8497 |
msgid "to"
|
8498 |
msgstr "til"
|
8499 |
|
8500 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
8501 |
msgid "+ Add to Google Calendar"
|
8502 |
msgstr "+ Legg til i Google Kalender"
|
8503 |
|
8504 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
8505 |
msgid "+ iCal export"
|
8506 |
msgstr "+ iCal eksport"
|
8507 |
|
8508 |
+
#: app/libraries/notifications.php:1139
|
8509 |
msgid "Yes"
|
8510 |
msgstr "Ja"
|
8511 |
|
8512 |
+
#: app/libraries/notifications.php:1139
|
8513 |
msgid "No"
|
8514 |
msgstr "Nei"
|
8515 |
|
8516 |
+
#: app/libraries/skins.php:1069
|
8517 |
#, fuzzy
|
8518 |
#| msgid "Select All"
|
8519 |
msgid "Select"
|
8520 |
msgstr "Velg alle"
|
8521 |
|
8522 |
+
#: app/modules/attendees-list/details.php:39
|
8523 |
msgid "Event Attendees"
|
8524 |
msgstr "Arrangementsdeltakere"
|
8525 |
|
8526 |
+
#: app/modules/attendees-list/details.php:41
|
8527 |
msgid "No attendee found! Be the first one to book!"
|
8528 |
msgstr "Ingen deltagere funnet! Bli den første å booke plass!"
|
8529 |
|
8530 |
+
#: app/modules/attendees-list/details.php:62
|
8531 |
#, fuzzy
|
8532 |
#| msgid "Tickets"
|
8533 |
msgid "tickets"
|
8534 |
msgstr "Billetter"
|
8535 |
|
8536 |
+
#: app/modules/attendees-list/details.php:92
|
8537 |
+
#, fuzzy, php-format
|
8538 |
+
#| msgid "%s tickets"
|
8539 |
+
msgid "%s ticket"
|
8540 |
+
msgid_plural "%s tickets"
|
8541 |
+
msgstr[0] "%s billetter"
|
8542 |
+
msgstr[1] "%s billetter"
|
8543 |
+
|
8544 |
#: app/modules/booking/steps/checkout.php:37
|
8545 |
msgid "Checkout"
|
8546 |
msgstr "Til kassen"
|
8594 |
msgid "Fill other attendees information like the first form."
|
8595 |
msgstr "Fyll ut andre deltakere informasjon som det første skjemaet."
|
8596 |
|
8597 |
+
#: app/modules/booking/steps/tickets.php:32
|
8598 |
msgid "Book Event"
|
8599 |
msgstr "Meld deg på"
|
8600 |
|
8601 |
+
#: app/modules/booking/steps/tickets.php:59
|
8602 |
#, fuzzy
|
8603 |
#| msgid "Ticket time"
|
8604 |
msgid "1 Ticket selected."
|
8605 |
msgstr "Billettidspunkt"
|
8606 |
|
8607 |
+
#: app/modules/booking/steps/tickets.php:64
|
8608 |
#, php-format
|
8609 |
msgid "Available %s: <span>%s</span>"
|
8610 |
msgstr "Tilgjengelig %s: <span>%s</span>"
|
8611 |
|
8612 |
+
#: app/modules/booking/steps/tickets.php:69
|
8613 |
#, php-format
|
8614 |
msgid "The %s ticket sales has stopped!"
|
8615 |
msgstr ""
|
8616 |
|
8617 |
+
#: app/modules/booking/steps/tickets.php:70
|
8618 |
#, php-format
|
8619 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8620 |
msgstr ""
|
8636 |
msgid "Get Directions"
|
8637 |
msgstr "Få veibeskrivelse"
|
8638 |
|
8639 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
8640 |
msgid "Share this event"
|
8641 |
msgstr "Del arrangementet"
|
8642 |
|
8691 |
msgid "Go to occurrence page"
|
8692 |
msgstr "Gå til gjentagende side"
|
8693 |
|
8694 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
8695 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8696 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8697 |
msgid "Time"
|
8829 |
msgid "No Events"
|
8830 |
msgstr "Ingen hendelser"
|
8831 |
|
8832 |
+
#: app/skins/single.php:393
|
8833 |
msgid "Home"
|
8834 |
msgstr ""
|
8835 |
|
8836 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
8837 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8838 |
#: app/skins/single/modern.php:292
|
8839 |
msgid "Sold out!"
|
8840 |
msgstr "Utsolgt!"
|
8841 |
|
8842 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
8843 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8844 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8845 |
#: app/skins/single/modern.php:55
|
8846 |
msgid "Phone"
|
8847 |
msgstr "Telefon"
|
8848 |
|
8849 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
8850 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8851 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8852 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
8855 |
msgid "Website"
|
8856 |
msgstr "Nettsted"
|
8857 |
|
8858 |
+
#: app/skins/single.php:1261
|
8859 |
msgid "Speakers:"
|
8860 |
msgstr "Høyttalere:"
|
8861 |
|
9456 |
#~ msgid "Can I Override MEC Template ?"
|
9457 |
#~ msgstr "Kan jeg overstyre MEC mal?"
|
9458 |
|
|
|
|
|
|
|
9459 |
#, fuzzy
|
9460 |
#~| msgid "Discount is not valid for this event!"
|
9461 |
#~ msgid "Event is not repeating. No dates exist for this event!"
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-06-
|
5 |
-
"PO-Revision-Date: 2020-06-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr "Modern Events Calendar"
|
@@ -314,7 +314,7 @@ msgid "Edit Event"
|
|
314 |
msgstr ""
|
315 |
|
316 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
317 |
-
#: app/features/popup/event.php:
|
318 |
msgid "View Event"
|
319 |
msgstr "Bekijk evenement"
|
320 |
|
@@ -336,8 +336,8 @@ msgstr "Geen evenementen gevonden in de prullenbak."
|
|
336 |
#: app/features/mec/meta_boxes/search_form.php:654
|
337 |
#: app/features/mec/meta_boxes/search_form.php:760
|
338 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
339 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
340 |
-
#: app/libraries/skins.php:
|
341 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
342 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
343 |
#: app/skins/single/modern.php:137
|
@@ -347,7 +347,7 @@ msgstr "Categorie"
|
|
347 |
#: app/features/events.php:186 app/features/events.php:3193
|
348 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
349 |
#: app/features/mec/meta_boxes/filter.php:69
|
350 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
351 |
msgid "Categories"
|
352 |
msgstr "Categorieën"
|
353 |
|
@@ -436,7 +436,7 @@ msgid "Event Repeating"
|
|
436 |
msgstr "Terugkerend evenement"
|
437 |
|
438 |
#: app/features/events.php:336 app/features/events.php:1215
|
439 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
440 |
msgid "Hourly Schedule"
|
441 |
msgstr "Urenschema"
|
442 |
|
@@ -469,18 +469,18 @@ msgstr "Evenement locatie"
|
|
469 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
470 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
471 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
472 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
473 |
-
#: app/features/popup/event.php:
|
474 |
-
#: app/libraries/main.php:
|
475 |
-
#: app/skins/single.php:
|
476 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
477 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
478 |
msgid "Organizer"
|
479 |
msgstr "Organisator"
|
480 |
|
481 |
#: app/features/events.php:340 app/features/events.php:1092
|
482 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
483 |
-
#: app/skins/single.php:
|
484 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
485 |
#: app/skins/single/modern.php:234
|
486 |
msgid "Cost"
|
@@ -502,8 +502,8 @@ msgstr ""
|
|
502 |
#: app/features/events.php:3769 app/features/fes.php:223
|
503 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
504 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
505 |
-
#: app/features/popup/event.php:
|
506 |
-
#: app/libraries/notifications.php:
|
507 |
msgid "Name"
|
508 |
msgstr "Naam"
|
509 |
|
@@ -515,9 +515,9 @@ msgstr "Naam"
|
|
515 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
516 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
517 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
518 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
519 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
520 |
-
#: app/skins/single.php:
|
521 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
522 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
523 |
#: app/skins/single/modern.php:62
|
@@ -533,7 +533,7 @@ msgstr "Datum en tijd"
|
|
533 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
534 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
535 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
536 |
-
#: app/features/mec.php:
|
537 |
#: app/features/mec/meta_boxes/display_options.php:278
|
538 |
#: app/features/mec/meta_boxes/display_options.php:517
|
539 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -557,12 +557,12 @@ msgstr "Begindatum"
|
|
557 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
558 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
559 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
560 |
-
#: app/features/mec.php:
|
561 |
msgid "End Date"
|
562 |
msgstr "Einddatum"
|
563 |
|
564 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
565 |
-
#: app/features/popup/event.php:
|
566 |
#, fuzzy
|
567 |
#| msgid "All Day Event"
|
568 |
msgid "All-day Event"
|
@@ -602,7 +602,7 @@ msgstr ""
|
|
602 |
#: app/features/events.php:2151 app/features/events.php:2166
|
603 |
#: app/features/events.php:2196 app/features/events.php:2209
|
604 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
605 |
-
#: app/features/locations.php:
|
606 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
607 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
608 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -666,8 +666,8 @@ msgstr ""
|
|
666 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
667 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
668 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
669 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
670 |
-
#: app/features/popup/event.php:
|
671 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
672 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
673 |
#: app/skins/single/modern.php:160
|
@@ -692,7 +692,7 @@ msgid "Repeats"
|
|
692 |
msgstr "Terugkerend"
|
693 |
|
694 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
695 |
-
#: app/features/mec.php:
|
696 |
#: app/skins/full_calendar/tpl.php:121
|
697 |
msgid "Daily"
|
698 |
msgstr "Dagelijks"
|
@@ -717,13 +717,13 @@ msgid "Weekly"
|
|
717 |
msgstr "Wekelijks"
|
718 |
|
719 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
720 |
-
#: app/features/mec.php:
|
721 |
#: app/skins/full_calendar/tpl.php:119
|
722 |
msgid "Monthly"
|
723 |
msgstr "Maandelijks"
|
724 |
|
725 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
726 |
-
#: app/features/mec.php:
|
727 |
#: app/skins/full_calendar/tpl.php:118
|
728 |
msgid "Yearly"
|
729 |
msgstr "Jaarlijks"
|
@@ -859,7 +859,7 @@ msgstr ""
|
|
859 |
#: app/features/events.php:1088 app/features/events.php:3431
|
860 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
861 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
862 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
863 |
#: app/widgets/single.php:103
|
864 |
msgid "Event Cost"
|
865 |
msgstr "Evenements kosten"
|
@@ -877,8 +877,8 @@ msgstr "Elke doordeweekse dag"
|
|
877 |
#: app/features/events.php:1124 app/features/events.php:2330
|
878 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
879 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
880 |
-
#: app/modules/booking/steps/tickets.php:
|
881 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
882 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
883 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
884 |
msgid "Date"
|
@@ -963,7 +963,7 @@ msgstr "Beschrijving"
|
|
963 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
964 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
965 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
966 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
967 |
#: app/modules/speakers/details.php:18
|
968 |
msgid "Speakers"
|
969 |
msgstr ""
|
@@ -980,7 +980,7 @@ msgid "Event Links"
|
|
980 |
msgstr "Evenement locatie"
|
981 |
|
982 |
#: app/features/events.php:1408 app/features/events.php:1414
|
983 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
984 |
#, fuzzy
|
985 |
msgid "Event Link"
|
986 |
msgstr "Evenement locatie"
|
@@ -1005,8 +1005,8 @@ msgid "URL Shortener"
|
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1008 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
1009 |
-
#: app/skins/single.php:
|
1010 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1011 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1012 |
#: app/widgets/single.php:107
|
@@ -1047,8 +1047,8 @@ msgid "Total User Booking Limits"
|
|
1047 |
msgstr "Maximum aantal boekingen"
|
1048 |
|
1049 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1050 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
1051 |
-
#: app/modules/booking/steps/tickets.php:
|
1052 |
msgid "Tickets"
|
1053 |
msgstr "Tickets"
|
1054 |
|
@@ -1076,7 +1076,7 @@ msgstr "Maximum aantal boekingen"
|
|
1076 |
|
1077 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1078 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1079 |
-
#: app/modules/booking/steps/tickets.php:
|
1080 |
#: app/skins/available_spot/tpl.php:142
|
1081 |
msgid "Unlimited"
|
1082 |
msgstr "Onbeperkt"
|
@@ -1243,7 +1243,7 @@ msgstr "Prijs label"
|
|
1243 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1244 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1245 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1246 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1247 |
msgid "Label"
|
1248 |
msgstr "Label"
|
1249 |
|
@@ -1467,8 +1467,8 @@ msgstr "Aanwezige"
|
|
1467 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1468 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1469 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1470 |
-
#: app/features/locations.php:
|
1471 |
-
#: app/features/locations.php:
|
1472 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1473 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1474 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1482,10 +1482,10 @@ msgstr "Aanwezige"
|
|
1482 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1483 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1484 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1485 |
-
#: app/features/popup/event.php:
|
1486 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1487 |
-
#: app/libraries/main.php:
|
1488 |
-
#: app/skins/single.php:
|
1489 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1490 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1491 |
#: app/skins/single/modern.php:113
|
@@ -1527,7 +1527,7 @@ msgstr ""
|
|
1527 |
|
1528 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1529 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1530 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1531 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1532 |
msgid "ID"
|
1533 |
msgstr "ID"
|
@@ -1549,7 +1549,7 @@ msgstr ""
|
|
1549 |
|
1550 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1551 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1552 |
-
#: app/libraries/main.php:
|
1553 |
msgid "Ticket"
|
1554 |
msgstr "Ticket"
|
1555 |
|
@@ -1757,7 +1757,7 @@ msgid "eg. yourname@gmail.com"
|
|
1757 |
msgstr ""
|
1758 |
|
1759 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1760 |
-
#: app/features/popup/event.php:
|
1761 |
msgid "eg. John Smith"
|
1762 |
msgstr "bijv. John Smith"
|
1763 |
|
@@ -1781,8 +1781,8 @@ msgstr "Verwijder afbeelding"
|
|
1781 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1782 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1783 |
#: app/features/mec/meta_boxes/filter.php:72
|
1784 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1785 |
-
#: app/skins/single.php:
|
1786 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1787 |
#: app/skins/single/modern.php:249
|
1788 |
msgid "Labels"
|
@@ -2530,7 +2530,7 @@ msgid "Featured"
|
|
2530 |
msgstr "Uitgelichte afbeelding"
|
2531 |
|
2532 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2533 |
-
#: app/libraries/main.php:
|
2534 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2535 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2536 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2548,30 +2548,30 @@ msgstr "Geannuleerd"
|
|
2548 |
msgid "You can show featured and canceled events by a different style!"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2552 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2553 |
-
#: app/modules/booking/steps/tickets.php:
|
2554 |
msgid "Count"
|
2555 |
msgstr "Aantal keer gebruikt"
|
2556 |
|
2557 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2558 |
#: app/features/organizers.php:207
|
2559 |
msgid "Slug"
|
2560 |
msgstr "Slug"
|
2561 |
|
2562 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2563 |
#, php-format
|
2564 |
msgid "Event %s"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2568 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2569 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2570 |
msgid "Locations"
|
2571 |
msgstr "Locaties"
|
2572 |
|
2573 |
-
#: app/features/locations.php:
|
2574 |
-
#: app/features/locations.php:
|
2575 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2576 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2577 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2586,97 +2586,97 @@ msgstr "Locaties"
|
|
2586 |
msgid "Address"
|
2587 |
msgstr "Adres"
|
2588 |
|
2589 |
-
#: app/features/locations.php:
|
2590 |
msgid "Enter the location address"
|
2591 |
msgstr "Voer de locatie adres in"
|
2592 |
|
2593 |
-
#: app/features/locations.php:
|
2594 |
-
#: app/features/locations.php:
|
2595 |
msgid "Latitude"
|
2596 |
msgstr "Latitude"
|
2597 |
|
2598 |
-
#: app/features/locations.php:
|
2599 |
msgid "Geo latitude (Optional)"
|
2600 |
msgstr "Geo latitude (Optioneel)"
|
2601 |
|
2602 |
-
#: app/features/locations.php:
|
2603 |
-
#: app/features/locations.php:
|
2604 |
msgid "Longitude"
|
2605 |
msgstr "Longitude"
|
2606 |
|
2607 |
-
#: app/features/locations.php:
|
2608 |
msgid "Geo longitude (Optional)"
|
2609 |
msgstr "Geo longitude (Optioneel)"
|
2610 |
|
2611 |
-
#: app/features/locations.php:
|
2612 |
-
#: app/features/locations.php:
|
2613 |
#, fuzzy
|
2614 |
#| msgid "Locations"
|
2615 |
msgid "Location Website"
|
2616 |
msgstr "Locaties"
|
2617 |
|
2618 |
-
#: app/features/locations.php:
|
2619 |
#, fuzzy
|
2620 |
#| msgid "Geo latitude (Optional)"
|
2621 |
msgid "Location Website (Optional)"
|
2622 |
msgstr "Geo latitude (Optioneel)"
|
2623 |
|
2624 |
-
#: app/features/locations.php:
|
2625 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2626 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2627 |
msgid "Thumbnail"
|
2628 |
msgstr "Thumbnail"
|
2629 |
|
2630 |
-
#: app/features/locations.php:
|
2631 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2632 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2633 |
msgid "Upload/Add image"
|
2634 |
msgstr "Upload/toevoegen afbeelding"
|
2635 |
|
2636 |
-
#: app/features/locations.php:
|
2637 |
-
#: app/features/locations.php:
|
2638 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2639 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2640 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2641 |
msgid "Remove image"
|
2642 |
msgstr "Verwijder afbeelding"
|
2643 |
|
2644 |
-
#: app/features/locations.php:
|
2645 |
msgid "Hide location"
|
2646 |
msgstr "Verberg locatie"
|
2647 |
|
2648 |
-
#: app/features/locations.php:
|
2649 |
msgid "Insert a new location"
|
2650 |
msgstr "Voeg een nieuwe locatie in"
|
2651 |
|
2652 |
-
#: app/features/locations.php:
|
2653 |
msgid "Choose one of saved locations or insert new one below."
|
2654 |
msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
|
2655 |
|
2656 |
-
#: app/features/locations.php:
|
2657 |
msgid "Location Name"
|
2658 |
msgstr "Locatie naam"
|
2659 |
|
2660 |
-
#: app/features/locations.php:
|
2661 |
msgid "eg. City Hall"
|
2662 |
msgstr "bijv. Gemeentehuis"
|
2663 |
|
2664 |
-
#: app/features/locations.php:
|
2665 |
-
#: app/features/popup/event.php:
|
2666 |
msgid "Event Location"
|
2667 |
msgstr "Evenement locatie"
|
2668 |
|
2669 |
-
#: app/features/locations.php:
|
2670 |
msgid "eg. City hall, Manhattan, New York"
|
2671 |
msgstr "bijv. Gemeentehuis, Amsterdam, Noord-Holland"
|
2672 |
|
2673 |
-
#: app/features/locations.php:
|
2674 |
#, fuzzy
|
2675 |
#| msgid "Longitude"
|
2676 |
msgid "Latitude/Longitude"
|
2677 |
msgstr "Longitude"
|
2678 |
|
2679 |
-
#: app/features/locations.php:
|
2680 |
msgid ""
|
2681 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2682 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2685,26 +2685,26 @@ msgid ""
|
|
2685 |
"the location on the map to find lat long coordinates."
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: app/features/locations.php:
|
2689 |
msgid "Get Latitude and Longitude"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: app/features/locations.php:
|
2693 |
-
#: app/features/popup/event.php:
|
2694 |
msgid "Choose image"
|
2695 |
msgstr "Kies afbeelding"
|
2696 |
|
2697 |
-
#: app/features/locations.php:
|
2698 |
msgid "Don't show map in single event page"
|
2699 |
msgstr "Verberg de map op de pagina van het evenement"
|
2700 |
|
2701 |
-
#: app/features/locations.php:
|
2702 |
#, fuzzy
|
2703 |
#| msgid "Search Locations"
|
2704 |
msgid "Other Locations"
|
2705 |
msgstr "Zoek locaties"
|
2706 |
|
2707 |
-
#: app/features/locations.php:
|
2708 |
msgid ""
|
2709 |
"You can select extra locations in addition to main location if you like."
|
2710 |
msgstr ""
|
@@ -2781,7 +2781,7 @@ msgstr "Support"
|
|
2781 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2782 |
#: app/features/mec/meta_boxes/filter.php:71
|
2783 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2784 |
-
#: app/libraries/main.php:
|
2785 |
msgid "Organizers"
|
2786 |
msgstr "Organisatoren"
|
2787 |
|
@@ -2822,7 +2822,7 @@ msgstr "Support"
|
|
2822 |
msgid "MEC - Go Pro"
|
2823 |
msgstr "Support"
|
2824 |
|
2825 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2826 |
#: app/features/mec/go-pro.php:9
|
2827 |
msgid "Go Pro"
|
2828 |
msgstr ""
|
@@ -2880,75 +2880,75 @@ msgstr ""
|
|
2880 |
msgid "Modal Popup"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: app/features/mec.php:
|
2884 |
msgid "Total Bookings"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: app/features/mec.php:
|
2888 |
#, fuzzy
|
2889 |
#| msgid "Modern Events Calendar"
|
2890 |
msgid "Modern Events Calendar (Lite)"
|
2891 |
msgstr "Modern Events Calendar"
|
2892 |
|
2893 |
-
#: app/features/mec.php:
|
2894 |
#: app/features/mec/settings.php:428
|
2895 |
msgid "Upcoming Events"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: app/features/mec.php:
|
2899 |
#, fuzzy
|
2900 |
#| msgid "Update Label"
|
2901 |
msgid "News & Updates"
|
2902 |
msgstr "Update label"
|
2903 |
|
2904 |
-
#: app/features/mec.php:
|
2905 |
msgid "Blog"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
-
#: app/features/mec.php:
|
2909 |
msgid "Help"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
-
#: app/features/mec.php:
|
2913 |
msgid "This Month"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: app/features/mec.php:
|
2917 |
msgid "Last Month"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
-
#: app/features/mec.php:
|
2921 |
msgid "This Year"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: app/features/mec.php:
|
2925 |
msgid "Last Year"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: app/features/mec.php:
|
2929 |
msgid "Bar"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: app/features/mec.php:
|
2933 |
msgid "Line"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: app/features/mec.php:
|
2937 |
msgid "Filter"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: app/features/mec.php:
|
2941 |
#, php-format
|
2942 |
msgid "Total Sells (%s)"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
-
#: app/features/mec.php:
|
2946 |
#, fuzzy
|
2947 |
#| msgid "Modern Events Calendar"
|
2948 |
msgid "Print Calendar"
|
2949 |
msgstr "Modern Events Calendar"
|
2950 |
|
2951 |
-
#: app/features/mec.php:
|
2952 |
#, fuzzy
|
2953 |
msgid "Display Events"
|
2954 |
msgstr "Hele dag"
|
@@ -3350,7 +3350,7 @@ msgstr ""
|
|
3350 |
#: app/features/mec/notifications.php:923
|
3351 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3352 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3353 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3354 |
msgid "Verified"
|
3355 |
msgstr "Geverifieerd"
|
3356 |
|
@@ -4528,8 +4528,8 @@ msgstr ""
|
|
4528 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4529 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4530 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4531 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4532 |
-
#: app/libraries/skins.php:
|
4533 |
msgid "Speaker"
|
4534 |
msgstr ""
|
4535 |
|
@@ -4545,7 +4545,7 @@ msgstr ""
|
|
4545 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4546 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4547 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4548 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4549 |
#, fuzzy
|
4550 |
#| msgid "Tags"
|
4551 |
msgid "Tag"
|
@@ -5348,7 +5348,7 @@ msgstr ""
|
|
5348 |
"nieuwe boeking is ontvangen."
|
5349 |
|
5350 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5351 |
-
#: app/libraries/notifications.php:
|
5352 |
msgid "Booking Reminder"
|
5353 |
msgstr ""
|
5354 |
|
@@ -5376,7 +5376,7 @@ msgstr ""
|
|
5376 |
msgid "Please, insert comma to separate reminder days."
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5380 |
#: app/libraries/main.php:584
|
5381 |
msgid "New Event"
|
5382 |
msgstr "Nieuw evenement"
|
@@ -5604,7 +5604,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5604 |
msgstr ""
|
5605 |
|
5606 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5607 |
-
#: app/libraries/main.php:
|
5608 |
msgid "Weekdays"
|
5609 |
msgstr ""
|
5610 |
|
@@ -6331,7 +6331,7 @@ msgid ""
|
|
6331 |
msgstr ""
|
6332 |
|
6333 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6334 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
6335 |
#, fuzzy
|
6336 |
#| msgid "featured event"
|
6337 |
msgid "Related Events"
|
@@ -6975,7 +6975,7 @@ msgid "Insert organizer email address."
|
|
6975 |
msgstr "Voer organisator email adres in."
|
6976 |
|
6977 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
6978 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
6979 |
msgid "Link to organizer page"
|
6980 |
msgstr "Link naar organisator pagina"
|
6981 |
|
@@ -6994,41 +6994,41 @@ msgstr "Contact informatie"
|
|
6994 |
msgid "Event Main %s"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
6998 |
msgid "Hide organizer"
|
6999 |
msgstr "Verberg organisator"
|
7000 |
|
7001 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
7002 |
msgid "Insert a new organizer"
|
7003 |
msgstr "Voeg nieuwe organisator toe"
|
7004 |
|
7005 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
7006 |
msgid "Choose one of saved organizers or insert new one below."
|
7007 |
msgstr ""
|
7008 |
"Kies één van de bewaarde organisatoren of voeg een nieuwe organisator toe."
|
7009 |
|
7010 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
7011 |
msgid "Phone number."
|
7012 |
msgstr ""
|
7013 |
|
7014 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
7015 |
msgid "eg. +1 (234) 5678"
|
7016 |
msgstr "bijv. +31 (0) 612345678"
|
7017 |
|
7018 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
7019 |
msgid "Email address."
|
7020 |
msgstr ""
|
7021 |
|
7022 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
7023 |
msgid "eg. john@smith.com"
|
7024 |
msgstr "bijv. john@smith.com"
|
7025 |
|
7026 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
7027 |
msgid "eg. https://webnus.net"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
7031 |
-
#: app/skins/single.php:
|
7032 |
msgid "Other Organizers"
|
7033 |
msgstr ""
|
7034 |
|
@@ -7053,67 +7053,57 @@ msgstr "Evenement label"
|
|
7053 |
msgid "Event name is required"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#: app/features/popup/event.php:
|
7057 |
-
#: app/libraries/main.php:6643
|
7058 |
-
msgid "AM"
|
7059 |
-
msgstr "AM"
|
7060 |
-
|
7061 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
7062 |
-
#: app/libraries/main.php:6644
|
7063 |
-
msgid "PM"
|
7064 |
-
msgstr "PM"
|
7065 |
-
|
7066 |
-
#: app/features/popup/event.php:256
|
7067 |
#, fuzzy
|
7068 |
#| msgid "Choose one of saved locations or insert new one below."
|
7069 |
msgid "Choose one of saved locations or insert new one."
|
7070 |
msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
|
7071 |
|
7072 |
-
#: app/features/popup/event.php:
|
7073 |
#, fuzzy
|
7074 |
#| msgid "Add New Location"
|
7075 |
msgid "Add Location"
|
7076 |
msgstr "Nieuwe locatie toevoegen"
|
7077 |
|
7078 |
-
#: app/features/popup/event.php:
|
7079 |
#, fuzzy
|
7080 |
#| msgid "Add New Organizer"
|
7081 |
msgid "Add Organizer"
|
7082 |
msgstr "Nieuwe organisator toevoegen"
|
7083 |
|
7084 |
-
#: app/features/popup/event.php:
|
7085 |
#, fuzzy
|
7086 |
#| msgid "Categories"
|
7087 |
msgid "All Categories"
|
7088 |
msgstr "Categorieën"
|
7089 |
|
7090 |
-
#: app/features/popup/event.php:
|
7091 |
msgid "Most Used"
|
7092 |
msgstr ""
|
7093 |
|
7094 |
-
#: app/features/popup/event.php:
|
7095 |
#, fuzzy
|
7096 |
#| msgid "Add New Label"
|
7097 |
msgid "Add New Category"
|
7098 |
msgstr "Nieuwe label toevoegen"
|
7099 |
|
7100 |
-
#: app/features/popup/event.php:
|
7101 |
#, fuzzy
|
7102 |
#| msgid "Featured Image"
|
7103 |
msgid "Set Featured Image"
|
7104 |
msgstr "Uitgelichte afbeelding"
|
7105 |
|
7106 |
-
#: app/features/popup/event.php:
|
7107 |
msgid "Your Event Has Been Created."
|
7108 |
msgstr ""
|
7109 |
|
7110 |
-
#: app/features/popup/event.php:
|
7111 |
msgid "Prev"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
-
#: app/features/popup/event.php:
|
7115 |
#: app/modules/booking/steps/form.php:188
|
7116 |
-
#: app/modules/booking/steps/tickets.php:
|
7117 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7118 |
msgid "Next"
|
7119 |
msgstr "Volgende"
|
@@ -7355,11 +7345,11 @@ msgstr "Zoek coupons"
|
|
7355 |
msgid "No search result."
|
7356 |
msgstr ""
|
7357 |
|
7358 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7359 |
-
#: app/libraries/notifications.php:
|
7360 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7361 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7362 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
7363 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7364 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7365 |
#, fuzzy
|
@@ -7455,12 +7445,12 @@ msgstr ""
|
|
7455 |
msgid "%s Price"
|
7456 |
msgstr ""
|
7457 |
|
7458 |
-
#: app/libraries/book.php:
|
7459 |
msgid "Discount"
|
7460 |
msgstr "Korting"
|
7461 |
|
7462 |
-
#: app/libraries/book.php:
|
7463 |
-
#: app/modules/booking/default.php:
|
7464 |
msgid "Download Invoice"
|
7465 |
msgstr ""
|
7466 |
|
@@ -7483,51 +7473,51 @@ msgctxt "plugin link"
|
|
7483 |
msgid "Upgrade"
|
7484 |
msgstr ""
|
7485 |
|
7486 |
-
#: app/libraries/factory.php:
|
7487 |
msgid "day"
|
7488 |
msgstr "dag"
|
7489 |
|
7490 |
-
#: app/libraries/factory.php:
|
7491 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7492 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7493 |
msgid "days"
|
7494 |
msgstr "dagen"
|
7495 |
|
7496 |
-
#: app/libraries/factory.php:
|
7497 |
msgid "hour"
|
7498 |
msgstr "uur"
|
7499 |
|
7500 |
-
#: app/libraries/factory.php:
|
7501 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7502 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7503 |
msgid "hours"
|
7504 |
msgstr "uren"
|
7505 |
|
7506 |
-
#: app/libraries/factory.php:
|
7507 |
msgid "minute"
|
7508 |
msgstr "minuut"
|
7509 |
|
7510 |
-
#: app/libraries/factory.php:
|
7511 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7512 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7513 |
msgid "minutes"
|
7514 |
msgstr "minuten"
|
7515 |
|
7516 |
-
#: app/libraries/factory.php:
|
7517 |
msgid "second"
|
7518 |
msgstr "seconde"
|
7519 |
|
7520 |
-
#: app/libraries/factory.php:
|
7521 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7522 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7523 |
msgid "seconds"
|
7524 |
msgstr "secondes"
|
7525 |
|
7526 |
-
#: app/libraries/factory.php:
|
7527 |
msgid "MEC Single Sidebar"
|
7528 |
msgstr ""
|
7529 |
|
7530 |
-
#: app/libraries/factory.php:
|
7531 |
msgid "Custom sidebar for single and modal page of MEC."
|
7532 |
msgstr ""
|
7533 |
|
@@ -7594,31 +7584,31 @@ msgstr ""
|
|
7594 |
msgid "Timeline View"
|
7595 |
msgstr "Dagweergave"
|
7596 |
|
7597 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7598 |
msgid "SU"
|
7599 |
msgstr "ZO"
|
7600 |
|
7601 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7602 |
msgid "MO"
|
7603 |
msgstr "MA"
|
7604 |
|
7605 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7606 |
msgid "TU"
|
7607 |
msgstr "DI"
|
7608 |
|
7609 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7610 |
msgid "WE"
|
7611 |
msgstr "WO"
|
7612 |
|
7613 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7614 |
msgid "TH"
|
7615 |
msgstr "DO"
|
7616 |
|
7617 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7618 |
msgid "FR"
|
7619 |
msgstr "VR"
|
7620 |
|
7621 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7622 |
msgid "SA"
|
7623 |
msgstr "ZA"
|
7624 |
|
@@ -7953,115 +7943,115 @@ msgstr "Voer een label in voor deze optie"
|
|
7953 |
msgid "Free"
|
7954 |
msgstr "Gratis"
|
7955 |
|
7956 |
-
#: app/libraries/main.php:
|
7957 |
#, fuzzy
|
7958 |
#| msgid "M.E. Calendar"
|
7959 |
msgid "M.E. Calender"
|
7960 |
msgstr "M.E. Calendar"
|
7961 |
|
7962 |
-
#: app/libraries/main.php:
|
7963 |
#, php-format
|
7964 |
msgid "Copy of %s"
|
7965 |
msgstr ""
|
7966 |
|
7967 |
-
#: app/libraries/main.php:
|
7968 |
msgid "Booked an event."
|
7969 |
msgstr ""
|
7970 |
|
7971 |
-
#: app/libraries/main.php:
|
7972 |
#, php-format
|
7973 |
msgid "%s booked %s event."
|
7974 |
msgstr ""
|
7975 |
|
7976 |
-
#: app/libraries/main.php:
|
7977 |
msgid "Taxonomies"
|
7978 |
msgstr ""
|
7979 |
|
7980 |
-
#: app/libraries/main.php:
|
7981 |
msgid "Category Plural Label"
|
7982 |
msgstr ""
|
7983 |
|
7984 |
-
#: app/libraries/main.php:
|
7985 |
msgid "Category Singular Label"
|
7986 |
msgstr ""
|
7987 |
|
7988 |
-
#: app/libraries/main.php:
|
7989 |
msgid "Label Plural Label"
|
7990 |
msgstr ""
|
7991 |
|
7992 |
-
#: app/libraries/main.php:
|
7993 |
msgid "Label Singular Label"
|
7994 |
msgstr ""
|
7995 |
|
7996 |
-
#: app/libraries/main.php:
|
7997 |
msgid "label"
|
7998 |
msgstr ""
|
7999 |
|
8000 |
-
#: app/libraries/main.php:
|
8001 |
msgid "Location Plural Label"
|
8002 |
msgstr ""
|
8003 |
|
8004 |
-
#: app/libraries/main.php:
|
8005 |
msgid "Location Singular Label"
|
8006 |
msgstr ""
|
8007 |
|
8008 |
-
#: app/libraries/main.php:
|
8009 |
msgid "Organizer Plural Label"
|
8010 |
msgstr ""
|
8011 |
|
8012 |
-
#: app/libraries/main.php:
|
8013 |
msgid "Organizer Singular Label"
|
8014 |
msgstr ""
|
8015 |
|
8016 |
-
#: app/libraries/main.php:
|
8017 |
#, fuzzy
|
8018 |
#| msgid "Search Labels"
|
8019 |
msgid "Speaker Plural Label"
|
8020 |
msgstr "Zoek labels"
|
8021 |
|
8022 |
-
#: app/libraries/main.php:
|
8023 |
#, fuzzy
|
8024 |
#| msgid "Popular Labels"
|
8025 |
msgid "Speaker Singular Label"
|
8026 |
msgstr "Populaire labels"
|
8027 |
|
8028 |
-
#: app/libraries/main.php:
|
8029 |
msgid "Sunday abbreviation"
|
8030 |
msgstr ""
|
8031 |
|
8032 |
-
#: app/libraries/main.php:
|
8033 |
msgid "Monday abbreviation"
|
8034 |
msgstr ""
|
8035 |
|
8036 |
-
#: app/libraries/main.php:
|
8037 |
msgid "Tuesday abbreviation"
|
8038 |
msgstr ""
|
8039 |
|
8040 |
-
#: app/libraries/main.php:
|
8041 |
msgid "Wednesday abbreviation"
|
8042 |
msgstr ""
|
8043 |
|
8044 |
-
#: app/libraries/main.php:
|
8045 |
msgid "Thursday abbreviation"
|
8046 |
msgstr ""
|
8047 |
|
8048 |
-
#: app/libraries/main.php:
|
8049 |
msgid "Friday abbreviation"
|
8050 |
msgstr ""
|
8051 |
|
8052 |
-
#: app/libraries/main.php:
|
8053 |
msgid "Saturday abbreviation"
|
8054 |
msgstr ""
|
8055 |
|
8056 |
-
#: app/libraries/main.php:
|
8057 |
msgid "Others"
|
8058 |
msgstr ""
|
8059 |
|
8060 |
-
#: app/libraries/main.php:
|
8061 |
msgid "Booking Success Message"
|
8062 |
msgstr ""
|
8063 |
|
8064 |
-
#: app/libraries/main.php:
|
8065 |
#, fuzzy
|
8066 |
#| msgid ""
|
8067 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -8073,17 +8063,17 @@ msgstr ""
|
|
8073 |
"Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
|
8074 |
"nodig zijn, controleer uw email alstublieft."
|
8075 |
|
8076 |
-
#: app/libraries/main.php:
|
8077 |
msgid "Register Button"
|
8078 |
msgstr ""
|
8079 |
|
8080 |
-
#: app/libraries/main.php:
|
8081 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8082 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8083 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8084 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8085 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
8086 |
-
#: app/skins/single.php:
|
8087 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8088 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8089 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -8095,159 +8085,167 @@ msgstr ""
|
|
8095 |
msgid "REGISTER"
|
8096 |
msgstr "REGISTREREN"
|
8097 |
|
8098 |
-
#: app/libraries/main.php:
|
8099 |
msgid "View Detail Button"
|
8100 |
msgstr ""
|
8101 |
|
8102 |
-
#: app/libraries/main.php:
|
8103 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8104 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8105 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8106 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8107 |
-
#: app/skins/single.php:
|
8108 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8109 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8110 |
msgid "View Detail"
|
8111 |
msgstr "Bekijk detail"
|
8112 |
|
8113 |
-
#: app/libraries/main.php:
|
8114 |
msgid "Event Detail Button"
|
8115 |
msgstr ""
|
8116 |
|
8117 |
-
#: app/libraries/main.php:
|
8118 |
#, fuzzy
|
8119 |
msgid "Event Detail"
|
8120 |
msgstr "Evenement details"
|
8121 |
|
8122 |
-
#: app/libraries/main.php:
|
8123 |
msgid "More Info Link"
|
8124 |
msgstr ""
|
8125 |
|
8126 |
-
#: app/libraries/main.php:
|
8127 |
msgid "Ticket (Singular)"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
-
#: app/libraries/main.php:
|
8131 |
msgid "Tickets (Plural)"
|
8132 |
msgstr ""
|
8133 |
|
8134 |
-
#: app/libraries/main.php:
|
8135 |
msgid "EventON"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
-
#: app/libraries/main.php:
|
8139 |
msgid "The Events Calendar"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
-
#: app/libraries/main.php:
|
8143 |
msgid "Events Schedule WP Plugin"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
-
#: app/libraries/main.php:
|
8147 |
msgid "Calendarize It"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
-
#: app/libraries/main.php:
|
8151 |
#, fuzzy
|
8152 |
msgid "Event Espresso"
|
8153 |
msgstr "Zoek locaties"
|
8154 |
|
8155 |
-
#: app/libraries/main.php:
|
8156 |
#, fuzzy
|
8157 |
#| msgid "Event Repeating"
|
8158 |
msgid "Events Manager (Recurring)"
|
8159 |
msgstr "Terugkerend evenement"
|
8160 |
|
8161 |
-
#: app/libraries/main.php:
|
8162 |
#, fuzzy
|
8163 |
#| msgid "Modern Events Calendar"
|
8164 |
msgid "Events Manager (Single)"
|
8165 |
msgstr "Modern Events Calendar"
|
8166 |
|
8167 |
-
#: app/libraries/main.php:
|
8168 |
msgid "Confirmed"
|
8169 |
msgstr "Bevestigd"
|
8170 |
|
8171 |
-
#: app/libraries/main.php:
|
8172 |
msgid "Rejected"
|
8173 |
msgstr "Afgewezen"
|
8174 |
|
8175 |
-
#: app/libraries/main.php:
|
8176 |
msgid "Pending"
|
8177 |
msgstr "In afwachting"
|
8178 |
|
8179 |
-
#: app/libraries/main.php:
|
8180 |
msgid "Waiting"
|
8181 |
msgstr "In afwachting"
|
8182 |
|
8183 |
-
#: app/libraries/main.php:
|
8184 |
msgid "Sun"
|
8185 |
msgstr ""
|
8186 |
|
8187 |
-
#: app/libraries/main.php:
|
8188 |
#, fuzzy
|
8189 |
#| msgid "Modern"
|
8190 |
msgid "Mon"
|
8191 |
msgstr "Modern"
|
8192 |
|
8193 |
-
#: app/libraries/main.php:
|
8194 |
#, fuzzy
|
8195 |
#| msgid "Tel"
|
8196 |
msgid "Tue"
|
8197 |
msgstr "Tel"
|
8198 |
|
8199 |
-
#: app/libraries/main.php:
|
8200 |
msgid "Wed"
|
8201 |
msgstr ""
|
8202 |
|
8203 |
-
#: app/libraries/main.php:
|
8204 |
msgid "Thu"
|
8205 |
msgstr ""
|
8206 |
|
8207 |
-
#: app/libraries/main.php:
|
8208 |
msgid "Fri"
|
8209 |
msgstr ""
|
8210 |
|
8211 |
-
#: app/libraries/main.php:
|
8212 |
msgid "Sat"
|
8213 |
msgstr ""
|
8214 |
|
8215 |
-
#: app/libraries/main.php:
|
8216 |
#: app/libraries/render.php:432
|
8217 |
msgid "Skin controller does not exist."
|
8218 |
msgstr "Skin controller bestaat niet."
|
8219 |
|
8220 |
-
#: app/libraries/main.php:
|
8221 |
msgid "Sold Out"
|
8222 |
msgstr ""
|
8223 |
|
8224 |
-
#: app/libraries/main.php:
|
8225 |
#, fuzzy
|
8226 |
#| msgid "Ticket"
|
8227 |
msgid "Last Few Tickets"
|
8228 |
msgstr "Ticket"
|
8229 |
|
8230 |
-
#: app/libraries/main.php:
|
8231 |
#, fuzzy
|
8232 |
#| msgid "hours"
|
8233 |
msgid "Hours"
|
8234 |
msgstr "uren"
|
8235 |
|
8236 |
-
#: app/libraries/main.php:
|
8237 |
#, fuzzy
|
8238 |
#| msgid "minutes"
|
8239 |
msgid "Minutes"
|
8240 |
msgstr "minuten"
|
8241 |
|
8242 |
-
#: app/libraries/main.php:
|
8243 |
msgid "AM / PM"
|
8244 |
msgstr ""
|
8245 |
|
8246 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8247 |
msgid "Ongoing..."
|
8248 |
msgstr ""
|
8249 |
|
8250 |
-
#: app/libraries/main.php:
|
8251 |
msgid "Expired!"
|
8252 |
msgstr ""
|
8253 |
|
@@ -8255,78 +8253,86 @@ msgstr ""
|
|
8255 |
msgid "Please verify your email."
|
8256 |
msgstr "Controleer uw email."
|
8257 |
|
8258 |
-
#: app/libraries/notifications.php:
|
8259 |
msgid "Your booking is received."
|
8260 |
msgstr ""
|
8261 |
|
8262 |
-
#: app/libraries/notifications.php:
|
8263 |
msgid "Your booking is confirmed."
|
8264 |
msgstr "Uw boeking is bevestigd."
|
8265 |
|
8266 |
-
#: app/libraries/notifications.php:
|
8267 |
#, fuzzy
|
8268 |
#| msgid "Your booking cannot be canceled."
|
8269 |
msgid "booking canceled."
|
8270 |
msgstr "Uw boeking kan niet worden geannuleerd."
|
8271 |
|
8272 |
-
#: app/libraries/notifications.php:
|
8273 |
msgid "A new booking is received."
|
8274 |
msgstr "Een nieuwe boeking ontvangen."
|
8275 |
|
8276 |
-
#: app/libraries/notifications.php:
|
8277 |
msgid "A new event is added."
|
8278 |
msgstr "Een nieuw evenement is toegevoegd."
|
8279 |
|
8280 |
-
#: app/libraries/notifications.php:
|
8281 |
#, fuzzy
|
8282 |
#| msgid "The event published."
|
8283 |
msgid "Your event is published."
|
8284 |
msgstr "Het evenement gepubliceerd."
|
8285 |
|
8286 |
-
#: app/libraries/notifications.php:
|
8287 |
#, php-format
|
8288 |
msgid "%s to %s"
|
8289 |
msgstr "%s tot %s"
|
8290 |
|
8291 |
-
#: app/libraries/notifications.php:
|
8292 |
-
#: app/libraries/notifications.php:
|
8293 |
msgid "to"
|
8294 |
msgstr ""
|
8295 |
|
8296 |
-
#: app/libraries/notifications.php:
|
8297 |
msgid "+ Add to Google Calendar"
|
8298 |
msgstr "+ Aan Google Kalender toevoegen"
|
8299 |
|
8300 |
-
#: app/libraries/notifications.php:
|
8301 |
msgid "+ iCal export"
|
8302 |
msgstr "+ iCal export"
|
8303 |
|
8304 |
-
#: app/libraries/notifications.php:
|
8305 |
msgid "Yes"
|
8306 |
msgstr ""
|
8307 |
|
8308 |
-
#: app/libraries/notifications.php:
|
8309 |
msgid "No"
|
8310 |
msgstr ""
|
8311 |
|
8312 |
-
#: app/libraries/skins.php:
|
8313 |
msgid "Select"
|
8314 |
msgstr ""
|
8315 |
|
8316 |
-
#: app/modules/attendees-list/details.php:
|
8317 |
msgid "Event Attendees"
|
8318 |
msgstr ""
|
8319 |
|
8320 |
-
#: app/modules/attendees-list/details.php:
|
8321 |
msgid "No attendee found! Be the first one to book!"
|
8322 |
msgstr ""
|
8323 |
|
8324 |
-
#: app/modules/attendees-list/details.php:
|
8325 |
#, fuzzy
|
8326 |
#| msgid "Tickets"
|
8327 |
msgid "tickets"
|
8328 |
msgstr "Tickets"
|
8329 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8330 |
#: app/modules/booking/steps/checkout.php:37
|
8331 |
msgid "Checkout"
|
8332 |
msgstr "Afrekenen"
|
@@ -8378,27 +8384,27 @@ msgstr "Deelnemersformulier"
|
|
8378 |
msgid "Fill other attendees information like the first form."
|
8379 |
msgstr ""
|
8380 |
|
8381 |
-
#: app/modules/booking/steps/tickets.php:
|
8382 |
msgid "Book Event"
|
8383 |
msgstr "Evenement boeken"
|
8384 |
|
8385 |
-
#: app/modules/booking/steps/tickets.php:
|
8386 |
#, fuzzy
|
8387 |
#| msgid "Ticket Name"
|
8388 |
msgid "1 Ticket selected."
|
8389 |
msgstr "Ticket naam"
|
8390 |
|
8391 |
-
#: app/modules/booking/steps/tickets.php:
|
8392 |
#, php-format
|
8393 |
msgid "Available %s: <span>%s</span>"
|
8394 |
msgstr ""
|
8395 |
|
8396 |
-
#: app/modules/booking/steps/tickets.php:
|
8397 |
#, php-format
|
8398 |
msgid "The %s ticket sales has stopped!"
|
8399 |
msgstr ""
|
8400 |
|
8401 |
-
#: app/modules/booking/steps/tickets.php:
|
8402 |
#, php-format
|
8403 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8404 |
msgstr ""
|
@@ -8419,7 +8425,7 @@ msgstr "Adres ..."
|
|
8419 |
msgid "Get Directions"
|
8420 |
msgstr ""
|
8421 |
|
8422 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
8423 |
msgid "Share this event"
|
8424 |
msgstr "Deel dit evenement"
|
8425 |
|
@@ -8470,7 +8476,7 @@ msgstr ""
|
|
8470 |
msgid "Go to occurrence page"
|
8471 |
msgstr ""
|
8472 |
|
8473 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
8474 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8475 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8476 |
msgid "Time"
|
@@ -8607,24 +8613,24 @@ msgstr "Evenementen in %s"
|
|
8607 |
msgid "No Events"
|
8608 |
msgstr "Geen evenementen"
|
8609 |
|
8610 |
-
#: app/skins/single.php:
|
8611 |
msgid "Home"
|
8612 |
msgstr ""
|
8613 |
|
8614 |
-
#: app/skins/single.php:
|
8615 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8616 |
#: app/skins/single/modern.php:292
|
8617 |
msgid "Sold out!"
|
8618 |
msgstr ""
|
8619 |
|
8620 |
-
#: app/skins/single.php:
|
8621 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8622 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8623 |
#: app/skins/single/modern.php:55
|
8624 |
msgid "Phone"
|
8625 |
msgstr "Telefoon"
|
8626 |
|
8627 |
-
#: app/skins/single.php:
|
8628 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8629 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8630 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -8633,7 +8639,7 @@ msgstr "Telefoon"
|
|
8633 |
msgid "Website"
|
8634 |
msgstr "Website"
|
8635 |
|
8636 |
-
#: app/skins/single.php:
|
8637 |
#, fuzzy
|
8638 |
msgid "Speakers:"
|
8639 |
msgstr "Zoek locaties"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-06-16 16:47+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
22 |
|
23 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
24 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
25 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
26 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
27 |
msgid "Modern Events Calendar"
|
28 |
msgstr "Modern Events Calendar"
|
314 |
msgstr ""
|
315 |
|
316 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
317 |
+
#: app/features/popup/event.php:252
|
318 |
msgid "View Event"
|
319 |
msgstr "Bekijk evenement"
|
320 |
|
336 |
#: app/features/mec/meta_boxes/search_form.php:654
|
337 |
#: app/features/mec/meta_boxes/search_form.php:760
|
338 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
339 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
340 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
341 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
342 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
343 |
#: app/skins/single/modern.php:137
|
347 |
#: app/features/events.php:186 app/features/events.php:3193
|
348 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
349 |
#: app/features/mec/meta_boxes/filter.php:69
|
350 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
351 |
msgid "Categories"
|
352 |
msgstr "Categorieën"
|
353 |
|
436 |
msgstr "Terugkerend evenement"
|
437 |
|
438 |
#: app/features/events.php:336 app/features/events.php:1215
|
439 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
440 |
msgid "Hourly Schedule"
|
441 |
msgstr "Urenschema"
|
442 |
|
469 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
470 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
471 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
472 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
473 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
474 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
475 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
476 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
477 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
478 |
msgid "Organizer"
|
479 |
msgstr "Organisator"
|
480 |
|
481 |
#: app/features/events.php:340 app/features/events.php:1092
|
482 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
483 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
484 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
485 |
#: app/skins/single/modern.php:234
|
486 |
msgid "Cost"
|
502 |
#: app/features/events.php:3769 app/features/fes.php:223
|
503 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
504 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
505 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
506 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
507 |
msgid "Name"
|
508 |
msgstr "Naam"
|
509 |
|
515 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
516 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
517 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
518 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
519 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
520 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
521 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
522 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
523 |
#: app/skins/single/modern.php:62
|
533 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
534 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
535 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
536 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
537 |
#: app/features/mec/meta_boxes/display_options.php:278
|
538 |
#: app/features/mec/meta_boxes/display_options.php:517
|
539 |
#: app/features/mec/meta_boxes/display_options.php:623
|
557 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
558 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
559 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
560 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
561 |
msgid "End Date"
|
562 |
msgstr "Einddatum"
|
563 |
|
564 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
565 |
+
#: app/features/popup/event.php:109
|
566 |
#, fuzzy
|
567 |
#| msgid "All Day Event"
|
568 |
msgid "All-day Event"
|
602 |
#: app/features/events.php:2151 app/features/events.php:2166
|
603 |
#: app/features/events.php:2196 app/features/events.php:2209
|
604 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
605 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
606 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
607 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
608 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
666 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
667 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
668 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
669 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
670 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
671 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
672 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
673 |
#: app/skins/single/modern.php:160
|
692 |
msgstr "Terugkerend"
|
693 |
|
694 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
695 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
696 |
#: app/skins/full_calendar/tpl.php:121
|
697 |
msgid "Daily"
|
698 |
msgstr "Dagelijks"
|
717 |
msgstr "Wekelijks"
|
718 |
|
719 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
720 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
721 |
#: app/skins/full_calendar/tpl.php:119
|
722 |
msgid "Monthly"
|
723 |
msgstr "Maandelijks"
|
724 |
|
725 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
726 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
727 |
#: app/skins/full_calendar/tpl.php:118
|
728 |
msgid "Yearly"
|
729 |
msgstr "Jaarlijks"
|
859 |
#: app/features/events.php:1088 app/features/events.php:3431
|
860 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
861 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
862 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
863 |
#: app/widgets/single.php:103
|
864 |
msgid "Event Cost"
|
865 |
msgstr "Evenements kosten"
|
877 |
#: app/features/events.php:1124 app/features/events.php:2330
|
878 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
879 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
880 |
+
#: app/modules/booking/steps/tickets.php:36
|
881 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
882 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
883 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
884 |
msgid "Date"
|
963 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
964 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
965 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
966 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
967 |
#: app/modules/speakers/details.php:18
|
968 |
msgid "Speakers"
|
969 |
msgstr ""
|
980 |
msgstr "Evenement locatie"
|
981 |
|
982 |
#: app/features/events.php:1408 app/features/events.php:1414
|
983 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
984 |
#, fuzzy
|
985 |
msgid "Event Link"
|
986 |
msgstr "Evenement locatie"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1008 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
1009 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
1010 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1011 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1012 |
#: app/widgets/single.php:107
|
1047 |
msgstr "Maximum aantal boekingen"
|
1048 |
|
1049 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1050 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
1051 |
+
#: app/modules/booking/steps/tickets.php:64
|
1052 |
msgid "Tickets"
|
1053 |
msgstr "Tickets"
|
1054 |
|
1076 |
|
1077 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1078 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1079 |
+
#: app/modules/booking/steps/tickets.php:64
|
1080 |
#: app/skins/available_spot/tpl.php:142
|
1081 |
msgid "Unlimited"
|
1082 |
msgstr "Onbeperkt"
|
1243 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1244 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1245 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1246 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1247 |
msgid "Label"
|
1248 |
msgstr "Label"
|
1249 |
|
1467 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1468 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1469 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1470 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1471 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1472 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1473 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1474 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1482 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1483 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1484 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1485 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1486 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1487 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1488 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1489 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1490 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1491 |
#: app/skins/single/modern.php:113
|
1527 |
|
1528 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1529 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1530 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1531 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1532 |
msgid "ID"
|
1533 |
msgstr "ID"
|
1549 |
|
1550 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1551 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1552 |
+
#: app/libraries/main.php:5666
|
1553 |
msgid "Ticket"
|
1554 |
msgstr "Ticket"
|
1555 |
|
1757 |
msgstr ""
|
1758 |
|
1759 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1760 |
+
#: app/features/popup/event.php:183
|
1761 |
msgid "eg. John Smith"
|
1762 |
msgstr "bijv. John Smith"
|
1763 |
|
1781 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1782 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1783 |
#: app/features/mec/meta_boxes/filter.php:72
|
1784 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1785 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1786 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1787 |
#: app/skins/single/modern.php:249
|
1788 |
msgid "Labels"
|
2530 |
msgstr "Uitgelichte afbeelding"
|
2531 |
|
2532 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2533 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2534 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2535 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2536 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2548 |
msgid "You can show featured and canceled events by a different style!"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2552 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2553 |
+
#: app/modules/booking/steps/tickets.php:62
|
2554 |
msgid "Count"
|
2555 |
msgstr "Aantal keer gebruikt"
|
2556 |
|
2557 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2558 |
#: app/features/organizers.php:207
|
2559 |
msgid "Slug"
|
2560 |
msgstr "Slug"
|
2561 |
|
2562 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2563 |
#, php-format
|
2564 |
msgid "Event %s"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2568 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2569 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2570 |
msgid "Locations"
|
2571 |
msgstr "Locaties"
|
2572 |
|
2573 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2574 |
+
#: app/features/locations.php:262
|
2575 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2576 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2577 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2586 |
msgid "Address"
|
2587 |
msgstr "Adres"
|
2588 |
|
2589 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2590 |
msgid "Enter the location address"
|
2591 |
msgstr "Voer de locatie adres in"
|
2592 |
|
2593 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2594 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2595 |
msgid "Latitude"
|
2596 |
msgstr "Latitude"
|
2597 |
|
2598 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2599 |
msgid "Geo latitude (Optional)"
|
2600 |
msgstr "Geo latitude (Optioneel)"
|
2601 |
|
2602 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2603 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2604 |
msgid "Longitude"
|
2605 |
msgstr "Longitude"
|
2606 |
|
2607 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2608 |
msgid "Geo longitude (Optional)"
|
2609 |
msgstr "Geo longitude (Optioneel)"
|
2610 |
|
2611 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2612 |
+
#: app/features/locations.php:372
|
2613 |
#, fuzzy
|
2614 |
#| msgid "Locations"
|
2615 |
msgid "Location Website"
|
2616 |
msgstr "Locaties"
|
2617 |
|
2618 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2619 |
#, fuzzy
|
2620 |
#| msgid "Geo latitude (Optional)"
|
2621 |
msgid "Location Website (Optional)"
|
2622 |
msgstr "Geo latitude (Optioneel)"
|
2623 |
|
2624 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2625 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2626 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2627 |
msgid "Thumbnail"
|
2628 |
msgstr "Thumbnail"
|
2629 |
|
2630 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2631 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2632 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2633 |
msgid "Upload/Add image"
|
2634 |
msgstr "Upload/toevoegen afbeelding"
|
2635 |
|
2636 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2637 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2638 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2639 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2640 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2641 |
msgid "Remove image"
|
2642 |
msgstr "Verwijder afbeelding"
|
2643 |
|
2644 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2645 |
msgid "Hide location"
|
2646 |
msgstr "Verberg locatie"
|
2647 |
|
2648 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2649 |
msgid "Insert a new location"
|
2650 |
msgstr "Voeg een nieuwe locatie in"
|
2651 |
|
2652 |
+
#: app/features/locations.php:334
|
2653 |
msgid "Choose one of saved locations or insert new one below."
|
2654 |
msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
|
2655 |
|
2656 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2657 |
msgid "Location Name"
|
2658 |
msgstr "Locatie naam"
|
2659 |
|
2660 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2661 |
msgid "eg. City Hall"
|
2662 |
msgstr "bijv. Gemeentehuis"
|
2663 |
|
2664 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2665 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2666 |
msgid "Event Location"
|
2667 |
msgstr "Evenement locatie"
|
2668 |
|
2669 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2670 |
msgid "eg. City hall, Manhattan, New York"
|
2671 |
msgstr "bijv. Gemeentehuis, Amsterdam, Noord-Holland"
|
2672 |
|
2673 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2674 |
#, fuzzy
|
2675 |
#| msgid "Longitude"
|
2676 |
msgid "Latitude/Longitude"
|
2677 |
msgstr "Longitude"
|
2678 |
|
2679 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2680 |
msgid ""
|
2681 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2682 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2685 |
"the location on the map to find lat long coordinates."
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2689 |
msgid "Get Latitude and Longitude"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2693 |
+
#: app/features/popup/event.php:202
|
2694 |
msgid "Choose image"
|
2695 |
msgstr "Kies afbeelding"
|
2696 |
|
2697 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2698 |
msgid "Don't show map in single event page"
|
2699 |
msgstr "Verberg de map op de pagina van het evenement"
|
2700 |
|
2701 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2702 |
#, fuzzy
|
2703 |
#| msgid "Search Locations"
|
2704 |
msgid "Other Locations"
|
2705 |
msgstr "Zoek locaties"
|
2706 |
|
2707 |
+
#: app/features/locations.php:398
|
2708 |
msgid ""
|
2709 |
"You can select extra locations in addition to main location if you like."
|
2710 |
msgstr ""
|
2781 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2782 |
#: app/features/mec/meta_boxes/filter.php:71
|
2783 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2784 |
+
#: app/libraries/main.php:5637
|
2785 |
msgid "Organizers"
|
2786 |
msgstr "Organisatoren"
|
2787 |
|
2822 |
msgid "MEC - Go Pro"
|
2823 |
msgstr "Support"
|
2824 |
|
2825 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2826 |
#: app/features/mec/go-pro.php:9
|
2827 |
msgid "Go Pro"
|
2828 |
msgstr ""
|
2880 |
msgid "Modal Popup"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2884 |
msgid "Total Bookings"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2888 |
#, fuzzy
|
2889 |
#| msgid "Modern Events Calendar"
|
2890 |
msgid "Modern Events Calendar (Lite)"
|
2891 |
msgstr "Modern Events Calendar"
|
2892 |
|
2893 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2894 |
#: app/features/mec/settings.php:428
|
2895 |
msgid "Upcoming Events"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: app/features/mec.php:1201
|
2899 |
#, fuzzy
|
2900 |
#| msgid "Update Label"
|
2901 |
msgid "News & Updates"
|
2902 |
msgstr "Update label"
|
2903 |
|
2904 |
+
#: app/features/mec.php:1214
|
2905 |
msgid "Blog"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: app/features/mec.php:1214
|
2909 |
msgid "Help"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: app/features/mec.php:1260
|
2913 |
msgid "This Month"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: app/features/mec.php:1266
|
2917 |
msgid "Last Month"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: app/features/mec.php:1272
|
2921 |
msgid "This Year"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: app/features/mec.php:1278
|
2925 |
msgid "Last Year"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: app/features/mec.php:1290
|
2929 |
msgid "Bar"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: app/features/mec.php:1291
|
2933 |
msgid "Line"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: app/features/mec.php:1293
|
2937 |
msgid "Filter"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: app/features/mec.php:1309
|
2941 |
#, php-format
|
2942 |
msgid "Total Sells (%s)"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
+
#: app/features/mec.php:1337
|
2946 |
#, fuzzy
|
2947 |
#| msgid "Modern Events Calendar"
|
2948 |
msgid "Print Calendar"
|
2949 |
msgstr "Modern Events Calendar"
|
2950 |
|
2951 |
+
#: app/features/mec.php:1352
|
2952 |
#, fuzzy
|
2953 |
msgid "Display Events"
|
2954 |
msgstr "Hele dag"
|
3350 |
#: app/features/mec/notifications.php:923
|
3351 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3352 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3353 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3354 |
msgid "Verified"
|
3355 |
msgstr "Geverifieerd"
|
3356 |
|
4528 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4529 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4530 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4531 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4532 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4533 |
msgid "Speaker"
|
4534 |
msgstr ""
|
4535 |
|
4545 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4546 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4547 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4548 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4549 |
#, fuzzy
|
4550 |
#| msgid "Tags"
|
4551 |
msgid "Tag"
|
5348 |
"nieuwe boeking is ontvangen."
|
5349 |
|
5350 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5351 |
+
#: app/libraries/notifications.php:587
|
5352 |
msgid "Booking Reminder"
|
5353 |
msgstr ""
|
5354 |
|
5376 |
msgid "Please, insert comma to separate reminder days."
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5380 |
#: app/libraries/main.php:584
|
5381 |
msgid "New Event"
|
5382 |
msgstr "Nieuw evenement"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5607 |
+
#: app/libraries/main.php:5644
|
5608 |
msgid "Weekdays"
|
5609 |
msgstr ""
|
5610 |
|
6331 |
msgstr ""
|
6332 |
|
6333 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6334 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
6335 |
#, fuzzy
|
6336 |
#| msgid "featured event"
|
6337 |
msgid "Related Events"
|
6975 |
msgstr "Voer organisator email adres in."
|
6976 |
|
6977 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
6978 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
6979 |
msgid "Link to organizer page"
|
6980 |
msgstr "Link naar organisator pagina"
|
6981 |
|
6994 |
msgid "Event Main %s"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
6998 |
msgid "Hide organizer"
|
6999 |
msgstr "Verberg organisator"
|
7000 |
|
7001 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
7002 |
msgid "Insert a new organizer"
|
7003 |
msgstr "Voeg nieuwe organisator toe"
|
7004 |
|
7005 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
7006 |
msgid "Choose one of saved organizers or insert new one below."
|
7007 |
msgstr ""
|
7008 |
"Kies één van de bewaarde organisatoren of voeg een nieuwe organisator toe."
|
7009 |
|
7010 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
7011 |
msgid "Phone number."
|
7012 |
msgstr ""
|
7013 |
|
7014 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
7015 |
msgid "eg. +1 (234) 5678"
|
7016 |
msgstr "bijv. +31 (0) 612345678"
|
7017 |
|
7018 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
7019 |
msgid "Email address."
|
7020 |
msgstr ""
|
7021 |
|
7022 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
7023 |
msgid "eg. john@smith.com"
|
7024 |
msgstr "bijv. john@smith.com"
|
7025 |
|
7026 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
7027 |
msgid "eg. https://webnus.net"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
7031 |
+
#: app/skins/single.php:1152
|
7032 |
msgid "Other Organizers"
|
7033 |
msgstr ""
|
7034 |
|
7053 |
msgid "Event name is required"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7057 |
#, fuzzy
|
7058 |
#| msgid "Choose one of saved locations or insert new one below."
|
7059 |
msgid "Choose one of saved locations or insert new one."
|
7060 |
msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
|
7061 |
|
7062 |
+
#: app/features/popup/event.php:130
|
7063 |
#, fuzzy
|
7064 |
#| msgid "Add New Location"
|
7065 |
msgid "Add Location"
|
7066 |
msgstr "Nieuwe locatie toevoegen"
|
7067 |
|
7068 |
+
#: app/features/popup/event.php:177
|
7069 |
#, fuzzy
|
7070 |
#| msgid "Add New Organizer"
|
7071 |
msgid "Add Organizer"
|
7072 |
msgstr "Nieuwe organisator toevoegen"
|
7073 |
|
7074 |
+
#: app/features/popup/event.php:217
|
7075 |
#, fuzzy
|
7076 |
#| msgid "Categories"
|
7077 |
msgid "All Categories"
|
7078 |
msgstr "Categorieën"
|
7079 |
|
7080 |
+
#: app/features/popup/event.php:218
|
7081 |
msgid "Most Used"
|
7082 |
msgstr ""
|
7083 |
|
7084 |
+
#: app/features/popup/event.php:229
|
7085 |
#, fuzzy
|
7086 |
#| msgid "Add New Label"
|
7087 |
msgid "Add New Category"
|
7088 |
msgstr "Nieuwe label toevoegen"
|
7089 |
|
7090 |
+
#: app/features/popup/event.php:240
|
7091 |
#, fuzzy
|
7092 |
#| msgid "Featured Image"
|
7093 |
msgid "Set Featured Image"
|
7094 |
msgstr "Uitgelichte afbeelding"
|
7095 |
|
7096 |
+
#: app/features/popup/event.php:250
|
7097 |
msgid "Your Event Has Been Created."
|
7098 |
msgstr ""
|
7099 |
|
7100 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
7101 |
msgid "Prev"
|
7102 |
msgstr ""
|
7103 |
|
7104 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
7105 |
#: app/modules/booking/steps/form.php:188
|
7106 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
7107 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7108 |
msgid "Next"
|
7109 |
msgstr "Volgende"
|
7345 |
msgid "No search result."
|
7346 |
msgstr ""
|
7347 |
|
7348 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
7349 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
7350 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7351 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7352 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
7353 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7354 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7355 |
#, fuzzy
|
7445 |
msgid "%s Price"
|
7446 |
msgstr ""
|
7447 |
|
7448 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
7449 |
msgid "Discount"
|
7450 |
msgstr "Korting"
|
7451 |
|
7452 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
7453 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
7454 |
msgid "Download Invoice"
|
7455 |
msgstr ""
|
7456 |
|
7473 |
msgid "Upgrade"
|
7474 |
msgstr ""
|
7475 |
|
7476 |
+
#: app/libraries/factory.php:369
|
7477 |
msgid "day"
|
7478 |
msgstr "dag"
|
7479 |
|
7480 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
7481 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7482 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7483 |
msgid "days"
|
7484 |
msgstr "dagen"
|
7485 |
|
7486 |
+
#: app/libraries/factory.php:371
|
7487 |
msgid "hour"
|
7488 |
msgstr "uur"
|
7489 |
|
7490 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
7491 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7492 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7493 |
msgid "hours"
|
7494 |
msgstr "uren"
|
7495 |
|
7496 |
+
#: app/libraries/factory.php:373
|
7497 |
msgid "minute"
|
7498 |
msgstr "minuut"
|
7499 |
|
7500 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7501 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7502 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7503 |
msgid "minutes"
|
7504 |
msgstr "minuten"
|
7505 |
|
7506 |
+
#: app/libraries/factory.php:375
|
7507 |
msgid "second"
|
7508 |
msgstr "seconde"
|
7509 |
|
7510 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7511 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7512 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7513 |
msgid "seconds"
|
7514 |
msgstr "secondes"
|
7515 |
|
7516 |
+
#: app/libraries/factory.php:428
|
7517 |
msgid "MEC Single Sidebar"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
+
#: app/libraries/factory.php:429
|
7521 |
msgid "Custom sidebar for single and modal page of MEC."
|
7522 |
msgstr ""
|
7523 |
|
7584 |
msgid "Timeline View"
|
7585 |
msgstr "Dagweergave"
|
7586 |
|
7587 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7588 |
msgid "SU"
|
7589 |
msgstr "ZO"
|
7590 |
|
7591 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7592 |
msgid "MO"
|
7593 |
msgstr "MA"
|
7594 |
|
7595 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7596 |
msgid "TU"
|
7597 |
msgstr "DI"
|
7598 |
|
7599 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7600 |
msgid "WE"
|
7601 |
msgstr "WO"
|
7602 |
|
7603 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7604 |
msgid "TH"
|
7605 |
msgstr "DO"
|
7606 |
|
7607 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7608 |
msgid "FR"
|
7609 |
msgstr "VR"
|
7610 |
|
7611 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7612 |
msgid "SA"
|
7613 |
msgstr "ZA"
|
7614 |
|
7943 |
msgid "Free"
|
7944 |
msgstr "Gratis"
|
7945 |
|
7946 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
7947 |
#, fuzzy
|
7948 |
#| msgid "M.E. Calendar"
|
7949 |
msgid "M.E. Calender"
|
7950 |
msgstr "M.E. Calendar"
|
7951 |
|
7952 |
+
#: app/libraries/main.php:4105
|
7953 |
#, php-format
|
7954 |
msgid "Copy of %s"
|
7955 |
msgstr ""
|
7956 |
|
7957 |
+
#: app/libraries/main.php:4923
|
7958 |
msgid "Booked an event."
|
7959 |
msgstr ""
|
7960 |
|
7961 |
+
#: app/libraries/main.php:4964
|
7962 |
#, php-format
|
7963 |
msgid "%s booked %s event."
|
7964 |
msgstr ""
|
7965 |
|
7966 |
+
#: app/libraries/main.php:5629
|
7967 |
msgid "Taxonomies"
|
7968 |
msgstr ""
|
7969 |
|
7970 |
+
#: app/libraries/main.php:5631
|
7971 |
msgid "Category Plural Label"
|
7972 |
msgstr ""
|
7973 |
|
7974 |
+
#: app/libraries/main.php:5632
|
7975 |
msgid "Category Singular Label"
|
7976 |
msgstr ""
|
7977 |
|
7978 |
+
#: app/libraries/main.php:5633
|
7979 |
msgid "Label Plural Label"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
+
#: app/libraries/main.php:5634
|
7983 |
msgid "Label Singular Label"
|
7984 |
msgstr ""
|
7985 |
|
7986 |
+
#: app/libraries/main.php:5634
|
7987 |
msgid "label"
|
7988 |
msgstr ""
|
7989 |
|
7990 |
+
#: app/libraries/main.php:5635
|
7991 |
msgid "Location Plural Label"
|
7992 |
msgstr ""
|
7993 |
|
7994 |
+
#: app/libraries/main.php:5636
|
7995 |
msgid "Location Singular Label"
|
7996 |
msgstr ""
|
7997 |
|
7998 |
+
#: app/libraries/main.php:5637
|
7999 |
msgid "Organizer Plural Label"
|
8000 |
msgstr ""
|
8001 |
|
8002 |
+
#: app/libraries/main.php:5638
|
8003 |
msgid "Organizer Singular Label"
|
8004 |
msgstr ""
|
8005 |
|
8006 |
+
#: app/libraries/main.php:5639
|
8007 |
#, fuzzy
|
8008 |
#| msgid "Search Labels"
|
8009 |
msgid "Speaker Plural Label"
|
8010 |
msgstr "Zoek labels"
|
8011 |
|
8012 |
+
#: app/libraries/main.php:5640
|
8013 |
#, fuzzy
|
8014 |
#| msgid "Popular Labels"
|
8015 |
msgid "Speaker Singular Label"
|
8016 |
msgstr "Populaire labels"
|
8017 |
|
8018 |
+
#: app/libraries/main.php:5646
|
8019 |
msgid "Sunday abbreviation"
|
8020 |
msgstr ""
|
8021 |
|
8022 |
+
#: app/libraries/main.php:5647
|
8023 |
msgid "Monday abbreviation"
|
8024 |
msgstr ""
|
8025 |
|
8026 |
+
#: app/libraries/main.php:5648
|
8027 |
msgid "Tuesday abbreviation"
|
8028 |
msgstr ""
|
8029 |
|
8030 |
+
#: app/libraries/main.php:5649
|
8031 |
msgid "Wednesday abbreviation"
|
8032 |
msgstr ""
|
8033 |
|
8034 |
+
#: app/libraries/main.php:5650
|
8035 |
msgid "Thursday abbreviation"
|
8036 |
msgstr ""
|
8037 |
|
8038 |
+
#: app/libraries/main.php:5651
|
8039 |
msgid "Friday abbreviation"
|
8040 |
msgstr ""
|
8041 |
|
8042 |
+
#: app/libraries/main.php:5652
|
8043 |
msgid "Saturday abbreviation"
|
8044 |
msgstr ""
|
8045 |
|
8046 |
+
#: app/libraries/main.php:5656
|
8047 |
msgid "Others"
|
8048 |
msgstr ""
|
8049 |
|
8050 |
+
#: app/libraries/main.php:5658
|
8051 |
msgid "Booking Success Message"
|
8052 |
msgstr ""
|
8053 |
|
8054 |
+
#: app/libraries/main.php:5658
|
8055 |
#, fuzzy
|
8056 |
#| msgid ""
|
8057 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
8063 |
"Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
|
8064 |
"nodig zijn, controleer uw email alstublieft."
|
8065 |
|
8066 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
8067 |
msgid "Register Button"
|
8068 |
msgstr ""
|
8069 |
|
8070 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
8071 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8072 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8073 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8074 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8075 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
8076 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
8077 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8078 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8079 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
8085 |
msgid "REGISTER"
|
8086 |
msgstr "REGISTREREN"
|
8087 |
|
8088 |
+
#: app/libraries/main.php:5660
|
8089 |
msgid "View Detail Button"
|
8090 |
msgstr ""
|
8091 |
|
8092 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
8093 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8094 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8095 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8096 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8097 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
8098 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8099 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8100 |
msgid "View Detail"
|
8101 |
msgstr "Bekijk detail"
|
8102 |
|
8103 |
+
#: app/libraries/main.php:5661
|
8104 |
msgid "Event Detail Button"
|
8105 |
msgstr ""
|
8106 |
|
8107 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
8108 |
#, fuzzy
|
8109 |
msgid "Event Detail"
|
8110 |
msgstr "Evenement details"
|
8111 |
|
8112 |
+
#: app/libraries/main.php:5663
|
8113 |
msgid "More Info Link"
|
8114 |
msgstr ""
|
8115 |
|
8116 |
+
#: app/libraries/main.php:5666
|
8117 |
msgid "Ticket (Singular)"
|
8118 |
msgstr ""
|
8119 |
|
8120 |
+
#: app/libraries/main.php:5667
|
8121 |
msgid "Tickets (Plural)"
|
8122 |
msgstr ""
|
8123 |
|
8124 |
+
#: app/libraries/main.php:5754
|
8125 |
msgid "EventON"
|
8126 |
msgstr ""
|
8127 |
|
8128 |
+
#: app/libraries/main.php:5755
|
8129 |
msgid "The Events Calendar"
|
8130 |
msgstr ""
|
8131 |
|
8132 |
+
#: app/libraries/main.php:5756
|
8133 |
msgid "Events Schedule WP Plugin"
|
8134 |
msgstr ""
|
8135 |
|
8136 |
+
#: app/libraries/main.php:5757
|
8137 |
msgid "Calendarize It"
|
8138 |
msgstr ""
|
8139 |
|
8140 |
+
#: app/libraries/main.php:5758
|
8141 |
#, fuzzy
|
8142 |
msgid "Event Espresso"
|
8143 |
msgstr "Zoek locaties"
|
8144 |
|
8145 |
+
#: app/libraries/main.php:5759
|
8146 |
#, fuzzy
|
8147 |
#| msgid "Event Repeating"
|
8148 |
msgid "Events Manager (Recurring)"
|
8149 |
msgstr "Terugkerend evenement"
|
8150 |
|
8151 |
+
#: app/libraries/main.php:5760
|
8152 |
#, fuzzy
|
8153 |
#| msgid "Modern Events Calendar"
|
8154 |
msgid "Events Manager (Single)"
|
8155 |
msgstr "Modern Events Calendar"
|
8156 |
|
8157 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
8158 |
msgid "Confirmed"
|
8159 |
msgstr "Bevestigd"
|
8160 |
|
8161 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
8162 |
msgid "Rejected"
|
8163 |
msgstr "Afgewezen"
|
8164 |
|
8165 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
8166 |
msgid "Pending"
|
8167 |
msgstr "In afwachting"
|
8168 |
|
8169 |
+
#: app/libraries/main.php:5882
|
8170 |
msgid "Waiting"
|
8171 |
msgstr "In afwachting"
|
8172 |
|
8173 |
+
#: app/libraries/main.php:5925
|
8174 |
msgid "Sun"
|
8175 |
msgstr ""
|
8176 |
|
8177 |
+
#: app/libraries/main.php:5925
|
8178 |
#, fuzzy
|
8179 |
#| msgid "Modern"
|
8180 |
msgid "Mon"
|
8181 |
msgstr "Modern"
|
8182 |
|
8183 |
+
#: app/libraries/main.php:5925
|
8184 |
#, fuzzy
|
8185 |
#| msgid "Tel"
|
8186 |
msgid "Tue"
|
8187 |
msgstr "Tel"
|
8188 |
|
8189 |
+
#: app/libraries/main.php:5925
|
8190 |
msgid "Wed"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
+
#: app/libraries/main.php:5925
|
8194 |
msgid "Thu"
|
8195 |
msgstr ""
|
8196 |
|
8197 |
+
#: app/libraries/main.php:5925
|
8198 |
msgid "Fri"
|
8199 |
msgstr ""
|
8200 |
|
8201 |
+
#: app/libraries/main.php:5925
|
8202 |
msgid "Sat"
|
8203 |
msgstr ""
|
8204 |
|
8205 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
8206 |
#: app/libraries/render.php:432
|
8207 |
msgid "Skin controller does not exist."
|
8208 |
msgstr "Skin controller bestaat niet."
|
8209 |
|
8210 |
+
#: app/libraries/main.php:6302
|
8211 |
msgid "Sold Out"
|
8212 |
msgstr ""
|
8213 |
|
8214 |
+
#: app/libraries/main.php:6310
|
8215 |
#, fuzzy
|
8216 |
#| msgid "Ticket"
|
8217 |
msgid "Last Few Tickets"
|
8218 |
msgstr "Ticket"
|
8219 |
|
8220 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
8221 |
#, fuzzy
|
8222 |
#| msgid "hours"
|
8223 |
msgid "Hours"
|
8224 |
msgstr "uren"
|
8225 |
|
8226 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
8227 |
#, fuzzy
|
8228 |
#| msgid "minutes"
|
8229 |
msgid "Minutes"
|
8230 |
msgstr "minuten"
|
8231 |
|
8232 |
+
#: app/libraries/main.php:6652
|
8233 |
msgid "AM / PM"
|
8234 |
msgstr ""
|
8235 |
|
8236 |
+
#: app/libraries/main.php:6653
|
8237 |
+
msgid "AM"
|
8238 |
+
msgstr "AM"
|
8239 |
+
|
8240 |
+
#: app/libraries/main.php:6654
|
8241 |
+
msgid "PM"
|
8242 |
+
msgstr "PM"
|
8243 |
+
|
8244 |
+
#: app/libraries/main.php:6662
|
8245 |
msgid "Ongoing..."
|
8246 |
msgstr ""
|
8247 |
|
8248 |
+
#: app/libraries/main.php:6663
|
8249 |
msgid "Expired!"
|
8250 |
msgstr ""
|
8251 |
|
8253 |
msgid "Please verify your email."
|
8254 |
msgstr "Controleer uw email."
|
8255 |
|
8256 |
+
#: app/libraries/notifications.php:158
|
8257 |
msgid "Your booking is received."
|
8258 |
msgstr ""
|
8259 |
|
8260 |
+
#: app/libraries/notifications.php:268
|
8261 |
msgid "Your booking is confirmed."
|
8262 |
msgstr "Uw boeking is bevestigd."
|
8263 |
|
8264 |
+
#: app/libraries/notifications.php:425
|
8265 |
#, fuzzy
|
8266 |
#| msgid "Your booking cannot be canceled."
|
8267 |
msgid "booking canceled."
|
8268 |
msgstr "Uw boeking kan niet worden geannuleerd."
|
8269 |
|
8270 |
+
#: app/libraries/notifications.php:503
|
8271 |
msgid "A new booking is received."
|
8272 |
msgstr "Een nieuwe boeking ontvangen."
|
8273 |
|
8274 |
+
#: app/libraries/notifications.php:707
|
8275 |
msgid "A new event is added."
|
8276 |
msgstr "Een nieuw evenement is toegevoegd."
|
8277 |
|
8278 |
+
#: app/libraries/notifications.php:779
|
8279 |
#, fuzzy
|
8280 |
#| msgid "The event published."
|
8281 |
msgid "Your event is published."
|
8282 |
msgstr "Het evenement gepubliceerd."
|
8283 |
|
8284 |
+
#: app/libraries/notifications.php:912
|
8285 |
#, php-format
|
8286 |
msgid "%s to %s"
|
8287 |
msgstr "%s tot %s"
|
8288 |
|
8289 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
8290 |
+
#: app/libraries/notifications.php:1060
|
8291 |
msgid "to"
|
8292 |
msgstr ""
|
8293 |
|
8294 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
8295 |
msgid "+ Add to Google Calendar"
|
8296 |
msgstr "+ Aan Google Kalender toevoegen"
|
8297 |
|
8298 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
8299 |
msgid "+ iCal export"
|
8300 |
msgstr "+ iCal export"
|
8301 |
|
8302 |
+
#: app/libraries/notifications.php:1139
|
8303 |
msgid "Yes"
|
8304 |
msgstr ""
|
8305 |
|
8306 |
+
#: app/libraries/notifications.php:1139
|
8307 |
msgid "No"
|
8308 |
msgstr ""
|
8309 |
|
8310 |
+
#: app/libraries/skins.php:1069
|
8311 |
msgid "Select"
|
8312 |
msgstr ""
|
8313 |
|
8314 |
+
#: app/modules/attendees-list/details.php:39
|
8315 |
msgid "Event Attendees"
|
8316 |
msgstr ""
|
8317 |
|
8318 |
+
#: app/modules/attendees-list/details.php:41
|
8319 |
msgid "No attendee found! Be the first one to book!"
|
8320 |
msgstr ""
|
8321 |
|
8322 |
+
#: app/modules/attendees-list/details.php:62
|
8323 |
#, fuzzy
|
8324 |
#| msgid "Tickets"
|
8325 |
msgid "tickets"
|
8326 |
msgstr "Tickets"
|
8327 |
|
8328 |
+
#: app/modules/attendees-list/details.php:92
|
8329 |
+
#, fuzzy, php-format
|
8330 |
+
#| msgid "Tickets"
|
8331 |
+
msgid "%s ticket"
|
8332 |
+
msgid_plural "%s tickets"
|
8333 |
+
msgstr[0] "Tickets"
|
8334 |
+
msgstr[1] "Tickets"
|
8335 |
+
|
8336 |
#: app/modules/booking/steps/checkout.php:37
|
8337 |
msgid "Checkout"
|
8338 |
msgstr "Afrekenen"
|
8384 |
msgid "Fill other attendees information like the first form."
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: app/modules/booking/steps/tickets.php:32
|
8388 |
msgid "Book Event"
|
8389 |
msgstr "Evenement boeken"
|
8390 |
|
8391 |
+
#: app/modules/booking/steps/tickets.php:59
|
8392 |
#, fuzzy
|
8393 |
#| msgid "Ticket Name"
|
8394 |
msgid "1 Ticket selected."
|
8395 |
msgstr "Ticket naam"
|
8396 |
|
8397 |
+
#: app/modules/booking/steps/tickets.php:64
|
8398 |
#, php-format
|
8399 |
msgid "Available %s: <span>%s</span>"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
+
#: app/modules/booking/steps/tickets.php:69
|
8403 |
#, php-format
|
8404 |
msgid "The %s ticket sales has stopped!"
|
8405 |
msgstr ""
|
8406 |
|
8407 |
+
#: app/modules/booking/steps/tickets.php:70
|
8408 |
#, php-format
|
8409 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8410 |
msgstr ""
|
8425 |
msgid "Get Directions"
|
8426 |
msgstr ""
|
8427 |
|
8428 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
8429 |
msgid "Share this event"
|
8430 |
msgstr "Deel dit evenement"
|
8431 |
|
8476 |
msgid "Go to occurrence page"
|
8477 |
msgstr ""
|
8478 |
|
8479 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
8480 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8481 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8482 |
msgid "Time"
|
8613 |
msgid "No Events"
|
8614 |
msgstr "Geen evenementen"
|
8615 |
|
8616 |
+
#: app/skins/single.php:393
|
8617 |
msgid "Home"
|
8618 |
msgstr ""
|
8619 |
|
8620 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
8621 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8622 |
#: app/skins/single/modern.php:292
|
8623 |
msgid "Sold out!"
|
8624 |
msgstr ""
|
8625 |
|
8626 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
8627 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8628 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8629 |
#: app/skins/single/modern.php:55
|
8630 |
msgid "Phone"
|
8631 |
msgstr "Telefoon"
|
8632 |
|
8633 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
8634 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8635 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8636 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
8639 |
msgid "Website"
|
8640 |
msgstr "Website"
|
8641 |
|
8642 |
+
#: app/skins/single.php:1261
|
8643 |
#, fuzzy
|
8644 |
msgid "Speakers:"
|
8645 |
msgstr "Zoek locaties"
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2020-06-
|
5 |
-
"PO-Revision-Date: 2020-06-
|
6 |
"Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pl_PL\n"
|
@@ -23,7 +23,7 @@ msgstr ""
|
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
26 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
27 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
28 |
msgid "Modern Events Calendar"
|
29 |
msgstr "Nowoczesny Kalendarz Wydarzeń"
|
@@ -316,7 +316,7 @@ msgid "Edit Event"
|
|
316 |
msgstr ""
|
317 |
|
318 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
319 |
-
#: app/features/popup/event.php:
|
320 |
msgid "View Event"
|
321 |
msgstr "Zobacz wydarzenie"
|
322 |
|
@@ -338,8 +338,8 @@ msgstr "Nie znaleziono wydarzeń w Koszu!"
|
|
338 |
#: app/features/mec/meta_boxes/search_form.php:654
|
339 |
#: app/features/mec/meta_boxes/search_form.php:760
|
340 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
341 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
342 |
-
#: app/libraries/skins.php:
|
343 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
344 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
345 |
#: app/skins/single/modern.php:137
|
@@ -349,7 +349,7 @@ msgstr "Kategoria"
|
|
349 |
#: app/features/events.php:186 app/features/events.php:3193
|
350 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
351 |
#: app/features/mec/meta_boxes/filter.php:69
|
352 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
353 |
msgid "Categories"
|
354 |
msgstr "Kategorie"
|
355 |
|
@@ -438,7 +438,7 @@ msgid "Event Repeating"
|
|
438 |
msgstr "Wydarzenie powtarzalne"
|
439 |
|
440 |
#: app/features/events.php:336 app/features/events.php:1215
|
441 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
442 |
msgid "Hourly Schedule"
|
443 |
msgstr "Harmonogram"
|
444 |
|
@@ -472,18 +472,18 @@ msgstr "Link"
|
|
472 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
473 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
474 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
475 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
476 |
-
#: app/features/popup/event.php:
|
477 |
-
#: app/libraries/main.php:
|
478 |
-
#: app/skins/single.php:
|
479 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
480 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
481 |
msgid "Organizer"
|
482 |
msgstr "Organizator"
|
483 |
|
484 |
#: app/features/events.php:340 app/features/events.php:1092
|
485 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
486 |
-
#: app/skins/single.php:
|
487 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
488 |
#: app/skins/single/modern.php:234
|
489 |
msgid "Cost"
|
@@ -507,8 +507,8 @@ msgstr "Dane gości"
|
|
507 |
#: app/features/events.php:3769 app/features/fes.php:223
|
508 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
509 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
510 |
-
#: app/features/popup/event.php:
|
511 |
-
#: app/libraries/notifications.php:
|
512 |
msgid "Name"
|
513 |
msgstr "Imię"
|
514 |
|
@@ -520,9 +520,9 @@ msgstr "Imię"
|
|
520 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
521 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
522 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
523 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
524 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
525 |
-
#: app/skins/single.php:
|
526 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
527 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
528 |
#: app/skins/single/modern.php:62
|
@@ -538,7 +538,7 @@ msgstr "Data i godzina"
|
|
538 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
539 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
540 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
541 |
-
#: app/features/mec.php:
|
542 |
#: app/features/mec/meta_boxes/display_options.php:278
|
543 |
#: app/features/mec/meta_boxes/display_options.php:517
|
544 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -562,12 +562,12 @@ msgstr "Data rozpoczęcia"
|
|
562 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
563 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
564 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
565 |
-
#: app/features/mec.php:
|
566 |
msgid "End Date"
|
567 |
msgstr "Data zakończenia"
|
568 |
|
569 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
570 |
-
#: app/features/popup/event.php:
|
571 |
#, fuzzy
|
572 |
#| msgid "All Day Event"
|
573 |
msgid "All-day Event"
|
@@ -609,7 +609,7 @@ msgstr ""
|
|
609 |
#: app/features/events.php:2151 app/features/events.php:2166
|
610 |
#: app/features/events.php:2196 app/features/events.php:2209
|
611 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
612 |
-
#: app/features/locations.php:
|
613 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
614 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
615 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -673,8 +673,8 @@ msgstr ""
|
|
673 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
674 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
675 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
676 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
677 |
-
#: app/features/popup/event.php:
|
678 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
679 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
680 |
#: app/skins/single/modern.php:160
|
@@ -698,7 +698,7 @@ msgid "Repeats"
|
|
698 |
msgstr "Powtórzenia"
|
699 |
|
700 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
701 |
-
#: app/features/mec.php:
|
702 |
#: app/skins/full_calendar/tpl.php:121
|
703 |
msgid "Daily"
|
704 |
msgstr "Codziennie"
|
@@ -722,13 +722,13 @@ msgid "Weekly"
|
|
722 |
msgstr "Co tydzień"
|
723 |
|
724 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
725 |
-
#: app/features/mec.php:
|
726 |
#: app/skins/full_calendar/tpl.php:119
|
727 |
msgid "Monthly"
|
728 |
msgstr "Co miesiąc"
|
729 |
|
730 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
731 |
-
#: app/features/mec.php:
|
732 |
#: app/skins/full_calendar/tpl.php:118
|
733 |
msgid "Yearly"
|
734 |
msgstr "Co roku"
|
@@ -866,7 +866,7 @@ msgstr "Kolejne wystąpienie innych wydarzeń"
|
|
866 |
#: app/features/events.php:1088 app/features/events.php:3431
|
867 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
868 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
869 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
870 |
#: app/widgets/single.php:103
|
871 |
msgid "Event Cost"
|
872 |
msgstr "Koszt wydarzenia"
|
@@ -884,8 +884,8 @@ msgstr "Wyklucz pewne dni"
|
|
884 |
#: app/features/events.php:1124 app/features/events.php:2330
|
885 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
886 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
887 |
-
#: app/modules/booking/steps/tickets.php:
|
888 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
889 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
890 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
891 |
msgid "Date"
|
@@ -970,7 +970,7 @@ msgstr "Opis"
|
|
970 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
971 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
972 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
973 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
974 |
#: app/modules/speakers/details.php:18
|
975 |
msgid "Speakers"
|
976 |
msgstr ""
|
@@ -987,7 +987,7 @@ msgid "Event Links"
|
|
987 |
msgstr "Linki wydarzenia"
|
988 |
|
989 |
#: app/features/events.php:1408 app/features/events.php:1414
|
990 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
991 |
msgid "Event Link"
|
992 |
msgstr "Link strony www wydarzenia"
|
993 |
|
@@ -1014,8 +1014,8 @@ msgid "URL Shortener"
|
|
1014 |
msgstr ""
|
1015 |
|
1016 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1017 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
1018 |
-
#: app/skins/single.php:
|
1019 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1020 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1021 |
#: app/widgets/single.php:107
|
@@ -1053,8 +1053,8 @@ msgid "Total User Booking Limits"
|
|
1053 |
msgstr "Limity rezerwacji"
|
1054 |
|
1055 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1056 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
1057 |
-
#: app/modules/booking/steps/tickets.php:
|
1058 |
msgid "Tickets"
|
1059 |
msgstr "Bilety"
|
1060 |
|
@@ -1082,7 +1082,7 @@ msgstr "Limity rezerwacji"
|
|
1082 |
|
1083 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1084 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1085 |
-
#: app/modules/booking/steps/tickets.php:
|
1086 |
#: app/skins/available_spot/tpl.php:142
|
1087 |
msgid "Unlimited"
|
1088 |
msgstr "Nieograniczony"
|
@@ -1252,7 +1252,7 @@ msgstr "Tekst etykiety"
|
|
1252 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1253 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1254 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1255 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1256 |
msgid "Label"
|
1257 |
msgstr "Etykieta"
|
1258 |
|
@@ -1477,8 +1477,8 @@ msgstr "Limit uczestników"
|
|
1477 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1478 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1479 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1480 |
-
#: app/features/locations.php:
|
1481 |
-
#: app/features/locations.php:
|
1482 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1483 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1484 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1492,10 +1492,10 @@ msgstr "Limit uczestników"
|
|
1492 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1493 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1494 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1495 |
-
#: app/features/popup/event.php:
|
1496 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1497 |
-
#: app/libraries/main.php:
|
1498 |
-
#: app/skins/single.php:
|
1499 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1500 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1501 |
#: app/skins/single/modern.php:113
|
@@ -1537,7 +1537,7 @@ msgstr "Duplikuj"
|
|
1537 |
|
1538 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1539 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1540 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1541 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1542 |
msgid "ID"
|
1543 |
msgstr "ID"
|
@@ -1559,7 +1559,7 @@ msgstr "%s Email"
|
|
1559 |
|
1560 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1561 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1562 |
-
#: app/libraries/main.php:
|
1563 |
msgid "Ticket"
|
1564 |
msgstr "Zgłoszenie"
|
1565 |
|
@@ -1770,7 +1770,7 @@ msgid "eg. yourname@gmail.com"
|
|
1770 |
msgstr "np. twojanazwa@gmail.com"
|
1771 |
|
1772 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1773 |
-
#: app/features/popup/event.php:
|
1774 |
msgid "eg. John Smith"
|
1775 |
msgstr "np. Jan Nowak"
|
1776 |
|
@@ -1797,8 +1797,8 @@ msgstr "Usuń obraz"
|
|
1797 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1798 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1799 |
#: app/features/mec/meta_boxes/filter.php:72
|
1800 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1801 |
-
#: app/skins/single.php:
|
1802 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1803 |
#: app/skins/single/modern.php:249
|
1804 |
msgid "Labels"
|
@@ -2609,7 +2609,7 @@ msgid "Featured"
|
|
2609 |
msgstr "Obraz wyróżniający"
|
2610 |
|
2611 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2612 |
-
#: app/libraries/main.php:
|
2613 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2614 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2615 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2627,30 +2627,30 @@ msgstr "Anulowane"
|
|
2627 |
msgid "You can show featured and canceled events by a different style!"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2631 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2632 |
-
#: app/modules/booking/steps/tickets.php:
|
2633 |
msgid "Count"
|
2634 |
msgstr "Liczba"
|
2635 |
|
2636 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2637 |
#: app/features/organizers.php:207
|
2638 |
msgid "Slug"
|
2639 |
msgstr "Upr. nazwa"
|
2640 |
|
2641 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2642 |
#, php-format
|
2643 |
msgid "Event %s"
|
2644 |
msgstr "Wydarzenie %s"
|
2645 |
|
2646 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2647 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2648 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2649 |
msgid "Locations"
|
2650 |
msgstr "Lokalizacje"
|
2651 |
|
2652 |
-
#: app/features/locations.php:
|
2653 |
-
#: app/features/locations.php:
|
2654 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2655 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2656 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2665,97 +2665,97 @@ msgstr "Lokalizacje"
|
|
2665 |
msgid "Address"
|
2666 |
msgstr "Adres"
|
2667 |
|
2668 |
-
#: app/features/locations.php:
|
2669 |
msgid "Enter the location address"
|
2670 |
msgstr "Podaj adres lokalizacji"
|
2671 |
|
2672 |
-
#: app/features/locations.php:
|
2673 |
-
#: app/features/locations.php:
|
2674 |
msgid "Latitude"
|
2675 |
msgstr "Szerokość geograficzna"
|
2676 |
|
2677 |
-
#: app/features/locations.php:
|
2678 |
msgid "Geo latitude (Optional)"
|
2679 |
msgstr "Szerokość geograficzna (opcjonalnie)"
|
2680 |
|
2681 |
-
#: app/features/locations.php:
|
2682 |
-
#: app/features/locations.php:
|
2683 |
msgid "Longitude"
|
2684 |
msgstr "Długość geograficzna"
|
2685 |
|
2686 |
-
#: app/features/locations.php:
|
2687 |
msgid "Geo longitude (Optional)"
|
2688 |
msgstr "Długość geograficzna (opcjonalnie)"
|
2689 |
|
2690 |
-
#: app/features/locations.php:
|
2691 |
-
#: app/features/locations.php:
|
2692 |
#, fuzzy
|
2693 |
#| msgid "Locations"
|
2694 |
msgid "Location Website"
|
2695 |
msgstr "Lokalizacje"
|
2696 |
|
2697 |
-
#: app/features/locations.php:
|
2698 |
#, fuzzy
|
2699 |
#| msgid "Geo latitude (Optional)"
|
2700 |
msgid "Location Website (Optional)"
|
2701 |
msgstr "Szerokość geograficzna (opcjonalnie)"
|
2702 |
|
2703 |
-
#: app/features/locations.php:
|
2704 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2705 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2706 |
msgid "Thumbnail"
|
2707 |
msgstr "Miniatura"
|
2708 |
|
2709 |
-
#: app/features/locations.php:
|
2710 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2711 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2712 |
msgid "Upload/Add image"
|
2713 |
msgstr "Prześlij / Dodaj obraz"
|
2714 |
|
2715 |
-
#: app/features/locations.php:
|
2716 |
-
#: app/features/locations.php:
|
2717 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2718 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2719 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2720 |
msgid "Remove image"
|
2721 |
msgstr "Usuń obraz"
|
2722 |
|
2723 |
-
#: app/features/locations.php:
|
2724 |
msgid "Hide location"
|
2725 |
msgstr "Ukryj lokalizację"
|
2726 |
|
2727 |
-
#: app/features/locations.php:
|
2728 |
msgid "Insert a new location"
|
2729 |
msgstr "Dodaj nową lokalizację"
|
2730 |
|
2731 |
-
#: app/features/locations.php:
|
2732 |
msgid "Choose one of saved locations or insert new one below."
|
2733 |
msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
|
2734 |
|
2735 |
-
#: app/features/locations.php:
|
2736 |
msgid "Location Name"
|
2737 |
msgstr "Nazwa lokalizacji"
|
2738 |
|
2739 |
-
#: app/features/locations.php:
|
2740 |
msgid "eg. City Hall"
|
2741 |
msgstr "np. Ratusz"
|
2742 |
|
2743 |
-
#: app/features/locations.php:
|
2744 |
-
#: app/features/popup/event.php:
|
2745 |
msgid "Event Location"
|
2746 |
msgstr "Miejsce wydarzenia"
|
2747 |
|
2748 |
-
#: app/features/locations.php:
|
2749 |
msgid "eg. City hall, Manhattan, New York"
|
2750 |
msgstr "np. Rynek, 50-996 Wrocław"
|
2751 |
|
2752 |
-
#: app/features/locations.php:
|
2753 |
#, fuzzy
|
2754 |
#| msgid "Longitude"
|
2755 |
msgid "Latitude/Longitude"
|
2756 |
msgstr "Długość geograficzna"
|
2757 |
|
2758 |
-
#: app/features/locations.php:
|
2759 |
msgid ""
|
2760 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2761 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2764,26 +2764,26 @@ msgid ""
|
|
2764 |
"the location on the map to find lat long coordinates."
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: app/features/locations.php:
|
2768 |
msgid "Get Latitude and Longitude"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#: app/features/locations.php:
|
2772 |
-
#: app/features/popup/event.php:
|
2773 |
msgid "Choose image"
|
2774 |
msgstr "Wybierz obraz"
|
2775 |
|
2776 |
-
#: app/features/locations.php:
|
2777 |
msgid "Don't show map in single event page"
|
2778 |
msgstr "Nie pokazuj mapy na stronie wydarzenia"
|
2779 |
|
2780 |
-
#: app/features/locations.php:
|
2781 |
#, fuzzy
|
2782 |
#| msgid "Search Locations"
|
2783 |
msgid "Other Locations"
|
2784 |
msgstr "Szukaj"
|
2785 |
|
2786 |
-
#: app/features/locations.php:
|
2787 |
msgid ""
|
2788 |
"You can select extra locations in addition to main location if you like."
|
2789 |
msgstr ""
|
@@ -2860,7 +2860,7 @@ msgstr "Wsparcie"
|
|
2860 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2861 |
#: app/features/mec/meta_boxes/filter.php:71
|
2862 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2863 |
-
#: app/libraries/main.php:
|
2864 |
msgid "Organizers"
|
2865 |
msgstr "Organizatorzy"
|
2866 |
|
@@ -2901,7 +2901,7 @@ msgstr "Eksport"
|
|
2901 |
msgid "MEC - Go Pro"
|
2902 |
msgstr "Wsparcie"
|
2903 |
|
2904 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2905 |
#: app/features/mec/go-pro.php:9
|
2906 |
msgid "Go Pro"
|
2907 |
msgstr ""
|
@@ -2960,75 +2960,75 @@ msgstr "Osobna karta"
|
|
2960 |
msgid "Modal Popup"
|
2961 |
msgstr "Okno modalne"
|
2962 |
|
2963 |
-
#: app/features/mec.php:
|
2964 |
msgid "Total Bookings"
|
2965 |
msgstr "Rezerwacje"
|
2966 |
|
2967 |
-
#: app/features/mec.php:
|
2968 |
#, fuzzy
|
2969 |
#| msgid "Modern Events Calendar"
|
2970 |
msgid "Modern Events Calendar (Lite)"
|
2971 |
msgstr "Nowoczesny Kalendarz Wydarzeń"
|
2972 |
|
2973 |
-
#: app/features/mec.php:
|
2974 |
#: app/features/mec/settings.php:428
|
2975 |
msgid "Upcoming Events"
|
2976 |
msgstr "Nadchodzące wydarzenia"
|
2977 |
|
2978 |
-
#: app/features/mec.php:
|
2979 |
#, fuzzy
|
2980 |
#| msgid "Update %s"
|
2981 |
msgid "News & Updates"
|
2982 |
msgstr "Zaktualizuj %s"
|
2983 |
|
2984 |
-
#: app/features/mec.php:
|
2985 |
msgid "Blog"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: app/features/mec.php:
|
2989 |
msgid "Help"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: app/features/mec.php:
|
2993 |
msgid "This Month"
|
2994 |
msgstr "Ten miesiąc"
|
2995 |
|
2996 |
-
#: app/features/mec.php:
|
2997 |
msgid "Last Month"
|
2998 |
msgstr "Ostatni miesiąc"
|
2999 |
|
3000 |
-
#: app/features/mec.php:
|
3001 |
msgid "This Year"
|
3002 |
msgstr "W tym roku"
|
3003 |
|
3004 |
-
#: app/features/mec.php:
|
3005 |
msgid "Last Year"
|
3006 |
msgstr "W poprzednim roku"
|
3007 |
|
3008 |
-
#: app/features/mec.php:
|
3009 |
msgid "Bar"
|
3010 |
msgstr "Pasek"
|
3011 |
|
3012 |
-
#: app/features/mec.php:
|
3013 |
msgid "Line"
|
3014 |
msgstr "Linia"
|
3015 |
|
3016 |
-
#: app/features/mec.php:
|
3017 |
msgid "Filter"
|
3018 |
msgstr "Filtr"
|
3019 |
|
3020 |
-
#: app/features/mec.php:
|
3021 |
#, php-format
|
3022 |
msgid "Total Sells (%s)"
|
3023 |
msgstr "Sprzedaż w sumie (%s)"
|
3024 |
|
3025 |
-
#: app/features/mec.php:
|
3026 |
#, fuzzy
|
3027 |
#| msgid "Modern Events Calendar"
|
3028 |
msgid "Print Calendar"
|
3029 |
msgstr "Nowoczesny Kalendarz Wydarzeń"
|
3030 |
|
3031 |
-
#: app/features/mec.php:
|
3032 |
#, fuzzy
|
3033 |
#| msgid "Multiple Day Events"
|
3034 |
msgid "Display Events"
|
@@ -3433,7 +3433,7 @@ msgstr ""
|
|
3433 |
#: app/features/mec/notifications.php:923
|
3434 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3435 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3436 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3437 |
msgid "Verified"
|
3438 |
msgstr "Zweryfikowane"
|
3439 |
|
@@ -4622,8 +4622,8 @@ msgstr "Pokaż formularz wyszukiwania"
|
|
4622 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4623 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4624 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4625 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4626 |
-
#: app/libraries/skins.php:
|
4627 |
msgid "Speaker"
|
4628 |
msgstr ""
|
4629 |
|
@@ -4639,7 +4639,7 @@ msgstr ""
|
|
4639 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4640 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4641 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4642 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4643 |
#, fuzzy
|
4644 |
#| msgid "Tags"
|
4645 |
msgid "Tag"
|
@@ -5450,7 +5450,7 @@ msgid "Sent to admin to notify them that a new booking has been received."
|
|
5450 |
msgstr "Wysyła do administratora email z informacją o nowej rezerwacji."
|
5451 |
|
5452 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5453 |
-
#: app/libraries/notifications.php:
|
5454 |
msgid "Booking Reminder"
|
5455 |
msgstr ""
|
5456 |
|
@@ -5478,7 +5478,7 @@ msgstr ""
|
|
5478 |
msgid "Please, insert comma to separate reminder days."
|
5479 |
msgstr ""
|
5480 |
|
5481 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5482 |
#: app/libraries/main.php:584
|
5483 |
msgid "New Event"
|
5484 |
msgstr "Nowe wydarzenie"
|
@@ -5708,7 +5708,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5708 |
msgstr ""
|
5709 |
|
5710 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5711 |
-
#: app/libraries/main.php:
|
5712 |
msgid "Weekdays"
|
5713 |
msgstr "Dni powszednie"
|
5714 |
|
@@ -6499,7 +6499,7 @@ msgid ""
|
|
6499 |
msgstr "Pokaż wykluczone dni na stronie dodawania / usuwania wydarzenia"
|
6500 |
|
6501 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6502 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
6503 |
#, fuzzy
|
6504 |
#| msgid "featured event"
|
6505 |
msgid "Related Events"
|
@@ -7163,7 +7163,7 @@ msgid "Insert organizer email address."
|
|
7163 |
msgstr "Podaj adres email organizatora."
|
7164 |
|
7165 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7166 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
7167 |
msgid "Link to organizer page"
|
7168 |
msgstr "Link do strony organizatora"
|
7169 |
|
@@ -7181,42 +7181,42 @@ msgstr "Informacje kontaktowe"
|
|
7181 |
msgid "Event Main %s"
|
7182 |
msgstr ""
|
7183 |
|
7184 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
7185 |
msgid "Hide organizer"
|
7186 |
msgstr "Ukryj organizatora"
|
7187 |
|
7188 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
7189 |
msgid "Insert a new organizer"
|
7190 |
msgstr "Utwórz nowego organizatora"
|
7191 |
|
7192 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
7193 |
msgid "Choose one of saved organizers or insert new one below."
|
7194 |
msgstr "Wybierz organizatora z listy lub utwórz nowego."
|
7195 |
|
7196 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
7197 |
msgid "Phone number."
|
7198 |
msgstr "Numer telefonu."
|
7199 |
|
7200 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
7201 |
msgid "eg. +1 (234) 5678"
|
7202 |
msgstr "np. +48 123 456 789"
|
7203 |
|
7204 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
7205 |
msgid "Email address."
|
7206 |
msgstr "Adres email."
|
7207 |
|
7208 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
7209 |
msgid "eg. john@smith.com"
|
7210 |
msgstr "np. email@domena.pl"
|
7211 |
|
7212 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
7213 |
#, fuzzy
|
7214 |
#| msgid "http://webnus.biz"
|
7215 |
msgid "eg. https://webnus.net"
|
7216 |
msgstr "http://webnus.biz"
|
7217 |
|
7218 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
7219 |
-
#: app/skins/single.php:
|
7220 |
msgid "Other Organizers"
|
7221 |
msgstr ""
|
7222 |
|
@@ -7241,67 +7241,57 @@ msgstr "Uwaga"
|
|
7241 |
msgid "Event name is required"
|
7242 |
msgstr ""
|
7243 |
|
7244 |
-
#: app/features/popup/event.php:
|
7245 |
-
#: app/libraries/main.php:6643
|
7246 |
-
msgid "AM"
|
7247 |
-
msgstr "AM"
|
7248 |
-
|
7249 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
7250 |
-
#: app/libraries/main.php:6644
|
7251 |
-
msgid "PM"
|
7252 |
-
msgstr "PM"
|
7253 |
-
|
7254 |
-
#: app/features/popup/event.php:256
|
7255 |
#, fuzzy
|
7256 |
#| msgid "Choose one of saved locations or insert new one below."
|
7257 |
msgid "Choose one of saved locations or insert new one."
|
7258 |
msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
|
7259 |
|
7260 |
-
#: app/features/popup/event.php:
|
7261 |
#, fuzzy
|
7262 |
#| msgid "Add New Location"
|
7263 |
msgid "Add Location"
|
7264 |
msgstr "Dodaj nową lokalizację"
|
7265 |
|
7266 |
-
#: app/features/popup/event.php:
|
7267 |
#, fuzzy
|
7268 |
#| msgid "Add New Organizer"
|
7269 |
msgid "Add Organizer"
|
7270 |
msgstr "Dodaj nowego organizatora"
|
7271 |
|
7272 |
-
#: app/features/popup/event.php:
|
7273 |
#, fuzzy
|
7274 |
#| msgid "Categories"
|
7275 |
msgid "All Categories"
|
7276 |
msgstr "Kategorie"
|
7277 |
|
7278 |
-
#: app/features/popup/event.php:
|
7279 |
msgid "Most Used"
|
7280 |
msgstr ""
|
7281 |
|
7282 |
-
#: app/features/popup/event.php:
|
7283 |
#, fuzzy
|
7284 |
#| msgid "Add New Label"
|
7285 |
msgid "Add New Category"
|
7286 |
msgstr "Dodaj nową etykietę"
|
7287 |
|
7288 |
-
#: app/features/popup/event.php:
|
7289 |
#, fuzzy
|
7290 |
#| msgid "Featured Image"
|
7291 |
msgid "Set Featured Image"
|
7292 |
msgstr "Obraz wyróżniający"
|
7293 |
|
7294 |
-
#: app/features/popup/event.php:
|
7295 |
msgid "Your Event Has Been Created."
|
7296 |
msgstr ""
|
7297 |
|
7298 |
-
#: app/features/popup/event.php:
|
7299 |
msgid "Prev"
|
7300 |
msgstr ""
|
7301 |
|
7302 |
-
#: app/features/popup/event.php:
|
7303 |
#: app/modules/booking/steps/form.php:188
|
7304 |
-
#: app/modules/booking/steps/tickets.php:
|
7305 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7306 |
msgid "Next"
|
7307 |
msgstr "Następny"
|
@@ -7545,11 +7535,11 @@ msgstr "Wyszukaj %s"
|
|
7545 |
msgid "No search result."
|
7546 |
msgstr ""
|
7547 |
|
7548 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7549 |
-
#: app/libraries/notifications.php:
|
7550 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7551 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7552 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
7553 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7554 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7555 |
#, fuzzy
|
@@ -7647,12 +7637,12 @@ msgstr ""
|
|
7647 |
msgid "%s Price"
|
7648 |
msgstr ""
|
7649 |
|
7650 |
-
#: app/libraries/book.php:
|
7651 |
msgid "Discount"
|
7652 |
msgstr "Zniżka"
|
7653 |
|
7654 |
-
#: app/libraries/book.php:
|
7655 |
-
#: app/modules/booking/default.php:
|
7656 |
msgid "Download Invoice"
|
7657 |
msgstr ""
|
7658 |
|
@@ -7675,51 +7665,51 @@ msgctxt "plugin link"
|
|
7675 |
msgid "Upgrade"
|
7676 |
msgstr ""
|
7677 |
|
7678 |
-
#: app/libraries/factory.php:
|
7679 |
msgid "day"
|
7680 |
msgstr "dzień"
|
7681 |
|
7682 |
-
#: app/libraries/factory.php:
|
7683 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7684 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7685 |
msgid "days"
|
7686 |
msgstr "dni"
|
7687 |
|
7688 |
-
#: app/libraries/factory.php:
|
7689 |
msgid "hour"
|
7690 |
msgstr "godzina"
|
7691 |
|
7692 |
-
#: app/libraries/factory.php:
|
7693 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7694 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7695 |
msgid "hours"
|
7696 |
msgstr "godzin"
|
7697 |
|
7698 |
-
#: app/libraries/factory.php:
|
7699 |
msgid "minute"
|
7700 |
msgstr "minuta"
|
7701 |
|
7702 |
-
#: app/libraries/factory.php:
|
7703 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7704 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7705 |
msgid "minutes"
|
7706 |
msgstr "minut"
|
7707 |
|
7708 |
-
#: app/libraries/factory.php:
|
7709 |
msgid "second"
|
7710 |
msgstr "sekunda"
|
7711 |
|
7712 |
-
#: app/libraries/factory.php:
|
7713 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7714 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7715 |
msgid "seconds"
|
7716 |
msgstr "sekund"
|
7717 |
|
7718 |
-
#: app/libraries/factory.php:
|
7719 |
msgid "MEC Single Sidebar"
|
7720 |
msgstr "Pasek boczny wydarzenia"
|
7721 |
|
7722 |
-
#: app/libraries/factory.php:
|
7723 |
msgid "Custom sidebar for single and modal page of MEC."
|
7724 |
msgstr ""
|
7725 |
"Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
|
@@ -7784,31 +7774,31 @@ msgstr "Widok suwaka"
|
|
7784 |
msgid "Timeline View"
|
7785 |
msgstr "Widok suwaka"
|
7786 |
|
7787 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7788 |
msgid "SU"
|
7789 |
msgstr "NIE"
|
7790 |
|
7791 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7792 |
msgid "MO"
|
7793 |
msgstr "PN"
|
7794 |
|
7795 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7796 |
msgid "TU"
|
7797 |
msgstr "WT"
|
7798 |
|
7799 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7800 |
msgid "WE"
|
7801 |
msgstr "ŚR"
|
7802 |
|
7803 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7804 |
msgid "TH"
|
7805 |
msgstr "CZW"
|
7806 |
|
7807 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7808 |
msgid "FR"
|
7809 |
msgstr "PT"
|
7810 |
|
7811 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7812 |
msgid "SA"
|
7813 |
msgstr "SOB"
|
7814 |
|
@@ -8143,115 +8133,115 @@ msgstr "Podaj etykietę dla tej opcji"
|
|
8143 |
msgid "Free"
|
8144 |
msgstr "Darmowy"
|
8145 |
|
8146 |
-
#: app/libraries/main.php:
|
8147 |
#, fuzzy
|
8148 |
#| msgid "M.E. Calendar"
|
8149 |
msgid "M.E. Calender"
|
8150 |
msgstr "Kalendarz"
|
8151 |
|
8152 |
-
#: app/libraries/main.php:
|
8153 |
#, php-format
|
8154 |
msgid "Copy of %s"
|
8155 |
msgstr "Kopia %s"
|
8156 |
|
8157 |
-
#: app/libraries/main.php:
|
8158 |
msgid "Booked an event."
|
8159 |
msgstr "Zarezerwowano wydarzenie."
|
8160 |
|
8161 |
-
#: app/libraries/main.php:
|
8162 |
#, php-format
|
8163 |
msgid "%s booked %s event."
|
8164 |
msgstr "%s zarezerwował %s wydarzenie."
|
8165 |
|
8166 |
-
#: app/libraries/main.php:
|
8167 |
msgid "Taxonomies"
|
8168 |
msgstr "Taksonomie"
|
8169 |
|
8170 |
-
#: app/libraries/main.php:
|
8171 |
msgid "Category Plural Label"
|
8172 |
msgstr "Etykieta dla kategorii - liczba mnoga"
|
8173 |
|
8174 |
-
#: app/libraries/main.php:
|
8175 |
msgid "Category Singular Label"
|
8176 |
msgstr "Etykieta dla kategorii - liczba pojedyncza"
|
8177 |
|
8178 |
-
#: app/libraries/main.php:
|
8179 |
msgid "Label Plural Label"
|
8180 |
msgstr "Etykieta - liczba mnoga"
|
8181 |
|
8182 |
-
#: app/libraries/main.php:
|
8183 |
msgid "Label Singular Label"
|
8184 |
msgstr "Etykieta - liczba pojedyncza"
|
8185 |
|
8186 |
-
#: app/libraries/main.php:
|
8187 |
msgid "label"
|
8188 |
msgstr "etykieta"
|
8189 |
|
8190 |
-
#: app/libraries/main.php:
|
8191 |
msgid "Location Plural Label"
|
8192 |
msgstr "Etykieta dla lokalizacji - wersja mnoga"
|
8193 |
|
8194 |
-
#: app/libraries/main.php:
|
8195 |
msgid "Location Singular Label"
|
8196 |
msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
|
8197 |
|
8198 |
-
#: app/libraries/main.php:
|
8199 |
msgid "Organizer Plural Label"
|
8200 |
msgstr "Etykieta dla organizatora - wersja mnoga"
|
8201 |
|
8202 |
-
#: app/libraries/main.php:
|
8203 |
msgid "Organizer Singular Label"
|
8204 |
msgstr "Etykieta dla organizatora - wersja pojedyncza"
|
8205 |
|
8206 |
-
#: app/libraries/main.php:
|
8207 |
#, fuzzy
|
8208 |
#| msgid "Label Plural Label"
|
8209 |
msgid "Speaker Plural Label"
|
8210 |
msgstr "Etykieta - liczba mnoga"
|
8211 |
|
8212 |
-
#: app/libraries/main.php:
|
8213 |
#, fuzzy
|
8214 |
#| msgid "Label Singular Label"
|
8215 |
msgid "Speaker Singular Label"
|
8216 |
msgstr "Etykieta - liczba pojedyncza"
|
8217 |
|
8218 |
-
#: app/libraries/main.php:
|
8219 |
msgid "Sunday abbreviation"
|
8220 |
msgstr "Niedziela"
|
8221 |
|
8222 |
-
#: app/libraries/main.php:
|
8223 |
msgid "Monday abbreviation"
|
8224 |
msgstr "Poniedziałek"
|
8225 |
|
8226 |
-
#: app/libraries/main.php:
|
8227 |
msgid "Tuesday abbreviation"
|
8228 |
msgstr "Wtorek"
|
8229 |
|
8230 |
-
#: app/libraries/main.php:
|
8231 |
msgid "Wednesday abbreviation"
|
8232 |
msgstr "Środa"
|
8233 |
|
8234 |
-
#: app/libraries/main.php:
|
8235 |
msgid "Thursday abbreviation"
|
8236 |
msgstr "Czwartek"
|
8237 |
|
8238 |
-
#: app/libraries/main.php:
|
8239 |
msgid "Friday abbreviation"
|
8240 |
msgstr "Piątek"
|
8241 |
|
8242 |
-
#: app/libraries/main.php:
|
8243 |
msgid "Saturday abbreviation"
|
8244 |
msgstr "Sobota"
|
8245 |
|
8246 |
-
#: app/libraries/main.php:
|
8247 |
msgid "Others"
|
8248 |
msgstr "Inne"
|
8249 |
|
8250 |
-
#: app/libraries/main.php:
|
8251 |
msgid "Booking Success Message"
|
8252 |
msgstr "Wiadomość zakończenia rezerwacji"
|
8253 |
|
8254 |
-
#: app/libraries/main.php:
|
8255 |
#, fuzzy
|
8256 |
#| msgid ""
|
8257 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -8263,17 +8253,17 @@ msgstr ""
|
|
8263 |
"Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
|
8264 |
"rezerwacji może być konieczna, sprawdź swoją pocztę email."
|
8265 |
|
8266 |
-
#: app/libraries/main.php:
|
8267 |
msgid "Register Button"
|
8268 |
msgstr "Przycisk rejestracji"
|
8269 |
|
8270 |
-
#: app/libraries/main.php:
|
8271 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8272 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8273 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8274 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8275 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
8276 |
-
#: app/skins/single.php:
|
8277 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8278 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8279 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -8285,167 +8275,175 @@ msgstr "Przycisk rejestracji"
|
|
8285 |
msgid "REGISTER"
|
8286 |
msgstr "REJESTRACJA"
|
8287 |
|
8288 |
-
#: app/libraries/main.php:
|
8289 |
msgid "View Detail Button"
|
8290 |
msgstr "Pokaż szczegóły"
|
8291 |
|
8292 |
-
#: app/libraries/main.php:
|
8293 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8294 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8295 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8296 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8297 |
-
#: app/skins/single.php:
|
8298 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8299 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8300 |
msgid "View Detail"
|
8301 |
msgstr "Pokaż szczegóły"
|
8302 |
|
8303 |
-
#: app/libraries/main.php:
|
8304 |
msgid "Event Detail Button"
|
8305 |
msgstr "Szczegóły wydarzenia"
|
8306 |
|
8307 |
-
#: app/libraries/main.php:
|
8308 |
msgid "Event Detail"
|
8309 |
msgstr "Szczegóły wydarzenia"
|
8310 |
|
8311 |
-
#: app/libraries/main.php:
|
8312 |
msgid "More Info Link"
|
8313 |
msgstr "Więcej informacji"
|
8314 |
|
8315 |
-
#: app/libraries/main.php:
|
8316 |
msgid "Ticket (Singular)"
|
8317 |
msgstr ""
|
8318 |
|
8319 |
-
#: app/libraries/main.php:
|
8320 |
msgid "Tickets (Plural)"
|
8321 |
msgstr ""
|
8322 |
|
8323 |
-
#: app/libraries/main.php:
|
8324 |
msgid "EventON"
|
8325 |
msgstr ""
|
8326 |
|
8327 |
-
#: app/libraries/main.php:
|
8328 |
msgid "The Events Calendar"
|
8329 |
msgstr ""
|
8330 |
|
8331 |
-
#: app/libraries/main.php:
|
8332 |
msgid "Events Schedule WP Plugin"
|
8333 |
msgstr ""
|
8334 |
|
8335 |
-
#: app/libraries/main.php:
|
8336 |
msgid "Calendarize It"
|
8337 |
msgstr ""
|
8338 |
|
8339 |
-
#: app/libraries/main.php:
|
8340 |
#, fuzzy
|
8341 |
#| msgid "No Search Options"
|
8342 |
msgid "Event Espresso"
|
8343 |
msgstr "Brak opcji wyszukiwania"
|
8344 |
|
8345 |
-
#: app/libraries/main.php:
|
8346 |
#, fuzzy
|
8347 |
#| msgid "Event Repeating"
|
8348 |
msgid "Events Manager (Recurring)"
|
8349 |
msgstr "Wydarzenie powtarzalne"
|
8350 |
|
8351 |
-
#: app/libraries/main.php:
|
8352 |
#, fuzzy
|
8353 |
#| msgid "Modern Events Calendar"
|
8354 |
msgid "Events Manager (Single)"
|
8355 |
msgstr "Nowoczesny Kalendarz Wydarzeń"
|
8356 |
|
8357 |
-
#: app/libraries/main.php:
|
8358 |
msgid "Confirmed"
|
8359 |
msgstr "Potwierdzone"
|
8360 |
|
8361 |
-
#: app/libraries/main.php:
|
8362 |
msgid "Rejected"
|
8363 |
msgstr "Odrzucone"
|
8364 |
|
8365 |
-
#: app/libraries/main.php:
|
8366 |
msgid "Pending"
|
8367 |
msgstr "Oczekuje"
|
8368 |
|
8369 |
-
#: app/libraries/main.php:
|
8370 |
msgid "Waiting"
|
8371 |
msgstr "Oczekuje"
|
8372 |
|
8373 |
-
#: app/libraries/main.php:
|
8374 |
#, fuzzy
|
8375 |
#| msgid "Sunday"
|
8376 |
msgid "Sun"
|
8377 |
msgstr "Niedziea"
|
8378 |
|
8379 |
-
#: app/libraries/main.php:
|
8380 |
#, fuzzy
|
8381 |
#| msgid "Month"
|
8382 |
msgid "Mon"
|
8383 |
msgstr "Miesiąc"
|
8384 |
|
8385 |
-
#: app/libraries/main.php:
|
8386 |
#, fuzzy
|
8387 |
#| msgid "Tel"
|
8388 |
msgid "Tue"
|
8389 |
msgstr "Tel"
|
8390 |
|
8391 |
-
#: app/libraries/main.php:
|
8392 |
msgid "Wed"
|
8393 |
msgstr ""
|
8394 |
|
8395 |
-
#: app/libraries/main.php:
|
8396 |
msgid "Thu"
|
8397 |
msgstr ""
|
8398 |
|
8399 |
-
#: app/libraries/main.php:
|
8400 |
#, fuzzy
|
8401 |
#| msgid "Friday"
|
8402 |
msgid "Fri"
|
8403 |
msgstr "Piątek"
|
8404 |
|
8405 |
-
#: app/libraries/main.php:
|
8406 |
#, fuzzy
|
8407 |
#| msgid "Start"
|
8408 |
msgid "Sat"
|
8409 |
msgstr "Początek"
|
8410 |
|
8411 |
-
#: app/libraries/main.php:
|
8412 |
#: app/libraries/render.php:432
|
8413 |
msgid "Skin controller does not exist."
|
8414 |
msgstr "Kontroler skórki nie iestnieje."
|
8415 |
|
8416 |
-
#: app/libraries/main.php:
|
8417 |
#, fuzzy
|
8418 |
#| msgid "Sold out!"
|
8419 |
msgid "Sold Out"
|
8420 |
msgstr "Wyprzedane!"
|
8421 |
|
8422 |
-
#: app/libraries/main.php:
|
8423 |
#, fuzzy
|
8424 |
#| msgid "Ticket"
|
8425 |
msgid "Last Few Tickets"
|
8426 |
msgstr "Zgłoszenie"
|
8427 |
|
8428 |
-
#: app/libraries/main.php:
|
8429 |
#, fuzzy
|
8430 |
#| msgid "hours"
|
8431 |
msgid "Hours"
|
8432 |
msgstr "godzin"
|
8433 |
|
8434 |
-
#: app/libraries/main.php:
|
8435 |
#, fuzzy
|
8436 |
#| msgid "minutes"
|
8437 |
msgid "Minutes"
|
8438 |
msgstr "minut"
|
8439 |
|
8440 |
-
#: app/libraries/main.php:
|
8441 |
msgid "AM / PM"
|
8442 |
msgstr ""
|
8443 |
|
8444 |
-
#: app/libraries/main.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8445 |
msgid "Ongoing..."
|
8446 |
msgstr ""
|
8447 |
|
8448 |
-
#: app/libraries/main.php:
|
8449 |
msgid "Expired!"
|
8450 |
msgstr ""
|
8451 |
|
@@ -8453,80 +8451,89 @@ msgstr ""
|
|
8453 |
msgid "Please verify your email."
|
8454 |
msgstr "Potwierdź swój email."
|
8455 |
|
8456 |
-
#: app/libraries/notifications.php:
|
8457 |
msgid "Your booking is received."
|
8458 |
msgstr "Otrzymaliśmy twoją rezerwację."
|
8459 |
|
8460 |
-
#: app/libraries/notifications.php:
|
8461 |
msgid "Your booking is confirmed."
|
8462 |
msgstr "Twoja rezerwacja jest potwierdzona."
|
8463 |
|
8464 |
-
#: app/libraries/notifications.php:
|
8465 |
#, fuzzy
|
8466 |
#| msgid "Your booking cannot be canceled."
|
8467 |
msgid "booking canceled."
|
8468 |
msgstr "Twoja rezerwacja nie może zostać anulowana."
|
8469 |
|
8470 |
-
#: app/libraries/notifications.php:
|
8471 |
msgid "A new booking is received."
|
8472 |
msgstr "Otrzymałeś nową rezerwację."
|
8473 |
|
8474 |
-
#: app/libraries/notifications.php:
|
8475 |
msgid "A new event is added."
|
8476 |
msgstr "Nowe wydarzenie zostało dodane."
|
8477 |
|
8478 |
-
#: app/libraries/notifications.php:
|
8479 |
#, fuzzy
|
8480 |
#| msgid "The event published."
|
8481 |
msgid "Your event is published."
|
8482 |
msgstr "Wydarzenie opublikowane."
|
8483 |
|
8484 |
-
#: app/libraries/notifications.php:
|
8485 |
#, php-format
|
8486 |
msgid "%s to %s"
|
8487 |
msgstr "%s do%s"
|
8488 |
|
8489 |
-
#: app/libraries/notifications.php:
|
8490 |
-
#: app/libraries/notifications.php:
|
8491 |
msgid "to"
|
8492 |
msgstr ""
|
8493 |
|
8494 |
-
#: app/libraries/notifications.php:
|
8495 |
msgid "+ Add to Google Calendar"
|
8496 |
msgstr "+ Dodaj do Google Calendar"
|
8497 |
|
8498 |
-
#: app/libraries/notifications.php:
|
8499 |
msgid "+ iCal export"
|
8500 |
msgstr "+ eksport iCal"
|
8501 |
|
8502 |
-
#: app/libraries/notifications.php:
|
8503 |
msgid "Yes"
|
8504 |
msgstr ""
|
8505 |
|
8506 |
-
#: app/libraries/notifications.php:
|
8507 |
msgid "No"
|
8508 |
msgstr ""
|
8509 |
|
8510 |
-
#: app/libraries/skins.php:
|
8511 |
#, fuzzy
|
8512 |
#| msgid "Select All"
|
8513 |
msgid "Select"
|
8514 |
msgstr "Zaznacz wszystko"
|
8515 |
|
8516 |
-
#: app/modules/attendees-list/details.php:
|
8517 |
msgid "Event Attendees"
|
8518 |
msgstr "Uczestnicy wydarzenia"
|
8519 |
|
8520 |
-
#: app/modules/attendees-list/details.php:
|
8521 |
msgid "No attendee found! Be the first one to book!"
|
8522 |
msgstr "Brak zgłoszonych uczestników! Bądź pierwszym zarejestrowanym!"
|
8523 |
|
8524 |
-
#: app/modules/attendees-list/details.php:
|
8525 |
#, fuzzy
|
8526 |
#| msgid "Tickets"
|
8527 |
msgid "tickets"
|
8528 |
msgstr "Bilety"
|
8529 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8530 |
#: app/modules/booking/steps/checkout.php:37
|
8531 |
msgid "Checkout"
|
8532 |
msgstr "Zamówienie"
|
@@ -8578,27 +8585,27 @@ msgstr "Formularz zgłoszenia uczestników"
|
|
8578 |
msgid "Fill other attendees information like the first form."
|
8579 |
msgstr ""
|
8580 |
|
8581 |
-
#: app/modules/booking/steps/tickets.php:
|
8582 |
msgid "Book Event"
|
8583 |
msgstr "Rezerwuj wydarzenie"
|
8584 |
|
8585 |
-
#: app/modules/booking/steps/tickets.php:
|
8586 |
#, fuzzy
|
8587 |
#| msgid "Ticket Name"
|
8588 |
msgid "1 Ticket selected."
|
8589 |
msgstr "Nazwa biletu"
|
8590 |
|
8591 |
-
#: app/modules/booking/steps/tickets.php:
|
8592 |
#, php-format
|
8593 |
msgid "Available %s: <span>%s</span>"
|
8594 |
msgstr ""
|
8595 |
|
8596 |
-
#: app/modules/booking/steps/tickets.php:
|
8597 |
#, php-format
|
8598 |
msgid "The %s ticket sales has stopped!"
|
8599 |
msgstr ""
|
8600 |
|
8601 |
-
#: app/modules/booking/steps/tickets.php:
|
8602 |
#, php-format
|
8603 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8604 |
msgstr "Bilety %s zostały wyprzedane. Możesz spróbować wybrać inny bilet."
|
@@ -8619,7 +8626,7 @@ msgstr "Adres z ..."
|
|
8619 |
msgid "Get Directions"
|
8620 |
msgstr ""
|
8621 |
|
8622 |
-
#: app/modules/links/details.php:17 app/skins/single.php:
|
8623 |
msgid "Share this event"
|
8624 |
msgstr "Poleć to wydarzenie"
|
8625 |
|
@@ -8674,7 +8681,7 @@ msgstr "Następne wystąpienie"
|
|
8674 |
msgid "Go to occurrence page"
|
8675 |
msgstr "Przejdź do strony wystąpienia"
|
8676 |
|
8677 |
-
#: app/modules/next-event/details.php:139 app/skins/single.php:
|
8678 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8679 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8680 |
msgid "Time"
|
@@ -8810,24 +8817,24 @@ msgstr "Wydarzenia dla %s"
|
|
8810 |
msgid "No Events"
|
8811 |
msgstr "Brak wydarzeń"
|
8812 |
|
8813 |
-
#: app/skins/single.php:
|
8814 |
msgid "Home"
|
8815 |
msgstr ""
|
8816 |
|
8817 |
-
#: app/skins/single.php:
|
8818 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8819 |
#: app/skins/single/modern.php:292
|
8820 |
msgid "Sold out!"
|
8821 |
msgstr "Wyprzedane!"
|
8822 |
|
8823 |
-
#: app/skins/single.php:
|
8824 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8825 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8826 |
#: app/skins/single/modern.php:55
|
8827 |
msgid "Phone"
|
8828 |
msgstr "Telefon"
|
8829 |
|
8830 |
-
#: app/skins/single.php:
|
8831 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8832 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8833 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
@@ -8836,7 +8843,7 @@ msgstr "Telefon"
|
|
8836 |
msgid "Website"
|
8837 |
msgstr "Strona WWW"
|
8838 |
|
8839 |
-
#: app/skins/single.php:
|
8840 |
#, fuzzy
|
8841 |
#| msgid "No Search Options"
|
8842 |
msgid "Speakers:"
|
@@ -9389,9 +9396,6 @@ msgstr ""
|
|
9389 |
#~ msgid "Can I Override MEC Template ?"
|
9390 |
#~ msgstr "Jak zastąpić pliki szablonów MEC?"
|
9391 |
|
9392 |
-
#~ msgid "%s tickets"
|
9393 |
-
#~ msgstr "%s biletów"
|
9394 |
-
|
9395 |
#~ msgid "Security nonce is missing."
|
9396 |
#~ msgstr "Kod bezpieczeństwa nie został wprowadzony."
|
9397 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
5 |
+
"PO-Revision-Date: 2020-06-16 16:47+0430\n"
|
6 |
"Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pl_PL\n"
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
26 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
27 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
28 |
msgid "Modern Events Calendar"
|
29 |
msgstr "Nowoczesny Kalendarz Wydarzeń"
|
316 |
msgstr ""
|
317 |
|
318 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
319 |
+
#: app/features/popup/event.php:252
|
320 |
msgid "View Event"
|
321 |
msgstr "Zobacz wydarzenie"
|
322 |
|
338 |
#: app/features/mec/meta_boxes/search_form.php:654
|
339 |
#: app/features/mec/meta_boxes/search_form.php:760
|
340 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
341 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
342 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
343 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
344 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
345 |
#: app/skins/single/modern.php:137
|
349 |
#: app/features/events.php:186 app/features/events.php:3193
|
350 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
351 |
#: app/features/mec/meta_boxes/filter.php:69
|
352 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
353 |
msgid "Categories"
|
354 |
msgstr "Kategorie"
|
355 |
|
438 |
msgstr "Wydarzenie powtarzalne"
|
439 |
|
440 |
#: app/features/events.php:336 app/features/events.php:1215
|
441 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
442 |
msgid "Hourly Schedule"
|
443 |
msgstr "Harmonogram"
|
444 |
|
472 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
473 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
474 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
475 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
476 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
477 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
478 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
479 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
480 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
481 |
msgid "Organizer"
|
482 |
msgstr "Organizator"
|
483 |
|
484 |
#: app/features/events.php:340 app/features/events.php:1092
|
485 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
486 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
487 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
488 |
#: app/skins/single/modern.php:234
|
489 |
msgid "Cost"
|
507 |
#: app/features/events.php:3769 app/features/fes.php:223
|
508 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
509 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
510 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
511 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
512 |
msgid "Name"
|
513 |
msgstr "Imię"
|
514 |
|
520 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
521 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
522 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
523 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
524 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
525 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
526 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
527 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
528 |
#: app/skins/single/modern.php:62
|
538 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
539 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
540 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
541 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
542 |
#: app/features/mec/meta_boxes/display_options.php:278
|
543 |
#: app/features/mec/meta_boxes/display_options.php:517
|
544 |
#: app/features/mec/meta_boxes/display_options.php:623
|
562 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
563 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
564 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
565 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
566 |
msgid "End Date"
|
567 |
msgstr "Data zakończenia"
|
568 |
|
569 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
570 |
+
#: app/features/popup/event.php:109
|
571 |
#, fuzzy
|
572 |
#| msgid "All Day Event"
|
573 |
msgid "All-day Event"
|
609 |
#: app/features/events.php:2151 app/features/events.php:2166
|
610 |
#: app/features/events.php:2196 app/features/events.php:2209
|
611 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
612 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
613 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
614 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
615 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
673 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
674 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
675 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
676 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
677 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
678 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
679 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
680 |
#: app/skins/single/modern.php:160
|
698 |
msgstr "Powtórzenia"
|
699 |
|
700 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
701 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
702 |
#: app/skins/full_calendar/tpl.php:121
|
703 |
msgid "Daily"
|
704 |
msgstr "Codziennie"
|
722 |
msgstr "Co tydzień"
|
723 |
|
724 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
725 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
726 |
#: app/skins/full_calendar/tpl.php:119
|
727 |
msgid "Monthly"
|
728 |
msgstr "Co miesiąc"
|
729 |
|
730 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
731 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
732 |
#: app/skins/full_calendar/tpl.php:118
|
733 |
msgid "Yearly"
|
734 |
msgstr "Co roku"
|
866 |
#: app/features/events.php:1088 app/features/events.php:3431
|
867 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
868 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
869 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
870 |
#: app/widgets/single.php:103
|
871 |
msgid "Event Cost"
|
872 |
msgstr "Koszt wydarzenia"
|
884 |
#: app/features/events.php:1124 app/features/events.php:2330
|
885 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
886 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
887 |
+
#: app/modules/booking/steps/tickets.php:36
|
888 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
889 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
890 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
891 |
msgid "Date"
|
970 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
971 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
972 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
973 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
974 |
#: app/modules/speakers/details.php:18
|
975 |
msgid "Speakers"
|
976 |
msgstr ""
|
987 |
msgstr "Linki wydarzenia"
|
988 |
|
989 |
#: app/features/events.php:1408 app/features/events.php:1414
|
990 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
991 |
msgid "Event Link"
|
992 |
msgstr "Link strony www wydarzenia"
|
993 |
|
1014 |
msgstr ""
|
1015 |
|
1016 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1017 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
1018 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
1019 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1020 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1021 |
#: app/widgets/single.php:107
|
1053 |
msgstr "Limity rezerwacji"
|
1054 |
|
1055 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1056 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
1057 |
+
#: app/modules/booking/steps/tickets.php:64
|
1058 |
msgid "Tickets"
|
1059 |
msgstr "Bilety"
|
1060 |
|
1082 |
|
1083 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1084 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1085 |
+
#: app/modules/booking/steps/tickets.php:64
|
1086 |
#: app/skins/available_spot/tpl.php:142
|
1087 |
msgid "Unlimited"
|
1088 |
msgstr "Nieograniczony"
|
1252 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1253 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1254 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1255 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1256 |
msgid "Label"
|
1257 |
msgstr "Etykieta"
|
1258 |
|
1477 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1478 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1479 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1480 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1481 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1482 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1483 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1484 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1492 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1493 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1494 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1495 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1496 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1497 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1498 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1499 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1500 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1501 |
#: app/skins/single/modern.php:113
|
1537 |
|
1538 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1539 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1540 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1541 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1542 |
msgid "ID"
|
1543 |
msgstr "ID"
|
1559 |
|
1560 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1561 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1562 |
+
#: app/libraries/main.php:5666
|
1563 |
msgid "Ticket"
|
1564 |
msgstr "Zgłoszenie"
|
1565 |
|
1770 |
msgstr "np. twojanazwa@gmail.com"
|
1771 |
|
1772 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1773 |
+
#: app/features/popup/event.php:183
|
1774 |
msgid "eg. John Smith"
|
1775 |
msgstr "np. Jan Nowak"
|
1776 |
|
1797 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1798 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1799 |
#: app/features/mec/meta_boxes/filter.php:72
|
1800 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1801 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1802 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1803 |
#: app/skins/single/modern.php:249
|
1804 |
msgid "Labels"
|
2609 |
msgstr "Obraz wyróżniający"
|
2610 |
|
2611 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2612 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2613 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2614 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2615 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2627 |
msgid "You can show featured and canceled events by a different style!"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2631 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2632 |
+
#: app/modules/booking/steps/tickets.php:62
|
2633 |
msgid "Count"
|
2634 |
msgstr "Liczba"
|
2635 |
|
2636 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2637 |
#: app/features/organizers.php:207
|
2638 |
msgid "Slug"
|
2639 |
msgstr "Upr. nazwa"
|
2640 |
|
2641 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2642 |
#, php-format
|
2643 |
msgid "Event %s"
|
2644 |
msgstr "Wydarzenie %s"
|
2645 |
|
2646 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2647 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2648 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2649 |
msgid "Locations"
|
2650 |
msgstr "Lokalizacje"
|
2651 |
|
2652 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2653 |
+
#: app/features/locations.php:262
|
2654 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2655 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2656 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2665 |
msgid "Address"
|
2666 |
msgstr "Adres"
|
2667 |
|
2668 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2669 |
msgid "Enter the location address"
|
2670 |
msgstr "Podaj adres lokalizacji"
|
2671 |
|
2672 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2673 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2674 |
msgid "Latitude"
|
2675 |
msgstr "Szerokość geograficzna"
|
2676 |
|
2677 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2678 |
msgid "Geo latitude (Optional)"
|
2679 |
msgstr "Szerokość geograficzna (opcjonalnie)"
|
2680 |
|
2681 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2682 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2683 |
msgid "Longitude"
|
2684 |
msgstr "Długość geograficzna"
|
2685 |
|
2686 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2687 |
msgid "Geo longitude (Optional)"
|
2688 |
msgstr "Długość geograficzna (opcjonalnie)"
|
2689 |
|
2690 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2691 |
+
#: app/features/locations.php:372
|
2692 |
#, fuzzy
|
2693 |
#| msgid "Locations"
|
2694 |
msgid "Location Website"
|
2695 |
msgstr "Lokalizacje"
|
2696 |
|
2697 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2698 |
#, fuzzy
|
2699 |
#| msgid "Geo latitude (Optional)"
|
2700 |
msgid "Location Website (Optional)"
|
2701 |
msgstr "Szerokość geograficzna (opcjonalnie)"
|
2702 |
|
2703 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2704 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2705 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2706 |
msgid "Thumbnail"
|
2707 |
msgstr "Miniatura"
|
2708 |
|
2709 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2710 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2711 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2712 |
msgid "Upload/Add image"
|
2713 |
msgstr "Prześlij / Dodaj obraz"
|
2714 |
|
2715 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2716 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2717 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2718 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2719 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2720 |
msgid "Remove image"
|
2721 |
msgstr "Usuń obraz"
|
2722 |
|
2723 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2724 |
msgid "Hide location"
|
2725 |
msgstr "Ukryj lokalizację"
|
2726 |
|
2727 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2728 |
msgid "Insert a new location"
|
2729 |
msgstr "Dodaj nową lokalizację"
|
2730 |
|
2731 |
+
#: app/features/locations.php:334
|
2732 |
msgid "Choose one of saved locations or insert new one below."
|
2733 |
msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
|
2734 |
|
2735 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2736 |
msgid "Location Name"
|
2737 |
msgstr "Nazwa lokalizacji"
|
2738 |
|
2739 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2740 |
msgid "eg. City Hall"
|
2741 |
msgstr "np. Ratusz"
|
2742 |
|
2743 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2744 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2745 |
msgid "Event Location"
|
2746 |
msgstr "Miejsce wydarzenia"
|
2747 |
|
2748 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2749 |
msgid "eg. City hall, Manhattan, New York"
|
2750 |
msgstr "np. Rynek, 50-996 Wrocław"
|
2751 |
|
2752 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2753 |
#, fuzzy
|
2754 |
#| msgid "Longitude"
|
2755 |
msgid "Latitude/Longitude"
|
2756 |
msgstr "Długość geograficzna"
|
2757 |
|
2758 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2759 |
msgid ""
|
2760 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2761 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2764 |
"the location on the map to find lat long coordinates."
|
2765 |
msgstr ""
|
2766 |
|
2767 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2768 |
msgid "Get Latitude and Longitude"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2772 |
+
#: app/features/popup/event.php:202
|
2773 |
msgid "Choose image"
|
2774 |
msgstr "Wybierz obraz"
|
2775 |
|
2776 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2777 |
msgid "Don't show map in single event page"
|
2778 |
msgstr "Nie pokazuj mapy na stronie wydarzenia"
|
2779 |
|
2780 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2781 |
#, fuzzy
|
2782 |
#| msgid "Search Locations"
|
2783 |
msgid "Other Locations"
|
2784 |
msgstr "Szukaj"
|
2785 |
|
2786 |
+
#: app/features/locations.php:398
|
2787 |
msgid ""
|
2788 |
"You can select extra locations in addition to main location if you like."
|
2789 |
msgstr ""
|
2860 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2861 |
#: app/features/mec/meta_boxes/filter.php:71
|
2862 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2863 |
+
#: app/libraries/main.php:5637
|
2864 |
msgid "Organizers"
|
2865 |
msgstr "Organizatorzy"
|
2866 |
|
2901 |
msgid "MEC - Go Pro"
|
2902 |
msgstr "Wsparcie"
|
2903 |
|
2904 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2905 |
#: app/features/mec/go-pro.php:9
|
2906 |
msgid "Go Pro"
|
2907 |
msgstr ""
|
2960 |
msgid "Modal Popup"
|
2961 |
msgstr "Okno modalne"
|
2962 |
|
2963 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2964 |
msgid "Total Bookings"
|
2965 |
msgstr "Rezerwacje"
|
2966 |
|
2967 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2968 |
#, fuzzy
|
2969 |
#| msgid "Modern Events Calendar"
|
2970 |
msgid "Modern Events Calendar (Lite)"
|
2971 |
msgstr "Nowoczesny Kalendarz Wydarzeń"
|
2972 |
|
2973 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2974 |
#: app/features/mec/settings.php:428
|
2975 |
msgid "Upcoming Events"
|
2976 |
msgstr "Nadchodzące wydarzenia"
|
2977 |
|
2978 |
+
#: app/features/mec.php:1201
|
2979 |
#, fuzzy
|
2980 |
#| msgid "Update %s"
|
2981 |
msgid "News & Updates"
|
2982 |
msgstr "Zaktualizuj %s"
|
2983 |
|
2984 |
+
#: app/features/mec.php:1214
|
2985 |
msgid "Blog"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: app/features/mec.php:1214
|
2989 |
msgid "Help"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: app/features/mec.php:1260
|
2993 |
msgid "This Month"
|
2994 |
msgstr "Ten miesiąc"
|
2995 |
|
2996 |
+
#: app/features/mec.php:1266
|
2997 |
msgid "Last Month"
|
2998 |
msgstr "Ostatni miesiąc"
|
2999 |
|
3000 |
+
#: app/features/mec.php:1272
|
3001 |
msgid "This Year"
|
3002 |
msgstr "W tym roku"
|
3003 |
|
3004 |
+
#: app/features/mec.php:1278
|
3005 |
msgid "Last Year"
|
3006 |
msgstr "W poprzednim roku"
|
3007 |
|
3008 |
+
#: app/features/mec.php:1290
|
3009 |
msgid "Bar"
|
3010 |
msgstr "Pasek"
|
3011 |
|
3012 |
+
#: app/features/mec.php:1291
|
3013 |
msgid "Line"
|
3014 |
msgstr "Linia"
|
3015 |
|
3016 |
+
#: app/features/mec.php:1293
|
3017 |
msgid "Filter"
|
3018 |
msgstr "Filtr"
|
3019 |
|
3020 |
+
#: app/features/mec.php:1309
|
3021 |
#, php-format
|
3022 |
msgid "Total Sells (%s)"
|
3023 |
msgstr "Sprzedaż w sumie (%s)"
|
3024 |
|
3025 |
+
#: app/features/mec.php:1337
|
3026 |
#, fuzzy
|
3027 |
#| msgid "Modern Events Calendar"
|
3028 |
msgid "Print Calendar"
|
3029 |
msgstr "Nowoczesny Kalendarz Wydarzeń"
|
3030 |
|
3031 |
+
#: app/features/mec.php:1352
|
3032 |
#, fuzzy
|
3033 |
#| msgid "Multiple Day Events"
|
3034 |
msgid "Display Events"
|
3433 |
#: app/features/mec/notifications.php:923
|
3434 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3435 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3436 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3437 |
msgid "Verified"
|
3438 |
msgstr "Zweryfikowane"
|
3439 |
|
4622 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4623 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4624 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4625 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4626 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4627 |
msgid "Speaker"
|
4628 |
msgstr ""
|
4629 |
|
4639 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4640 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4641 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4642 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4643 |
#, fuzzy
|
4644 |
#| msgid "Tags"
|
4645 |
msgid "Tag"
|
5450 |
msgstr "Wysyła do administratora email z informacją o nowej rezerwacji."
|
5451 |
|
5452 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5453 |
+
#: app/libraries/notifications.php:587
|
5454 |
msgid "Booking Reminder"
|
5455 |
msgstr ""
|
5456 |
|
5478 |
msgid "Please, insert comma to separate reminder days."
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5482 |
#: app/libraries/main.php:584
|
5483 |
msgid "New Event"
|
5484 |
msgstr "Nowe wydarzenie"
|
5708 |
msgstr ""
|
5709 |
|
5710 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5711 |
+
#: app/libraries/main.php:5644
|
5712 |
msgid "Weekdays"
|
5713 |
msgstr "Dni powszednie"
|
5714 |
|
6499 |
msgstr "Pokaż wykluczone dni na stronie dodawania / usuwania wydarzenia"
|
6500 |
|
6501 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6502 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
6503 |
#, fuzzy
|
6504 |
#| msgid "featured event"
|
6505 |
msgid "Related Events"
|
7163 |
msgstr "Podaj adres email organizatora."
|
7164 |
|
7165 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7166 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
7167 |
msgid "Link to organizer page"
|
7168 |
msgstr "Link do strony organizatora"
|
7169 |
|
7181 |
msgid "Event Main %s"
|
7182 |
msgstr ""
|
7183 |
|
7184 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
7185 |
msgid "Hide organizer"
|
7186 |
msgstr "Ukryj organizatora"
|
7187 |
|
7188 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
7189 |
msgid "Insert a new organizer"
|
7190 |
msgstr "Utwórz nowego organizatora"
|
7191 |
|
7192 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
7193 |
msgid "Choose one of saved organizers or insert new one below."
|
7194 |
msgstr "Wybierz organizatora z listy lub utwórz nowego."
|
7195 |
|
7196 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
7197 |
msgid "Phone number."
|
7198 |
msgstr "Numer telefonu."
|
7199 |
|
7200 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
7201 |
msgid "eg. +1 (234) 5678"
|
7202 |
msgstr "np. +48 123 456 789"
|
7203 |
|
7204 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
7205 |
msgid "Email address."
|
7206 |
msgstr "Adres email."
|
7207 |
|
7208 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
7209 |
msgid "eg. john@smith.com"
|
7210 |
msgstr "np. email@domena.pl"
|
7211 |
|
7212 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
7213 |
#, fuzzy
|
7214 |
#| msgid "http://webnus.biz"
|
7215 |
msgid "eg. https://webnus.net"
|
7216 |
msgstr "http://webnus.biz"
|
7217 |
|
7218 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
7219 |
+
#: app/skins/single.php:1152
|
7220 |
msgid "Other Organizers"
|
7221 |
msgstr ""
|
7222 |
|
7241 |
msgid "Event name is required"
|
7242 |
msgstr ""
|
7243 |
|
7244 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7245 |
#, fuzzy
|
7246 |
#| msgid "Choose one of saved locations or insert new one below."
|
7247 |
msgid "Choose one of saved locations or insert new one."
|
7248 |
msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
|
7249 |
|
7250 |
+
#: app/features/popup/event.php:130
|
7251 |
#, fuzzy
|
7252 |
#| msgid "Add New Location"
|
7253 |
msgid "Add Location"
|
7254 |
msgstr "Dodaj nową lokalizację"
|
7255 |
|
7256 |
+
#: app/features/popup/event.php:177
|
7257 |
#, fuzzy
|
7258 |
#| msgid "Add New Organizer"
|
7259 |
msgid "Add Organizer"
|
7260 |
msgstr "Dodaj nowego organizatora"
|
7261 |
|
7262 |
+
#: app/features/popup/event.php:217
|
7263 |
#, fuzzy
|
7264 |
#| msgid "Categories"
|
7265 |
msgid "All Categories"
|
7266 |
msgstr "Kategorie"
|
7267 |
|
7268 |
+
#: app/features/popup/event.php:218
|
7269 |
msgid "Most Used"
|
7270 |
msgstr ""
|
7271 |
|
7272 |
+
#: app/features/popup/event.php:229
|
7273 |
#, fuzzy
|
7274 |
#| msgid "Add New Label"
|
7275 |
msgid "Add New Category"
|
7276 |
msgstr "Dodaj nową etykietę"
|
7277 |
|
7278 |
+
#: app/features/popup/event.php:240
|
7279 |
#, fuzzy
|
7280 |
#| msgid "Featured Image"
|
7281 |
msgid "Set Featured Image"
|
7282 |
msgstr "Obraz wyróżniający"
|
7283 |
|
7284 |
+
#: app/features/popup/event.php:250
|
7285 |
msgid "Your Event Has Been Created."
|
7286 |
msgstr ""
|
7287 |
|
7288 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
7289 |
msgid "Prev"
|
7290 |
msgstr ""
|
7291 |
|
7292 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
7293 |
#: app/modules/booking/steps/form.php:188
|
7294 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
7295 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7296 |
msgid "Next"
|
7297 |
msgstr "Następny"
|
7535 |
msgid "No search result."
|
7536 |
msgstr ""
|
7537 |
|
7538 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
7539 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
7540 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7541 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7542 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
7543 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7544 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7545 |
#, fuzzy
|
7637 |
msgid "%s Price"
|
7638 |
msgstr ""
|
7639 |
|
7640 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
7641 |
msgid "Discount"
|
7642 |
msgstr "Zniżka"
|
7643 |
|
7644 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
7645 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
7646 |
msgid "Download Invoice"
|
7647 |
msgstr ""
|
7648 |
|
7665 |
msgid "Upgrade"
|
7666 |
msgstr ""
|
7667 |
|
7668 |
+
#: app/libraries/factory.php:369
|
7669 |
msgid "day"
|
7670 |
msgstr "dzień"
|
7671 |
|
7672 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
7673 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7674 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7675 |
msgid "days"
|
7676 |
msgstr "dni"
|
7677 |
|
7678 |
+
#: app/libraries/factory.php:371
|
7679 |
msgid "hour"
|
7680 |
msgstr "godzina"
|
7681 |
|
7682 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
7683 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7684 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7685 |
msgid "hours"
|
7686 |
msgstr "godzin"
|
7687 |
|
7688 |
+
#: app/libraries/factory.php:373
|
7689 |
msgid "minute"
|
7690 |
msgstr "minuta"
|
7691 |
|
7692 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7693 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7694 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7695 |
msgid "minutes"
|
7696 |
msgstr "minut"
|
7697 |
|
7698 |
+
#: app/libraries/factory.php:375
|
7699 |
msgid "second"
|
7700 |
msgstr "sekunda"
|
7701 |
|
7702 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7703 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7704 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7705 |
msgid "seconds"
|
7706 |
msgstr "sekund"
|
7707 |
|
7708 |
+
#: app/libraries/factory.php:428
|
7709 |
msgid "MEC Single Sidebar"
|
7710 |
msgstr "Pasek boczny wydarzenia"
|
7711 |
|
7712 |
+
#: app/libraries/factory.php:429
|
7713 |
msgid "Custom sidebar for single and modal page of MEC."
|
7714 |
msgstr ""
|
7715 |
"Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
|
7774 |
msgid "Timeline View"
|
7775 |
msgstr "Widok suwaka"
|
7776 |
|
7777 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7778 |
msgid "SU"
|
7779 |
msgstr "NIE"
|
7780 |
|
7781 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7782 |
msgid "MO"
|
7783 |
msgstr "PN"
|
7784 |
|
7785 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7786 |
msgid "TU"
|
7787 |
msgstr "WT"
|
7788 |
|
7789 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7790 |
msgid "WE"
|
7791 |
msgstr "ŚR"
|
7792 |
|
7793 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7794 |
msgid "TH"
|
7795 |
msgstr "CZW"
|
7796 |
|
7797 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7798 |
msgid "FR"
|
7799 |
msgstr "PT"
|
7800 |
|
7801 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7802 |
msgid "SA"
|
7803 |
msgstr "SOB"
|
7804 |
|
8133 |
msgid "Free"
|
8134 |
msgstr "Darmowy"
|
8135 |
|
8136 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
8137 |
#, fuzzy
|
8138 |
#| msgid "M.E. Calendar"
|
8139 |
msgid "M.E. Calender"
|
8140 |
msgstr "Kalendarz"
|
8141 |
|
8142 |
+
#: app/libraries/main.php:4105
|
8143 |
#, php-format
|
8144 |
msgid "Copy of %s"
|
8145 |
msgstr "Kopia %s"
|
8146 |
|
8147 |
+
#: app/libraries/main.php:4923
|
8148 |
msgid "Booked an event."
|
8149 |
msgstr "Zarezerwowano wydarzenie."
|
8150 |
|
8151 |
+
#: app/libraries/main.php:4964
|
8152 |
#, php-format
|
8153 |
msgid "%s booked %s event."
|
8154 |
msgstr "%s zarezerwował %s wydarzenie."
|
8155 |
|
8156 |
+
#: app/libraries/main.php:5629
|
8157 |
msgid "Taxonomies"
|
8158 |
msgstr "Taksonomie"
|
8159 |
|
8160 |
+
#: app/libraries/main.php:5631
|
8161 |
msgid "Category Plural Label"
|
8162 |
msgstr "Etykieta dla kategorii - liczba mnoga"
|
8163 |
|
8164 |
+
#: app/libraries/main.php:5632
|
8165 |
msgid "Category Singular Label"
|
8166 |
msgstr "Etykieta dla kategorii - liczba pojedyncza"
|
8167 |
|
8168 |
+
#: app/libraries/main.php:5633
|
8169 |
msgid "Label Plural Label"
|
8170 |
msgstr "Etykieta - liczba mnoga"
|
8171 |
|
8172 |
+
#: app/libraries/main.php:5634
|
8173 |
msgid "Label Singular Label"
|
8174 |
msgstr "Etykieta - liczba pojedyncza"
|
8175 |
|
8176 |
+
#: app/libraries/main.php:5634
|
8177 |
msgid "label"
|
8178 |
msgstr "etykieta"
|
8179 |
|
8180 |
+
#: app/libraries/main.php:5635
|
8181 |
msgid "Location Plural Label"
|
8182 |
msgstr "Etykieta dla lokalizacji - wersja mnoga"
|
8183 |
|
8184 |
+
#: app/libraries/main.php:5636
|
8185 |
msgid "Location Singular Label"
|
8186 |
msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
|
8187 |
|
8188 |
+
#: app/libraries/main.php:5637
|
8189 |
msgid "Organizer Plural Label"
|
8190 |
msgstr "Etykieta dla organizatora - wersja mnoga"
|
8191 |
|
8192 |
+
#: app/libraries/main.php:5638
|
8193 |
msgid "Organizer Singular Label"
|
8194 |
msgstr "Etykieta dla organizatora - wersja pojedyncza"
|
8195 |
|
8196 |
+
#: app/libraries/main.php:5639
|
8197 |
#, fuzzy
|
8198 |
#| msgid "Label Plural Label"
|
8199 |
msgid "Speaker Plural Label"
|
8200 |
msgstr "Etykieta - liczba mnoga"
|
8201 |
|
8202 |
+
#: app/libraries/main.php:5640
|
8203 |
#, fuzzy
|
8204 |
#| msgid "Label Singular Label"
|
8205 |
msgid "Speaker Singular Label"
|
8206 |
msgstr "Etykieta - liczba pojedyncza"
|
8207 |
|
8208 |
+
#: app/libraries/main.php:5646
|
8209 |
msgid "Sunday abbreviation"
|
8210 |
msgstr "Niedziela"
|
8211 |
|
8212 |
+
#: app/libraries/main.php:5647
|
8213 |
msgid "Monday abbreviation"
|
8214 |
msgstr "Poniedziałek"
|
8215 |
|
8216 |
+
#: app/libraries/main.php:5648
|
8217 |
msgid "Tuesday abbreviation"
|
8218 |
msgstr "Wtorek"
|
8219 |
|
8220 |
+
#: app/libraries/main.php:5649
|
8221 |
msgid "Wednesday abbreviation"
|
8222 |
msgstr "Środa"
|
8223 |
|
8224 |
+
#: app/libraries/main.php:5650
|
8225 |
msgid "Thursday abbreviation"
|
8226 |
msgstr "Czwartek"
|
8227 |
|
8228 |
+
#: app/libraries/main.php:5651
|
8229 |
msgid "Friday abbreviation"
|
8230 |
msgstr "Piątek"
|
8231 |
|
8232 |
+
#: app/libraries/main.php:5652
|
8233 |
msgid "Saturday abbreviation"
|
8234 |
msgstr "Sobota"
|
8235 |
|
8236 |
+
#: app/libraries/main.php:5656
|
8237 |
msgid "Others"
|
8238 |
msgstr "Inne"
|
8239 |
|
8240 |
+
#: app/libraries/main.php:5658
|
8241 |
msgid "Booking Success Message"
|
8242 |
msgstr "Wiadomość zakończenia rezerwacji"
|
8243 |
|
8244 |
+
#: app/libraries/main.php:5658
|
8245 |
#, fuzzy
|
8246 |
#| msgid ""
|
8247 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
8253 |
"Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
|
8254 |
"rezerwacji może być konieczna, sprawdź swoją pocztę email."
|
8255 |
|
8256 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
8257 |
msgid "Register Button"
|
8258 |
msgstr "Przycisk rejestracji"
|
8259 |
|
8260 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
8261 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8262 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8263 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8264 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8265 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
8266 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
8267 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8268 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8269 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
8275 |
msgid "REGISTER"
|
8276 |
msgstr "REJESTRACJA"
|
8277 |
|
8278 |
+
#: app/libraries/main.php:5660
|
8279 |
msgid "View Detail Button"
|
8280 |
msgstr "Pokaż szczegóły"
|
8281 |
|
8282 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
8283 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8284 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8285 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8286 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8287 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
8288 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8289 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8290 |
msgid "View Detail"
|
8291 |
msgstr "Pokaż szczegóły"
|
8292 |
|
8293 |
+
#: app/libraries/main.php:5661
|
8294 |
msgid "Event Detail Button"
|
8295 |
msgstr "Szczegóły wydarzenia"
|
8296 |
|
8297 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
8298 |
msgid "Event Detail"
|
8299 |
msgstr "Szczegóły wydarzenia"
|
8300 |
|
8301 |
+
#: app/libraries/main.php:5663
|
8302 |
msgid "More Info Link"
|
8303 |
msgstr "Więcej informacji"
|
8304 |
|
8305 |
+
#: app/libraries/main.php:5666
|
8306 |
msgid "Ticket (Singular)"
|
8307 |
msgstr ""
|
8308 |
|
8309 |
+
#: app/libraries/main.php:5667
|
8310 |
msgid "Tickets (Plural)"
|
8311 |
msgstr ""
|
8312 |
|
8313 |
+
#: app/libraries/main.php:5754
|
8314 |
msgid "EventON"
|
8315 |
msgstr ""
|
8316 |
|
8317 |
+
#: app/libraries/main.php:5755
|
8318 |
msgid "The Events Calendar"
|
8319 |
msgstr ""
|
8320 |
|
8321 |
+
#: app/libraries/main.php:5756
|
8322 |
msgid "Events Schedule WP Plugin"
|
8323 |
msgstr ""
|
8324 |
|
8325 |
+
#: app/libraries/main.php:5757
|
8326 |
msgid "Calendarize It"
|
8327 |
msgstr ""
|
8328 |
|
8329 |
+
#: app/libraries/main.php:5758
|
8330 |
#, fuzzy
|
8331 |
#| msgid "No Search Options"
|
8332 |
msgid "Event Espresso"
|
8333 |
msgstr "Brak opcji wyszukiwania"
|
8334 |
|
8335 |
+
#: app/libraries/main.php:5759
|
8336 |
#, fuzzy
|
8337 |
#| msgid "Event Repeating"
|
8338 |
msgid "Events Manager (Recurring)"
|
8339 |
msgstr "Wydarzenie powtarzalne"
|
8340 |
|
8341 |
+
#: app/libraries/main.php:5760
|
8342 |
#, fuzzy
|
8343 |
#| msgid "Modern Events Calendar"
|
8344 |
msgid "Events Manager (Single)"
|
8345 |
msgstr "Nowoczesny Kalendarz Wydarzeń"
|
8346 |
|
8347 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
8348 |
msgid "Confirmed"
|
8349 |
msgstr "Potwierdzone"
|
8350 |
|
8351 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
8352 |
msgid "Rejected"
|
8353 |
msgstr "Odrzucone"
|
8354 |
|
8355 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
8356 |
msgid "Pending"
|
8357 |
msgstr "Oczekuje"
|
8358 |
|
8359 |
+
#: app/libraries/main.php:5882
|
8360 |
msgid "Waiting"
|
8361 |
msgstr "Oczekuje"
|
8362 |
|
8363 |
+
#: app/libraries/main.php:5925
|
8364 |
#, fuzzy
|
8365 |
#| msgid "Sunday"
|
8366 |
msgid "Sun"
|
8367 |
msgstr "Niedziea"
|
8368 |
|
8369 |
+
#: app/libraries/main.php:5925
|
8370 |
#, fuzzy
|
8371 |
#| msgid "Month"
|
8372 |
msgid "Mon"
|
8373 |
msgstr "Miesiąc"
|
8374 |
|
8375 |
+
#: app/libraries/main.php:5925
|
8376 |
#, fuzzy
|
8377 |
#| msgid "Tel"
|
8378 |
msgid "Tue"
|
8379 |
msgstr "Tel"
|
8380 |
|
8381 |
+
#: app/libraries/main.php:5925
|
8382 |
msgid "Wed"
|
8383 |
msgstr ""
|
8384 |
|
8385 |
+
#: app/libraries/main.php:5925
|
8386 |
msgid "Thu"
|
8387 |
msgstr ""
|
8388 |
|
8389 |
+
#: app/libraries/main.php:5925
|
8390 |
#, fuzzy
|
8391 |
#| msgid "Friday"
|
8392 |
msgid "Fri"
|
8393 |
msgstr "Piątek"
|
8394 |
|
8395 |
+
#: app/libraries/main.php:5925
|
8396 |
#, fuzzy
|
8397 |
#| msgid "Start"
|
8398 |
msgid "Sat"
|
8399 |
msgstr "Początek"
|
8400 |
|
8401 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
8402 |
#: app/libraries/render.php:432
|
8403 |
msgid "Skin controller does not exist."
|
8404 |
msgstr "Kontroler skórki nie iestnieje."
|
8405 |
|
8406 |
+
#: app/libraries/main.php:6302
|
8407 |
#, fuzzy
|
8408 |
#| msgid "Sold out!"
|
8409 |
msgid "Sold Out"
|
8410 |
msgstr "Wyprzedane!"
|
8411 |
|
8412 |
+
#: app/libraries/main.php:6310
|
8413 |
#, fuzzy
|
8414 |
#| msgid "Ticket"
|
8415 |
msgid "Last Few Tickets"
|
8416 |
msgstr "Zgłoszenie"
|
8417 |
|
8418 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
8419 |
#, fuzzy
|
8420 |
#| msgid "hours"
|
8421 |
msgid "Hours"
|
8422 |
msgstr "godzin"
|
8423 |
|
8424 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
8425 |
#, fuzzy
|
8426 |
#| msgid "minutes"
|
8427 |
msgid "Minutes"
|
8428 |
msgstr "minut"
|
8429 |
|
8430 |
+
#: app/libraries/main.php:6652
|
8431 |
msgid "AM / PM"
|
8432 |
msgstr ""
|
8433 |
|
8434 |
+
#: app/libraries/main.php:6653
|
8435 |
+
msgid "AM"
|
8436 |
+
msgstr "AM"
|
8437 |
+
|
8438 |
+
#: app/libraries/main.php:6654
|
8439 |
+
msgid "PM"
|
8440 |
+
msgstr "PM"
|
8441 |
+
|
8442 |
+
#: app/libraries/main.php:6662
|
8443 |
msgid "Ongoing..."
|
8444 |
msgstr ""
|
8445 |
|
8446 |
+
#: app/libraries/main.php:6663
|
8447 |
msgid "Expired!"
|
8448 |
msgstr ""
|
8449 |
|
8451 |
msgid "Please verify your email."
|
8452 |
msgstr "Potwierdź swój email."
|
8453 |
|
8454 |
+
#: app/libraries/notifications.php:158
|
8455 |
msgid "Your booking is received."
|
8456 |
msgstr "Otrzymaliśmy twoją rezerwację."
|
8457 |
|
8458 |
+
#: app/libraries/notifications.php:268
|
8459 |
msgid "Your booking is confirmed."
|
8460 |
msgstr "Twoja rezerwacja jest potwierdzona."
|
8461 |
|
8462 |
+
#: app/libraries/notifications.php:425
|
8463 |
#, fuzzy
|
8464 |
#| msgid "Your booking cannot be canceled."
|
8465 |
msgid "booking canceled."
|
8466 |
msgstr "Twoja rezerwacja nie może zostać anulowana."
|
8467 |
|
8468 |
+
#: app/libraries/notifications.php:503
|
8469 |
msgid "A new booking is received."
|
8470 |
msgstr "Otrzymałeś nową rezerwację."
|
8471 |
|
8472 |
+
#: app/libraries/notifications.php:707
|
8473 |
msgid "A new event is added."
|
8474 |
msgstr "Nowe wydarzenie zostało dodane."
|
8475 |
|
8476 |
+
#: app/libraries/notifications.php:779
|
8477 |
#, fuzzy
|
8478 |
#| msgid "The event published."
|
8479 |
msgid "Your event is published."
|
8480 |
msgstr "Wydarzenie opublikowane."
|
8481 |
|
8482 |
+
#: app/libraries/notifications.php:912
|
8483 |
#, php-format
|
8484 |
msgid "%s to %s"
|
8485 |
msgstr "%s do%s"
|
8486 |
|
8487 |
+
#: app/libraries/notifications.php:1037 app/libraries/notifications.php:1058
|
8488 |
+
#: app/libraries/notifications.php:1060
|
8489 |
msgid "to"
|
8490 |
msgstr ""
|
8491 |
|
8492 |
+
#: app/libraries/notifications.php:1075 app/modules/export/details.php:46
|
8493 |
msgid "+ Add to Google Calendar"
|
8494 |
msgstr "+ Dodaj do Google Calendar"
|
8495 |
|
8496 |
+
#: app/libraries/notifications.php:1076 app/modules/export/details.php:47
|
8497 |
msgid "+ iCal export"
|
8498 |
msgstr "+ eksport iCal"
|
8499 |
|
8500 |
+
#: app/libraries/notifications.php:1139
|
8501 |
msgid "Yes"
|
8502 |
msgstr ""
|
8503 |
|
8504 |
+
#: app/libraries/notifications.php:1139
|
8505 |
msgid "No"
|
8506 |
msgstr ""
|
8507 |
|
8508 |
+
#: app/libraries/skins.php:1069
|
8509 |
#, fuzzy
|
8510 |
#| msgid "Select All"
|
8511 |
msgid "Select"
|
8512 |
msgstr "Zaznacz wszystko"
|
8513 |
|
8514 |
+
#: app/modules/attendees-list/details.php:39
|
8515 |
msgid "Event Attendees"
|
8516 |
msgstr "Uczestnicy wydarzenia"
|
8517 |
|
8518 |
+
#: app/modules/attendees-list/details.php:41
|
8519 |
msgid "No attendee found! Be the first one to book!"
|
8520 |
msgstr "Brak zgłoszonych uczestników! Bądź pierwszym zarejestrowanym!"
|
8521 |
|
8522 |
+
#: app/modules/attendees-list/details.php:62
|
8523 |
#, fuzzy
|
8524 |
#| msgid "Tickets"
|
8525 |
msgid "tickets"
|
8526 |
msgstr "Bilety"
|
8527 |
|
8528 |
+
#: app/modules/attendees-list/details.php:92
|
8529 |
+
#, fuzzy, php-format
|
8530 |
+
#| msgid "%s tickets"
|
8531 |
+
msgid "%s ticket"
|
8532 |
+
msgid_plural "%s tickets"
|
8533 |
+
msgstr[0] "%s biletów"
|
8534 |
+
msgstr[1] "%s biletów"
|
8535 |
+
msgstr[2] "%s biletów"
|
8536 |
+
|
8537 |
#: app/modules/booking/steps/checkout.php:37
|
8538 |
msgid "Checkout"
|
8539 |
msgstr "Zamówienie"
|
8585 |
msgid "Fill other attendees information like the first form."
|
8586 |
msgstr ""
|
8587 |
|
8588 |
+
#: app/modules/booking/steps/tickets.php:32
|
8589 |
msgid "Book Event"
|
8590 |
msgstr "Rezerwuj wydarzenie"
|
8591 |
|
8592 |
+
#: app/modules/booking/steps/tickets.php:59
|
8593 |
#, fuzzy
|
8594 |
#| msgid "Ticket Name"
|
8595 |
msgid "1 Ticket selected."
|
8596 |
msgstr "Nazwa biletu"
|
8597 |
|
8598 |
+
#: app/modules/booking/steps/tickets.php:64
|
8599 |
#, php-format
|
8600 |
msgid "Available %s: <span>%s</span>"
|
8601 |
msgstr ""
|
8602 |
|
8603 |
+
#: app/modules/booking/steps/tickets.php:69
|
8604 |
#, php-format
|
8605 |
msgid "The %s ticket sales has stopped!"
|
8606 |
msgstr ""
|
8607 |
|
8608 |
+
#: app/modules/booking/steps/tickets.php:70
|
8609 |
#, php-format
|
8610 |
msgid "The %s ticket is sold out. You can try another ticket or another date."
|
8611 |
msgstr "Bilety %s zostały wyprzedane. Możesz spróbować wybrać inny bilet."
|
8626 |
msgid "Get Directions"
|
8627 |
msgstr ""
|
8628 |
|
8629 |
+
#: app/modules/links/details.php:17 app/skins/single.php:749
|
8630 |
msgid "Share this event"
|
8631 |
msgstr "Poleć to wydarzenie"
|
8632 |
|
8681 |
msgid "Go to occurrence page"
|
8682 |
msgstr "Przejdź do strony wystąpienia"
|
8683 |
|
8684 |
+
#: app/modules/next-event/details.php:139 app/skins/single.php:1038
|
8685 |
#: app/skins/single/default.php:112 app/skins/single/default.php:343
|
8686 |
#: app/skins/single/m1.php:41 app/skins/single/modern.php:213
|
8687 |
msgid "Time"
|
8817 |
msgid "No Events"
|
8818 |
msgstr "Brak wydarzeń"
|
8819 |
|
8820 |
+
#: app/skins/single.php:393
|
8821 |
msgid "Home"
|
8822 |
msgstr ""
|
8823 |
|
8824 |
+
#: app/skins/single.php:832 app/skins/single/default.php:59
|
8825 |
#: app/skins/single/m1.php:272 app/skins/single/m2.php:193
|
8826 |
#: app/skins/single/modern.php:292
|
8827 |
msgid "Sold out!"
|
8828 |
msgstr "Wyprzedane!"
|
8829 |
|
8830 |
+
#: app/skins/single.php:1112 app/skins/single.php:1171
|
8831 |
#: app/skins/single/default.php:245 app/skins/single/default.php:476
|
8832 |
#: app/skins/single/m1.php:113 app/skins/single/m2.php:36
|
8833 |
#: app/skins/single/modern.php:55
|
8834 |
msgid "Phone"
|
8835 |
msgstr "Telefon"
|
8836 |
|
8837 |
+
#: app/skins/single.php:1126 app/skins/single.php:1185
|
8838 |
#: app/skins/single/default.php:193 app/skins/single/default.php:259
|
8839 |
#: app/skins/single/default.php:424 app/skins/single/default.php:490
|
8840 |
#: app/skins/single/m1.php:127 app/skins/single/m1.php:179
|
8843 |
msgid "Website"
|
8844 |
msgstr "Strona WWW"
|
8845 |
|
8846 |
+
#: app/skins/single.php:1261
|
8847 |
#, fuzzy
|
8848 |
#| msgid "No Search Options"
|
8849 |
msgid "Speakers:"
|
9396 |
#~ msgid "Can I Override MEC Template ?"
|
9397 |
#~ msgstr "Jak zastąpić pliki szablonów MEC?"
|
9398 |
|
|
|
|
|
|
|
9399 |
#~ msgid "Security nonce is missing."
|
9400 |
#~ msgstr "Kod bezpieczeństwa nie został wprowadzony."
|
9401 |
|
Binary file
|
@@ -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: 2020-06-
|
6 |
-
"PO-Revision-Date: 2020-06-
|
7 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
8 |
"Language-Team: Portuguese (Brazil)\n"
|
9 |
"Language: pt_BR\n"
|
@@ -23,7 +23,7 @@ msgstr ""
|
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
26 |
-
#: app/features/mec.php:1099 app/features/mec.php:
|
27 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
28 |
msgid "Modern Events Calendar"
|
29 |
msgstr "Calendário de Eventos Moderno"
|
@@ -316,7 +316,7 @@ msgid "Edit Event"
|
|
316 |
msgstr ""
|
317 |
|
318 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
319 |
-
#: app/features/popup/event.php:
|
320 |
msgid "View Event"
|
321 |
msgstr "Ver Evento"
|
322 |
|
@@ -338,8 +338,8 @@ msgstr "Nenhum evento encontrado na Lixeira!"
|
|
338 |
#: app/features/mec/meta_boxes/search_form.php:654
|
339 |
#: app/features/mec/meta_boxes/search_form.php:760
|
340 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
341 |
-
#: app/features/search.php:68 app/libraries/main.php:
|
342 |
-
#: app/libraries/skins.php:
|
343 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
344 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
345 |
#: app/skins/single/modern.php:137
|
@@ -349,7 +349,7 @@ msgstr "Categoria"
|
|
349 |
#: app/features/events.php:186 app/features/events.php:3193
|
350 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
351 |
#: app/features/mec/meta_boxes/filter.php:69
|
352 |
-
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:
|
353 |
msgid "Categories"
|
354 |
msgstr "Categorias"
|
355 |
|
@@ -438,7 +438,7 @@ msgid "Event Repeating"
|
|
438 |
msgstr "Repetição de Eventos"
|
439 |
|
440 |
#: app/features/events.php:336 app/features/events.php:1215
|
441 |
-
#: app/features/mec/settings.php:756 app/skins/single.php:
|
442 |
msgid "Hourly Schedule"
|
443 |
msgstr "Horários da Programação"
|
444 |
|
@@ -472,18 +472,18 @@ msgstr "Link"
|
|
472 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
473 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
474 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
475 |
-
#: app/features/organizers.php:271 app/features/popup/event.php:
|
476 |
-
#: app/features/popup/event.php:
|
477 |
-
#: app/libraries/main.php:
|
478 |
-
#: app/skins/single.php:
|
479 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
480 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
481 |
msgid "Organizer"
|
482 |
msgstr "Organizador"
|
483 |
|
484 |
#: app/features/events.php:340 app/features/events.php:1092
|
485 |
-
#: app/features/fes/form.php:793 app/libraries/main.php:
|
486 |
-
#: app/skins/single.php:
|
487 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
488 |
#: app/skins/single/modern.php:234
|
489 |
msgid "Cost"
|
@@ -505,8 +505,8 @@ msgstr ""
|
|
505 |
#: app/features/events.php:3769 app/features/fes.php:223
|
506 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
507 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
508 |
-
#: app/features/popup/event.php:
|
509 |
-
#: app/libraries/notifications.php:
|
510 |
msgid "Name"
|
511 |
msgstr "Nome"
|
512 |
|
@@ -518,9 +518,9 @@ msgstr "Nome"
|
|
518 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
519 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
520 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
521 |
-
#: app/libraries/main.php:2967 app/libraries/notifications.php:
|
522 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
523 |
-
#: app/skins/single.php:
|
524 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
525 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
526 |
#: app/skins/single/modern.php:62
|
@@ -536,7 +536,7 @@ msgstr "Data e Hora"
|
|
536 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
537 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
538 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
539 |
-
#: app/features/mec.php:
|
540 |
#: app/features/mec/meta_boxes/display_options.php:278
|
541 |
#: app/features/mec/meta_boxes/display_options.php:517
|
542 |
#: app/features/mec/meta_boxes/display_options.php:623
|
@@ -560,12 +560,12 @@ msgstr "Data Inicial"
|
|
560 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
561 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
562 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
563 |
-
#: app/features/mec.php:
|
564 |
msgid "End Date"
|
565 |
msgstr "Data de Término"
|
566 |
|
567 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
568 |
-
#: app/features/popup/event.php:
|
569 |
#, fuzzy
|
570 |
#| msgid "All Day Event"
|
571 |
msgid "All-day Event"
|
@@ -607,7 +607,7 @@ msgstr ""
|
|
607 |
#: app/features/events.php:2151 app/features/events.php:2166
|
608 |
#: app/features/events.php:2196 app/features/events.php:2209
|
609 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
610 |
-
#: app/features/locations.php:
|
611 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
612 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
613 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
@@ -671,8 +671,8 @@ msgstr ""
|
|
671 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
672 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
673 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
674 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
675 |
-
#: app/features/popup/event.php:
|
676 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
677 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
678 |
#: app/skins/single/modern.php:160
|
@@ -696,7 +696,7 @@ msgid "Repeats"
|
|
696 |
msgstr "Repetições"
|
697 |
|
698 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
699 |
-
#: app/features/mec.php:
|
700 |
#: app/skins/full_calendar/tpl.php:121
|
701 |
msgid "Daily"
|
702 |
msgstr "Diariamente"
|
@@ -720,13 +720,13 @@ msgid "Weekly"
|
|
720 |
msgstr "Semanalmente"
|
721 |
|
722 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
723 |
-
#: app/features/mec.php:
|
724 |
#: app/skins/full_calendar/tpl.php:119
|
725 |
msgid "Monthly"
|
726 |
msgstr "Mensalmente"
|
727 |
|
728 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
729 |
-
#: app/features/mec.php:
|
730 |
#: app/skins/full_calendar/tpl.php:118
|
731 |
msgid "Yearly"
|
732 |
msgstr "Anualmente"
|
@@ -864,7 +864,7 @@ msgstr "Próxima Ocorrência de Outros Eventos"
|
|
864 |
#: app/features/events.php:1088 app/features/events.php:3431
|
865 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
866 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
867 |
-
#: app/features/mec/settings.php:702 app/libraries/main.php:
|
868 |
#: app/widgets/single.php:103
|
869 |
msgid "Event Cost"
|
870 |
msgstr "Custo do Evento"
|
@@ -882,8 +882,8 @@ msgstr "Excluir determinados dias"
|
|
882 |
#: app/features/events.php:1124 app/features/events.php:2330
|
883 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
884 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
885 |
-
#: app/modules/booking/steps/tickets.php:
|
886 |
-
#: app/modules/next-event/details.php:134 app/skins/single.php:
|
887 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
888 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
889 |
msgid "Date"
|
@@ -968,7 +968,7 @@ msgstr "Descrição"
|
|
968 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
969 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
970 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
971 |
-
#: app/libraries/main.php:566 app/libraries/main.php:
|
972 |
#: app/modules/speakers/details.php:18
|
973 |
msgid "Speakers"
|
974 |
msgstr ""
|
@@ -985,7 +985,7 @@ msgid "Event Links"
|
|
985 |
msgstr "Links do Evento"
|
986 |
|
987 |
#: app/features/events.php:1408 app/features/events.php:1414
|
988 |
-
#: app/features/fes/form.php:769 app/libraries/main.php:
|
989 |
msgid "Event Link"
|
990 |
msgstr "Link do Evento"
|
991 |
|
@@ -1012,8 +1012,8 @@ msgid "URL Shortener"
|
|
1012 |
msgstr ""
|
1013 |
|
1014 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1015 |
-
#: app/features/fes/form.php:774 app/libraries/main.php:
|
1016 |
-
#: app/skins/single.php:
|
1017 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1018 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1019 |
#: app/widgets/single.php:107
|
@@ -1052,8 +1052,8 @@ msgid "Total User Booking Limits"
|
|
1052 |
msgstr "Total de limites de reserva"
|
1053 |
|
1054 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1055 |
-
#: app/libraries/book.php:60 app/libraries/main.php:
|
1056 |
-
#: app/modules/booking/steps/tickets.php:
|
1057 |
msgid "Tickets"
|
1058 |
msgstr "Bilhetes"
|
1059 |
|
@@ -1081,7 +1081,7 @@ msgstr "Total de limites de reserva"
|
|
1081 |
|
1082 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1083 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1084 |
-
#: app/modules/booking/steps/tickets.php:
|
1085 |
#: app/skins/available_spot/tpl.php:142
|
1086 |
msgid "Unlimited"
|
1087 |
msgstr "Ilimitado"
|
@@ -1251,7 +1251,7 @@ msgstr "Preço da Etiqueta"
|
|
1251 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1252 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1253 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1254 |
-
#: app/features/search.php:98 app/libraries/skins.php:
|
1255 |
msgid "Label"
|
1256 |
msgstr "Etiqueta"
|
1257 |
|
@@ -1475,8 +1475,8 @@ msgstr "Participante"
|
|
1475 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1476 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1477 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1478 |
-
#: app/features/locations.php:
|
1479 |
-
#: app/features/locations.php:
|
1480 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1481 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1482 |
#: app/features/mec/meta_boxes/search_form.php:108
|
@@ -1490,10 +1490,10 @@ msgstr "Participante"
|
|
1490 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1491 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1492 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1493 |
-
#: app/features/popup/event.php:
|
1494 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1495 |
-
#: app/libraries/main.php:
|
1496 |
-
#: app/skins/single.php:
|
1497 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1498 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1499 |
#: app/skins/single/modern.php:113
|
@@ -1535,7 +1535,7 @@ msgstr "Duplicar"
|
|
1535 |
|
1536 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1537 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1538 |
-
#: app/features/labels.php:177 app/features/locations.php:
|
1539 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1540 |
msgid "ID"
|
1541 |
msgstr "ID"
|
@@ -1557,7 +1557,7 @@ msgstr ""
|
|
1557 |
|
1558 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1559 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1560 |
-
#: app/libraries/main.php:
|
1561 |
msgid "Ticket"
|
1562 |
msgstr "Bilhete"
|
1563 |
|
@@ -1766,7 +1766,7 @@ msgid "eg. yourname@gmail.com"
|
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1769 |
-
#: app/features/popup/event.php:
|
1770 |
msgid "eg. John Smith"
|
1771 |
msgstr "ex. John Smith"
|
1772 |
|
@@ -1793,8 +1793,8 @@ msgstr "Remover Imagem"
|
|
1793 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1794 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1795 |
#: app/features/mec/meta_boxes/filter.php:72
|
1796 |
-
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:
|
1797 |
-
#: app/skins/single.php:
|
1798 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1799 |
#: app/skins/single/modern.php:249
|
1800 |
msgid "Labels"
|
@@ -2607,7 +2607,7 @@ msgid "Featured"
|
|
2607 |
msgstr "Imagem Destacada"
|
2608 |
|
2609 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2610 |
-
#: app/libraries/main.php:
|
2611 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2612 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2613 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
@@ -2625,30 +2625,30 @@ msgstr "Cancelado"
|
|
2625 |
msgid "You can show featured and canceled events by a different style!"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: app/features/labels.php:180 app/features/locations.php:
|
2629 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2630 |
-
#: app/modules/booking/steps/tickets.php:
|
2631 |
msgid "Count"
|
2632 |
msgstr "Contagem"
|
2633 |
|
2634 |
-
#: app/features/labels.php:181 app/features/locations.php:
|
2635 |
#: app/features/organizers.php:207
|
2636 |
msgid "Slug"
|
2637 |
msgstr "Slug"
|
2638 |
|
2639 |
-
#: app/features/labels.php:221 app/features/locations.php:
|
2640 |
#, php-format
|
2641 |
msgid "Event %s"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2645 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2646 |
-
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:
|
2647 |
msgid "Locations"
|
2648 |
msgstr "Localizações"
|
2649 |
|
2650 |
-
#: app/features/locations.php:
|
2651 |
-
#: app/features/locations.php:
|
2652 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2653 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2654 |
#: app/features/mec/meta_boxes/search_form.php:214
|
@@ -2663,97 +2663,97 @@ msgstr "Localizações"
|
|
2663 |
msgid "Address"
|
2664 |
msgstr "Endereço"
|
2665 |
|
2666 |
-
#: app/features/locations.php:
|
2667 |
msgid "Enter the location address"
|
2668 |
msgstr "Digite o endereço da localização"
|
2669 |
|
2670 |
-
#: app/features/locations.php:
|
2671 |
-
#: app/features/locations.php:
|
2672 |
msgid "Latitude"
|
2673 |
msgstr "Latitude"
|
2674 |
|
2675 |
-
#: app/features/locations.php:
|
2676 |
msgid "Geo latitude (Optional)"
|
2677 |
msgstr "Geo latitude (Opcional)"
|
2678 |
|
2679 |
-
#: app/features/locations.php:
|
2680 |
-
#: app/features/locations.php:
|
2681 |
msgid "Longitude"
|
2682 |
msgstr "Longitude"
|
2683 |
|
2684 |
-
#: app/features/locations.php:
|
2685 |
msgid "Geo longitude (Optional)"
|
2686 |
msgstr "Geo longitude (Opcional)"
|
2687 |
|
2688 |
-
#: app/features/locations.php:
|
2689 |
-
#: app/features/locations.php:
|
2690 |
#, fuzzy
|
2691 |
#| msgid "Locations"
|
2692 |
msgid "Location Website"
|
2693 |
msgstr "Localizações"
|
2694 |
|
2695 |
-
#: app/features/locations.php:
|
2696 |
#, fuzzy
|
2697 |
#| msgid "Geo latitude (Optional)"
|
2698 |
msgid "Location Website (Optional)"
|
2699 |
msgstr "Geo latitude (Opcional)"
|
2700 |
|
2701 |
-
#: app/features/locations.php:
|
2702 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2703 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2704 |
msgid "Thumbnail"
|
2705 |
msgstr "Miniatura"
|
2706 |
|
2707 |
-
#: app/features/locations.php:
|
2708 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2709 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2710 |
msgid "Upload/Add image"
|
2711 |
msgstr "Enviar/Adicionar imagem"
|
2712 |
|
2713 |
-
#: app/features/locations.php:
|
2714 |
-
#: app/features/locations.php:
|
2715 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2716 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2717 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2718 |
msgid "Remove image"
|
2719 |
msgstr "Remover imagem"
|
2720 |
|
2721 |
-
#: app/features/locations.php:
|
2722 |
msgid "Hide location"
|
2723 |
msgstr "Ocultar localização"
|
2724 |
|
2725 |
-
#: app/features/locations.php:
|
2726 |
msgid "Insert a new location"
|
2727 |
msgstr "Inserir uma nova localização"
|
2728 |
|
2729 |
-
#: app/features/locations.php:
|
2730 |
msgid "Choose one of saved locations or insert new one below."
|
2731 |
msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
|
2732 |
|
2733 |
-
#: app/features/locations.php:
|
2734 |
msgid "Location Name"
|
2735 |
msgstr "Nome da Localização"
|
2736 |
|
2737 |
-
#: app/features/locations.php:
|
2738 |
msgid "eg. City Hall"
|
2739 |
msgstr "exemplo; Prefeitura"
|
2740 |
|
2741 |
-
#: app/features/locations.php:
|
2742 |
-
#: app/features/popup/event.php:
|
2743 |
msgid "Event Location"
|
2744 |
msgstr "Localização do Evento"
|
2745 |
|
2746 |
-
#: app/features/locations.php:
|
2747 |
msgid "eg. City hall, Manhattan, New York"
|
2748 |
msgstr "exemplo; Prefeitura, Manhattan, Nova Iorque"
|
2749 |
|
2750 |
-
#: app/features/locations.php:
|
2751 |
#, fuzzy
|
2752 |
#| msgid "Longitude"
|
2753 |
msgid "Latitude/Longitude"
|
2754 |
msgstr "Longitude"
|
2755 |
|
2756 |
-
#: app/features/locations.php:
|
2757 |
msgid ""
|
2758 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2759 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
@@ -2762,26 +2762,26 @@ msgid ""
|
|
2762 |
"the location on the map to find lat long coordinates."
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#: app/features/locations.php:
|
2766 |
msgid "Get Latitude and Longitude"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: app/features/locations.php:
|
2770 |
-
#: app/features/popup/event.php:
|
2771 |
msgid "Choose image"
|
2772 |
msgstr "Escolha uma imagem"
|
2773 |
|
2774 |
-
#: app/features/locations.php:
|
2775 |
msgid "Don't show map in single event page"
|
2776 |
msgstr "Não mostrar mapa na página de evento individual"
|
2777 |
|
2778 |
-
#: app/features/locations.php:
|
2779 |
#, fuzzy
|
2780 |
#| msgid "Search Locations"
|
2781 |
msgid "Other Locations"
|
2782 |
msgstr "Pesquisar Localizações"
|
2783 |
|
2784 |
-
#: app/features/locations.php:
|
2785 |
msgid ""
|
2786 |
"You can select extra locations in addition to main location if you like."
|
2787 |
msgstr ""
|
@@ -2858,7 +2858,7 @@ msgstr "Suporte"
|
|
2858 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2859 |
#: app/features/mec/meta_boxes/filter.php:71
|
2860 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2861 |
-
#: app/libraries/main.php:
|
2862 |
msgid "Organizers"
|
2863 |
msgstr "Organizadores"
|
2864 |
|
@@ -2899,7 +2899,7 @@ msgstr "Exportar"
|
|
2899 |
msgid "MEC - Go Pro"
|
2900 |
msgstr "Suporte"
|
2901 |
|
2902 |
-
#: app/features/mec.php:455 app/features/mec.php:
|
2903 |
#: app/features/mec/go-pro.php:9
|
2904 |
msgid "Go Pro"
|
2905 |
msgstr ""
|
@@ -2956,75 +2956,75 @@ msgstr ""
|
|
2956 |
msgid "Modal Popup"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#: app/features/mec.php:
|
2960 |
msgid "Total Bookings"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: app/features/mec.php:
|
2964 |
#, fuzzy
|
2965 |
#| msgid "Modern Events Calendar"
|
2966 |
msgid "Modern Events Calendar (Lite)"
|
2967 |
msgstr "Calendário de Eventos Moderno"
|
2968 |
|
2969 |
-
#: app/features/mec.php:
|
2970 |
#: app/features/mec/settings.php:428
|
2971 |
msgid "Upcoming Events"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: app/features/mec.php:
|
2975 |
#, fuzzy
|
2976 |
#| msgid "Update Label"
|
2977 |
msgid "News & Updates"
|
2978 |
msgstr "Atualizar Etiqueta"
|
2979 |
|
2980 |
-
#: app/features/mec.php:
|
2981 |
msgid "Blog"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: app/features/mec.php:
|
2985 |
msgid "Help"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: app/features/mec.php:
|
2989 |
msgid "This Month"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: app/features/mec.php:
|
2993 |
msgid "Last Month"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: app/features/mec.php:
|
2997 |
msgid "This Year"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: app/features/mec.php:
|
3001 |
msgid "Last Year"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#: app/features/mec.php:
|
3005 |
msgid "Bar"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: app/features/mec.php:
|
3009 |
msgid "Line"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: app/features/mec.php:
|
3013 |
msgid "Filter"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: app/features/mec.php:
|
3017 |
#, php-format
|
3018 |
msgid "Total Sells (%s)"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: app/features/mec.php:
|
3022 |
#, fuzzy
|
3023 |
#| msgid "Modern Events Calendar"
|
3024 |
msgid "Print Calendar"
|
3025 |
msgstr "Calendário de Eventos Moderno"
|
3026 |
|
3027 |
-
#: app/features/mec.php:
|
3028 |
#, fuzzy
|
3029 |
#| msgid "Multiple Day Events"
|
3030 |
msgid "Display Events"
|
@@ -3429,7 +3429,7 @@ msgstr ""
|
|
3429 |
#: app/features/mec/notifications.php:923
|
3430 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3431 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3432 |
-
#: app/features/mec/single.php:318 app/libraries/main.php:
|
3433 |
msgid "Verified"
|
3434 |
msgstr "Verificado"
|
3435 |
|
@@ -4600,8 +4600,8 @@ msgstr "Mostrar Formulário de Pesquisa"
|
|
4600 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4601 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4602 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4603 |
-
#: app/features/speakers.php:269 app/libraries/main.php:
|
4604 |
-
#: app/libraries/skins.php:
|
4605 |
msgid "Speaker"
|
4606 |
msgstr ""
|
4607 |
|
@@ -4617,7 +4617,7 @@ msgstr ""
|
|
4617 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4618 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4619 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4620 |
-
#: app/features/search.php:92 app/libraries/skins.php:
|
4621 |
#, fuzzy
|
4622 |
#| msgid "Tags"
|
4623 |
msgid "Tag"
|
@@ -5423,7 +5423,7 @@ msgstr ""
|
|
5423 |
"Ele envia para administrador para notificá-lo que recebeu uma nova reserva."
|
5424 |
|
5425 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5426 |
-
#: app/libraries/notifications.php:
|
5427 |
msgid "Booking Reminder"
|
5428 |
msgstr ""
|
5429 |
|
@@ -5451,7 +5451,7 @@ msgstr ""
|
|
5451 |
msgid "Please, insert comma to separate reminder days."
|
5452 |
msgstr ""
|
5453 |
|
5454 |
-
#: app/features/mec/notifications.php:660 app/features/popup/event.php:
|
5455 |
#: app/libraries/main.php:584
|
5456 |
msgid "New Event"
|
5457 |
msgstr "Novo Evento"
|
@@ -5682,7 +5682,7 @@ msgid "You can enable/disable Schema scripts"
|
|
5682 |
msgstr ""
|
5683 |
|
5684 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5685 |
-
#: app/libraries/main.php:
|
5686 |
msgid "Weekdays"
|
5687 |
msgstr "Dias da semana"
|
5688 |
|
@@ -6472,7 +6472,7 @@ msgid ""
|
|
6472 |
msgstr "Mostrar opção de dias excepcionais na página Adicionar/Editar eventos"
|
6473 |
|
6474 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6475 |
-
#: app/skins/single.php:161 app/skins/single.php:
|
6476 |
#, fuzzy
|
6477 |
#| msgid "featured event"
|
6478 |
msgid "Related Events"
|
@@ -7135,7 +7135,7 @@ msgid "Insert organizer email address."
|
|
7135 |
msgstr "Insira o endereço de e-mail do organizador."
|
7136 |
|
7137 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7138 |
-
#: app/features/organizers.php:291 app/features/popup/event.php:
|
7139 |
msgid "Link to organizer page"
|
7140 |
msgstr "Link para a página do organizador"
|
7141 |
|
@@ -7154,42 +7154,42 @@ msgstr "Informações de contato"
|
|
7154 |
msgid "Event Main %s"
|
7155 |
msgstr ""
|
7156 |
|
7157 |
-
#: app/features/organizers.php:263 app/features/popup/event.php:
|
7158 |
msgid "Hide organizer"
|
7159 |
msgstr "Ocultar organizador"
|
7160 |
|
7161 |
-
#: app/features/organizers.php:264 app/features/popup/event.php:
|
7162 |
msgid "Insert a new organizer"
|
7163 |
msgstr "Inserir um novo organizador"
|
7164 |
|
7165 |
-
#: app/features/organizers.php:272 app/features/popup/event.php:
|
7166 |
msgid "Choose one of saved organizers or insert new one below."
|
7167 |
msgstr "Escolha um dos organizadores salvos ou insira um novo abaixo."
|
7168 |
|
7169 |
-
#: app/features/organizers.php:283 app/features/popup/event.php:
|
7170 |
msgid "Phone number."
|
7171 |
msgstr ""
|
7172 |
|
7173 |
-
#: app/features/organizers.php:284 app/features/popup/event.php:
|
7174 |
msgid "eg. +1 (234) 5678"
|
7175 |
msgstr "ex. (00) 0000-0000"
|
7176 |
|
7177 |
-
#: app/features/organizers.php:287 app/features/popup/event.php:
|
7178 |
msgid "Email address."
|
7179 |
msgstr ""
|
7180 |
|
7181 |
-
#: app/features/organizers.php:288 app/features/popup/event.php:
|
7182 |
msgid "eg. john@smith.com"
|
7183 |
msgstr "ex. john@smith.com"
|
7184 |
|
7185 |
-
#: app/features/organizers.php:292 app/features/popup/event.php:
|
7186 |
#, fuzzy
|
7187 |
#| msgid "http://webnus.biz"
|
7188 |
msgid "eg. https://webnus.net"
|
7189 |
msgstr "http://webnus.biz"
|
7190 |
|
7191 |
-
#: app/features/organizers.php:312 app/libraries/main.php:
|
7192 |
-
#: app/skins/single.php:
|
7193 |
msgid "Other Organizers"
|
7194 |
msgstr ""
|
7195 |
|
@@ -7214,67 +7214,57 @@ msgstr "Nota do Evento"
|
|
7214 |
msgid "Event name is required"
|
7215 |
msgstr ""
|
7216 |
|
7217 |
-
#: app/features/popup/event.php:
|
7218 |
-
#: app/libraries/main.php:6643
|
7219 |
-
msgid "AM"
|
7220 |
-
msgstr "AM"
|
7221 |
-
|
7222 |
-
#: app/features/popup/event.php:149 app/features/popup/event.php:231
|
7223 |
-
#: app/libraries/main.php:6644
|
7224 |
-
msgid "PM"
|
7225 |
-
msgstr "PM"
|
7226 |
-
|
7227 |
-
#: app/features/popup/event.php:256
|
7228 |
#, fuzzy
|
7229 |
#| msgid "Choose one of saved locations or insert new one below."
|
7230 |
msgid "Choose one of saved locations or insert new one."
|
7231 |
msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
|
7232 |
|
7233 |
-
#: app/features/popup/event.php:
|
7234 |
#, fuzzy
|
7235 |
#| msgid "Add New Location"
|
7236 |
msgid "Add Location"
|
7237 |
msgstr "Adicionar Nova Localização"
|
7238 |
|
7239 |
-
#: app/features/popup/event.php:
|
7240 |
#, fuzzy
|
7241 |
#| msgid "Add New Organizer"
|
7242 |
msgid "Add Organizer"
|
7243 |
msgstr "Adicionar Novo Organizador"
|
7244 |
|
7245 |
-
#: app/features/popup/event.php:
|
7246 |
#, fuzzy
|
7247 |
#| msgid "Categories"
|
7248 |
msgid "All Categories"
|
7249 |
msgstr "Categorias"
|
7250 |
|
7251 |
-
#: app/features/popup/event.php:
|
7252 |
msgid "Most Used"
|
7253 |
msgstr ""
|
7254 |
|
7255 |
-
#: app/features/popup/event.php:
|
7256 |
#, fuzzy
|
7257 |
#| msgid "Add New Label"
|
7258 |
msgid "Add New Category"
|
7259 |
msgstr "Adicionar Nova Etiqueta"
|
7260 |
|
7261 |
-
#: app/features/popup/event.php:
|
7262 |
#, fuzzy
|
7263 |
#| msgid "Featured Image"
|
7264 |
msgid "Set Featured Image"
|
7265 |
msgstr "Imagem Destacada"
|
7266 |
|
7267 |
-
#: app/features/popup/event.php:
|
7268 |
msgid "Your Event Has Been Created."
|
7269 |
msgstr ""
|
7270 |
|
7271 |
-
#: app/features/popup/event.php:
|
7272 |
msgid "Prev"
|
7273 |
msgstr ""
|
7274 |
|
7275 |
-
#: app/features/popup/event.php:
|
7276 |
#: app/modules/booking/steps/form.php:188
|
7277 |
-
#: app/modules/booking/steps/tickets.php:
|
7278 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7279 |
msgid "Next"
|
7280 |
msgstr "Próximo"
|
@@ -7517,11 +7507,11 @@ msgstr "Formulário de Pesquisa"
|
|
7517 |
msgid "No search result."
|
7518 |
msgstr ""
|
7519 |
|
7520 |
-
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:
|
7521 |
-
#: app/libraries/notifications.php:
|
7522 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7523 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7524 |
-
#: app/modules/next-event/details.php:145 app/skins/single.php:
|
7525 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7526 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7527 |
#, fuzzy
|
@@ -7619,12 +7609,12 @@ msgstr ""
|
|
7619 |
msgid "%s Price"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
-
#: app/libraries/book.php:
|
7623 |
msgid "Discount"
|
7624 |
msgstr "Desconto"
|
7625 |
|
7626 |
-
#: app/libraries/book.php:
|
7627 |
-
#: app/modules/booking/default.php:
|
7628 |
msgid "Download Invoice"
|
7629 |
msgstr ""
|
7630 |
|
@@ -7647,51 +7637,51 @@ msgctxt "plugin link"
|
|
7647 |
msgid "Upgrade"
|
7648 |
msgstr ""
|
7649 |
|
7650 |
-
#: app/libraries/factory.php:
|
7651 |
msgid "day"
|
7652 |
msgstr "dia"
|
7653 |
|
7654 |
-
#: app/libraries/factory.php:
|
7655 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7656 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7657 |
msgid "days"
|
7658 |
msgstr "dias"
|
7659 |
|
7660 |
-
#: app/libraries/factory.php:
|
7661 |
msgid "hour"
|
7662 |
msgstr "hora"
|
7663 |
|
7664 |
-
#: app/libraries/factory.php:
|
7665 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7666 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7667 |
msgid "hours"
|
7668 |
msgstr "horas"
|
7669 |
|
7670 |
-
#: app/libraries/factory.php:
|
7671 |
msgid "minute"
|
7672 |
msgstr "minuto"
|
7673 |
|
7674 |
-
#: app/libraries/factory.php:
|
7675 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7676 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7677 |
msgid "minutes"
|
7678 |
msgstr "minutos"
|
7679 |
|
7680 |
-
#: app/libraries/factory.php:
|
7681 |
msgid "second"
|
7682 |
msgstr "segundo"
|
7683 |
|
7684 |
-
#: app/libraries/factory.php:
|
7685 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7686 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7687 |
msgid "seconds"
|
7688 |
msgstr "segundos"
|
7689 |
|
7690 |
-
#: app/libraries/factory.php:
|
7691 |
msgid "MEC Single Sidebar"
|
7692 |
msgstr ""
|
7693 |
|
7694 |
-
#: app/libraries/factory.php:
|
7695 |
msgid "Custom sidebar for single and modal page of MEC."
|
7696 |
msgstr ""
|
7697 |
|
@@ -7755,31 +7745,31 @@ msgstr "Visualização do Slider"
|
|
7755 |
msgid "Timeline View"
|
7756 |
msgstr "Visualização do Slider"
|
7757 |
|
7758 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
7759 |
msgid "SU"
|
7760 |
msgstr "DOM"
|
7761 |
|
7762 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
7763 |
msgid "MO"
|
7764 |
msgstr "SEG"
|
7765 |
|
7766 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
7767 |
msgid "TU"
|
7768 |
msgstr "TER"
|
7769 |
|
7770 |
-
#: app/libraries/main.php:388 app/libraries/main.php:
|
7771 |
msgid "WE"
|
7772 |
msgstr "QUA"
|
7773 |
|
7774 |
-
#: app/libraries/main.php:389 app/libraries/main.php:
|
7775 |
msgid "TH"
|
7776 |
msgstr "QUI"
|
7777 |
|
7778 |
-
#: app/libraries/main.php:390 app/libraries/main.php:
|
7779 |
msgid "FR"
|
7780 |
msgstr "SEX"
|
7781 |
|
7782 |
-
#: app/libraries/main.php:391 app/libraries/main.php:
|
7783 |
msgid "SA"
|
7784 |
msgstr "SAB"
|
7785 |
|
@@ -8114,115 +8104,115 @@ msgstr "Inserir uma etiqueta para esta opção"
|
|
8114 |
msgid "Free"
|
8115 |
msgstr "Grátis"
|
8116 |
|
8117 |
-
#: app/libraries/main.php:
|
8118 |
#, fuzzy
|
8119 |
#| msgid "M.E. Calendar"
|
8120 |
msgid "M.E. Calender"
|
8121 |
msgstr "Calendário E.M."
|
8122 |
|
8123 |
-
#: app/libraries/main.php:
|
8124 |
#, php-format
|
8125 |
msgid "Copy of %s"
|
8126 |
msgstr "Cópia de %s"
|
8127 |
|
8128 |
-
#: app/libraries/main.php:
|
8129 |
msgid "Booked an event."
|
8130 |
msgstr "Um evento reservado."
|
8131 |
|
8132 |
-
#: app/libraries/main.php:
|
8133 |
#, php-format
|
8134 |
msgid "%s booked %s event."
|
8135 |
msgstr "Evento %s reservado %s."
|
8136 |
|
8137 |
-
#: app/libraries/main.php:
|
8138 |
msgid "Taxonomies"
|
8139 |
msgstr ""
|
8140 |
|
8141 |
-
#: app/libraries/main.php:
|
8142 |
msgid "Category Plural Label"
|
8143 |
msgstr ""
|
8144 |
|
8145 |
-
#: app/libraries/main.php:
|
8146 |
msgid "Category Singular Label"
|
8147 |
msgstr ""
|
8148 |
|
8149 |
-
#: app/libraries/main.php:
|
8150 |
msgid "Label Plural Label"
|
8151 |
msgstr ""
|
8152 |
|
8153 |
-
#: app/libraries/main.php:
|
8154 |
msgid "Label Singular Label"
|
8155 |
msgstr ""
|
8156 |
|
8157 |
-
#: app/libraries/main.php:
|
8158 |
msgid "label"
|
8159 |
msgstr ""
|
8160 |
|
8161 |
-
#: app/libraries/main.php:
|
8162 |
msgid "Location Plural Label"
|
8163 |
msgstr ""
|
8164 |
|
8165 |
-
#: app/libraries/main.php:
|
8166 |
msgid "Location Singular Label"
|
8167 |
msgstr ""
|
8168 |
|
8169 |
-
#: app/libraries/main.php:
|
8170 |
msgid "Organizer Plural Label"
|
8171 |
msgstr ""
|
8172 |
|
8173 |
-
#: app/libraries/main.php:
|
8174 |
msgid "Organizer Singular Label"
|
8175 |
msgstr ""
|
8176 |
|
8177 |
-
#: app/libraries/main.php:
|
8178 |
#, fuzzy
|
8179 |
#| msgid "Search Labels"
|
8180 |
msgid "Speaker Plural Label"
|
8181 |
msgstr "Pesquisar Etiquetas"
|
8182 |
|
8183 |
-
#: app/libraries/main.php:
|
8184 |
#, fuzzy
|
8185 |
#| msgid "Popular Labels"
|
8186 |
msgid "Speaker Singular Label"
|
8187 |
msgstr "Etiquetas Populares"
|
8188 |
|
8189 |
-
#: app/libraries/main.php:
|
8190 |
msgid "Sunday abbreviation"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
-
#: app/libraries/main.php:
|
8194 |
msgid "Monday abbreviation"
|
8195 |
msgstr ""
|
8196 |
|
8197 |
-
#: app/libraries/main.php:
|
8198 |
msgid "Tuesday abbreviation"
|
8199 |
msgstr ""
|
8200 |
|
8201 |
-
#: app/libraries/main.php:
|
8202 |
msgid "Wednesday abbreviation"
|
8203 |
msgstr ""
|
8204 |
|
8205 |
-
#: app/libraries/main.php:
|
8206 |
msgid "Thursday abbreviation"
|
8207 |
msgstr ""
|
8208 |
|
8209 |
-
#: app/libraries/main.php:
|
8210 |
msgid "Friday abbreviation"
|
8211 |
msgstr ""
|
8212 |
|
8213 |
-
#: app/libraries/main.php:
|
8214 |
msgid "Saturday abbreviation"
|
8215 |
msgstr ""
|
8216 |
|
8217 |
-
#: app/libraries/main.php:
|
8218 |
msgid "Others"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
-
#: app/libraries/main.php:
|
8222 |
msgid "Booking Success Message"
|
8223 |
msgstr ""
|
8224 |
|
8225 |
-
#: app/libraries/main.php:
|
8226 |
#, fuzzy
|
8227 |
#| msgid ""
|
8228 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
@@ -8234,17 +8224,17 @@ msgstr ""
|
|
8234 |
"Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
|
8235 |
"reserva é necessária, por favor verifique seu e-mail."
|
8236 |
|
8237 |
-
#: app/libraries/main.php:
|
8238 |
msgid "Register Button"
|
8239 |
msgstr ""
|
8240 |
|
8241 |
-
#: app/libraries/main.php:
|
8242 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8243 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8244 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8245 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8246 |
-
#: app/skins/masonry/render.php:150 app/skins/single.php:
|
8247 |
-
#: app/skins/single.php:
|
8248 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8249 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8250 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
@@ -8256,165 +8246,173 @@ msgstr ""
|
|
8256 |
msgid "REGISTER"
|
8257 |
msgstr "REGISTRAR"
|
8258 |
|
8259 |
-
#: app/libraries/main.php:
|
8260 |
msgid "View Detail Button"
|
8261 |
msgstr ""
|
8262 |
|
8263 |
-
#: app/libraries/main.php:
|
8264 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8265 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8266 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8267 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8268 |
-
#: app/skins/single.php:
|
8269 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8270 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8271 |
msgid "View Detail"
|
8272 |
msgstr "Ver Detalhes"
|
8273 |
|
8274 |
-
#: app/libraries/main.php:
|
8275 |
msgid "Event Detail Button"
|
8276 |
msgstr ""
|
8277 |
|
8278 |
-
#: app/libraries/main.php:
|
8279 |
msgid "Event Detail"
|
8280 |
msgstr "Detalhes do Evento"
|
8281 |
|
8282 |
-
#: app/libraries/main.php:
|
8283 |
msgid "More Info Link"
|
8284 |
msgstr ""
|
8285 |
|
8286 |
-
#: app/libraries/main.php:
|
8287 |
msgid "Ticket (Singular)"
|
8288 |
msgstr ""
|
8289 |
|
8290 |
-
#: app/libraries/main.php:
|
8291 |
msgid "Tickets (Plural)"
|
8292 |
msgstr ""
|
8293 |
|
8294 |
-
#: app/libraries/main.php:
|
8295 |
msgid "EventON"
|
8296 |
msgstr ""
|
8297 |
|
8298 |
-
#: app/libraries/main.php:
|
8299 |
msgid "The Events Calendar"
|
8300 |
msgstr ""
|
8301 |
|
8302 |
-
#: app/libraries/main.php:
|
8303 |
msgid "Events Schedule WP Plugin"
|
8304 |
msgstr ""
|
8305 |
|
8306 |
-
#: app/libraries/main.php:
|
8307 |
msgid "Calendarize It"
|
8308 |
msgstr ""
|
8309 |
|
8310 |
-
#: app/libraries/main.php:
|
8311 |
#, fuzzy
|
8312 |
#| msgid "No Search Options"
|
8313 |
msgid "Event Espresso"
|
8314 |
msgstr "Sem Opções de Pesquisa"
|
8315 |
|
8316 |
-
#: app/libraries/main.php:
|
8317 |
#, fuzzy
|
8318 |
#| msgid "Event Repeating"
|
8319 |
msgid "Events Manager (Recurring)"
|
8320 |
msgstr "Repetição de Eventos"
|
8321 |
|
8322 |
-
#: app/libraries/main.php:
|
8323 |
#, fuzzy
|
8324 |
#| msgid "Modern Events Calendar"
|
8325 |
msgid "Events Manager (Single)"
|
8326 |
msgstr "Calendário de Eventos Moderno"
|
8327 |
|
8328 |
-
#: app/libraries/main.php:
|
8329 |
msgid "Confirmed"
|
8330 |
msgstr "Confirmado"
|
8331 |
|
8332 |
-
#: app/libraries/main.php:
|
8333 |
msgid "Rejected"
|
8334 |
msgstr "Recusado"
|
8335 |
|
8336 |
-
#: app/libraries/main.php:
|
8337 |
msgid "Pending"
|
8338 |
msgstr "Pendente"
|
8339 |
|
8340 |
-
#: app/libraries/main.php:
|
8341 |
msgid "Waiting"
|
8342 |
msgstr "Aguardando"
|
8343 |
|
8344 |
-
#: app/libraries/main.php:
|
8345 |
#, fuzzy
|
8346 |
#| msgid "Sunday"
|
8347 |
msgid "Sun"
|
8348 |
msgstr "Domingo"
|
8349 |
|
8350 |
-
#: app/libraries/main.php:
|
8351 |
#, fuzzy
|
8352 |
#| msgid "Month"
|
8353 |
msgid "Mon"
|
8354 |
msgstr "Mês"
|
8355 |
|
8356 |
-
#: app/libraries/main.php:
|
8357 |
#, fuzzy
|
8358 |
#| msgid "Tel"
|
8359 |
msgid "Tue"
|
8360 |
msgstr "Telefone"
|
8361 |
|
8362 |
-
#: app/libraries/main.php:
|
8363 |
msgid "Wed"
|
8364 |
msgstr ""
|
8365 |
|
8366 |
-
#: app/libraries/main.php:
|
8367 |
msgid "Thu"
|
8368 |
msgstr ""
|
8369 |
|
8370 |
-
#: app/libraries/main.php:
|
8371 |
#, fuzzy
|
8372 |
#| msgid "Friday"
|
8373 |
msgid "Fri"
|
8374 |
msgstr "Sexta-feira"
|
8375 |
|
8376 |
-
#: app/libraries/main.php:
|
8377 |
#, fuzzy
|
8378 |
#| msgid "Start"
|
8379 |
msgid "Sat"
|
8380 |
msgstr "Iniciar"
|
8381 |
|
8382 |
-
#: app/libraries/main.php:
|
8383 |
#: app/libraries/render.php:432
|
8384 |
msgid "Skin controller does not exist."
|
8385 |
msgstr "Controlador de pele não existe."
|
8386 |
|
8387 |
-
#: app/libraries/main.php:
|
8388 |
msgid "Sold Out"
|
8389 |
msgstr ""
|
8390 |
|
8391 |
-
#: app/libraries/main.php:
|
8392 |
#, fuzzy
|
8393 |
#| msgid "Ticket"
|
8394 |
msgid "Last Few Tickets"
|
8395 |
msgstr "Bilhete"
|
8396 |
|
8397 |
-
#: app/libraries/main.php:
|
8398 |
#, fuzzy
|
8399 |
#| msgid "hours"
|
8400 |
msgid "Hours"
|
8401 |
msgstr "horas"
|
8402 |
|
8403 |
-
#: app/libraries/main.php:
|
8404 |
#, fuzzy
|
8405 |
#| msgid "minutes"
|
8406 |
msgid "Minutes"
|
8407 |
msgstr "minutos"
|
8408 |
|
8409 |
-
#: app/libraries/main
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-06-16 16:45+0430\n"
|
6 |
+
"PO-Revision-Date: 2020-06-16 16:48+0430\n"
|
7 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
8 |
"Language-Team: Portuguese (Brazil)\n"
|
9 |
"Language: pt_BR\n"
|
23 |
|
24 |
#: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
|
25 |
#: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
|
26 |
+
#: app/features/mec.php:1099 app/features/mec.php:1129
|
27 |
#: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
|
28 |
msgid "Modern Events Calendar"
|
29 |
msgstr "Calendário de Eventos Moderno"
|
316 |
msgstr ""
|
317 |
|
318 |
#: app/features/events.php:167 app/features/fes/list.php:82
|
319 |
+
#: app/features/popup/event.php:252
|
320 |
msgid "View Event"
|
321 |
msgstr "Ver Evento"
|
322 |
|
338 |
#: app/features/mec/meta_boxes/search_form.php:654
|
339 |
#: app/features/mec/meta_boxes/search_form.php:760
|
340 |
#: app/features/mec/settings.php:858 app/features/mec/single.php:233
|
341 |
+
#: app/features/search.php:68 app/libraries/main.php:5632
|
342 |
+
#: app/libraries/skins.php:919 app/skins/single.php:854
|
343 |
#: app/skins/single/default.php:210 app/skins/single/default.php:441
|
344 |
#: app/skins/single/m1.php:195 app/skins/single/m2.php:118
|
345 |
#: app/skins/single/modern.php:137
|
349 |
#: app/features/events.php:186 app/features/events.php:3193
|
350 |
#: app/features/fes/form.php:822 app/features/mec.php:437
|
351 |
#: app/features/mec/meta_boxes/filter.php:69
|
352 |
+
#: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5631
|
353 |
msgid "Categories"
|
354 |
msgstr "Categorias"
|
355 |
|
438 |
msgstr "Repetição de Eventos"
|
439 |
|
440 |
#: app/features/events.php:336 app/features/events.php:1215
|
441 |
+
#: app/features/mec/settings.php:756 app/skins/single.php:1247
|
442 |
msgid "Hourly Schedule"
|
443 |
msgstr "Horários da Programação"
|
444 |
|
472 |
#: app/features/mec/settings.php:870 app/features/mec/single.php:237
|
473 |
#: app/features/organizers.php:58 app/features/organizers.php:204
|
474 |
#: app/features/organizers.php:260 app/features/organizers.php:262
|
475 |
+
#: app/features/organizers.php:271 app/features/popup/event.php:163
|
476 |
+
#: app/features/popup/event.php:172 app/features/search.php:80
|
477 |
+
#: app/libraries/main.php:5638 app/libraries/skins.php:971
|
478 |
+
#: app/skins/single.php:1102 app/skins/single/default.php:235
|
479 |
#: app/skins/single/default.php:466 app/skins/single/m1.php:103
|
480 |
#: app/skins/single/m2.php:26 app/skins/single/modern.php:45
|
481 |
msgid "Organizer"
|
482 |
msgstr "Organizador"
|
483 |
|
484 |
#: app/features/events.php:340 app/features/events.php:1092
|
485 |
+
#: app/features/fes/form.php:793 app/libraries/main.php:5665
|
486 |
+
#: app/skins/single.php:880 app/skins/single/default.php:136
|
487 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:62
|
488 |
#: app/skins/single/modern.php:234
|
489 |
msgid "Cost"
|
505 |
#: app/features/events.php:3769 app/features/fes.php:223
|
506 |
#: app/features/fes/form.php:752 app/features/labels.php:178
|
507 |
#: app/features/mec/booking.php:45 app/features/organizers.php:279
|
508 |
+
#: app/features/popup/event.php:182 app/features/profile/profile.php:177
|
509 |
+
#: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
|
510 |
msgid "Name"
|
511 |
msgstr "Nome"
|
512 |
|
518 |
#: app/features/organizers.php:152 app/features/profile/profile.php:180
|
519 |
#: app/features/speakers.php:127 app/features/speakers.php:196
|
520 |
#: app/libraries/main.php:1597 app/libraries/main.php:1666
|
521 |
+
#: app/libraries/main.php:2967 app/libraries/notifications.php:1122
|
522 |
#: app/modules/booking/steps/form.php:55 app/modules/booking/steps/form.php:92
|
523 |
+
#: app/skins/single.php:1119 app/skins/single.php:1178
|
524 |
#: app/skins/single/default.php:252 app/skins/single/default.php:483
|
525 |
#: app/skins/single/m1.php:120 app/skins/single/m2.php:43
|
526 |
#: app/skins/single/modern.php:62
|
536 |
#: app/features/events.php:3473 app/features/fes/form.php:269
|
537 |
#: app/features/fes/form.php:273 app/features/ix.php:3509
|
538 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:38
|
539 |
+
#: app/features/mec.php:1282 app/features/mec/meta_boxes/display_options.php:50
|
540 |
#: app/features/mec/meta_boxes/display_options.php:278
|
541 |
#: app/features/mec/meta_boxes/display_options.php:517
|
542 |
#: app/features/mec/meta_boxes/display_options.php:623
|
560 |
#: app/features/events.php:3473 app/features/fes/form.php:288
|
561 |
#: app/features/fes/form.php:292 app/features/ix.php:3509
|
562 |
#: app/features/ix.php:3550 app/features/ix/import_g_calendar.php:44
|
563 |
+
#: app/features/mec.php:1283 app/features/popup/event.php:92
|
564 |
msgid "End Date"
|
565 |
msgstr "Data de Término"
|
566 |
|
567 |
#: app/features/events.php:531 app/features/fes/form.php:306
|
568 |
+
#: app/features/popup/event.php:109
|
569 |
#, fuzzy
|
570 |
#| msgid "All Day Event"
|
571 |
msgid "All-day Event"
|
607 |
#: app/features/events.php:2151 app/features/events.php:2166
|
608 |
#: app/features/events.php:2196 app/features/events.php:2209
|
609 |
#: app/features/fes/form.php:396 app/features/fes/form.php:704
|
610 |
+
#: app/features/locations.php:334 app/features/mec/booking.php:108
|
611 |
#: app/features/mec/booking.php:174 app/features/mec/booking.php:187
|
612 |
#: app/features/mec/booking.php:203 app/features/mec/booking.php:331
|
613 |
#: app/features/mec/booking.php:360 app/features/mec/booking.php:408
|
671 |
#: app/features/mec/single.php:126 app/features/mec/single.php:179
|
672 |
#: app/features/mec/styling.php:119 app/features/mec/styling.php:218
|
673 |
#: app/features/mec/styling.php:235 app/features/mec/styling.php:248
|
674 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:126
|
675 |
+
#: app/features/popup/event.php:173 app/skins/single.php:965
|
676 |
#: app/skins/single/default.php:151 app/skins/single/default.php:382
|
677 |
#: app/skins/single/m1.php:217 app/skins/single/m2.php:141
|
678 |
#: app/skins/single/modern.php:160
|
696 |
msgstr "Repetições"
|
697 |
|
698 |
#: app/features/events.php:592 app/features/fes/form.php:329
|
699 |
+
#: app/features/mec.php:1285 app/skins/default_full_calendar/tpl.php:74
|
700 |
#: app/skins/full_calendar/tpl.php:121
|
701 |
msgid "Daily"
|
702 |
msgstr "Diariamente"
|
720 |
msgstr "Semanalmente"
|
721 |
|
722 |
#: app/features/events.php:627 app/features/fes/form.php:334
|
723 |
+
#: app/features/mec.php:1286 app/skins/default_full_calendar/tpl.php:72
|
724 |
#: app/skins/full_calendar/tpl.php:119
|
725 |
msgid "Monthly"
|
726 |
msgstr "Mensalmente"
|
727 |
|
728 |
#: app/features/events.php:634 app/features/fes/form.php:335
|
729 |
+
#: app/features/mec.php:1287 app/skins/default_full_calendar/tpl.php:71
|
730 |
#: app/skins/full_calendar/tpl.php:118
|
731 |
msgid "Yearly"
|
732 |
msgstr "Anualmente"
|
864 |
#: app/features/events.php:1088 app/features/events.php:3431
|
865 |
#: app/features/events.php:3473 app/features/fes/form.php:790
|
866 |
#: app/features/ix.php:3509 app/features/ix.php:3550
|
867 |
+
#: app/features/mec/settings.php:702 app/libraries/main.php:5664
|
868 |
#: app/widgets/single.php:103
|
869 |
msgid "Event Cost"
|
870 |
msgstr "Custo do Evento"
|
882 |
#: app/features/events.php:1124 app/features/events.php:2330
|
883 |
#: app/features/fes.php:223 app/features/mec/booking.php:516
|
884 |
#: app/features/profile/profile.php:58 app/libraries/main.php:3025
|
885 |
+
#: app/modules/booking/steps/tickets.php:36
|
886 |
+
#: app/modules/next-event/details.php:134 app/skins/single.php:938
|
887 |
#: app/skins/single/default.php:93 app/skins/single/default.php:324
|
888 |
#: app/skins/single/m1.php:22 app/skins/single/modern.php:194
|
889 |
msgid "Date"
|
968 |
#: app/features/events.php:1374 app/features/fes/form.php:916
|
969 |
#: app/features/mec.php:445 app/features/mec/modules.php:52
|
970 |
#: app/features/mec/settings.php:750 app/features/speakers.php:62
|
971 |
+
#: app/libraries/main.php:566 app/libraries/main.php:5639
|
972 |
#: app/modules/speakers/details.php:18
|
973 |
msgid "Speakers"
|
974 |
msgstr ""
|
985 |
msgstr "Links do Evento"
|
986 |
|
987 |
#: app/features/events.php:1408 app/features/events.php:1414
|
988 |
+
#: app/features/fes/form.php:769 app/libraries/main.php:5662
|
989 |
msgid "Event Link"
|
990 |
msgstr "Link do Evento"
|
991 |
|
1012 |
msgstr ""
|
1013 |
|
1014 |
#: app/features/events.php:1424 app/features/events.php:1437
|
1015 |
+
#: app/features/fes/form.php:774 app/libraries/main.php:5663
|
1016 |
+
#: app/skins/single.php:964 app/skins/single/default.php:150
|
1017 |
#: app/skins/single/default.php:381 app/skins/single/m1.php:216
|
1018 |
#: app/skins/single/m2.php:140 app/skins/single/modern.php:159
|
1019 |
#: app/widgets/single.php:107
|
1052 |
msgstr "Total de limites de reserva"
|
1053 |
|
1054 |
#: app/features/events.php:1463 app/features/events.php:1605
|
1055 |
+
#: app/libraries/book.php:60 app/libraries/main.php:5667
|
1056 |
+
#: app/modules/booking/steps/tickets.php:64
|
1057 |
msgid "Tickets"
|
1058 |
msgstr "Bilhetes"
|
1059 |
|
1081 |
|
1082 |
#: app/features/events.php:1523 app/features/events.php:1709
|
1083 |
#: app/features/events.php:1880 app/modules/booking/default.php:86
|
1084 |
+
#: app/modules/booking/steps/tickets.php:64
|
1085 |
#: app/skins/available_spot/tpl.php:142
|
1086 |
msgid "Unlimited"
|
1087 |
msgstr "Ilimitado"
|
1251 |
#: app/features/mec/meta_boxes/search_form.php:690
|
1252 |
#: app/features/mec/meta_boxes/search_form.php:796
|
1253 |
#: app/features/mec/settings.php:890 app/features/mec/single.php:251
|
1254 |
+
#: app/features/search.php:98 app/libraries/skins.php:1049
|
1255 |
msgid "Label"
|
1256 |
msgstr "Etiqueta"
|
1257 |
|
1475 |
#: app/features/events.php:3239 app/features/events.php:3431
|
1476 |
#: app/features/events.php:3473 app/features/ix.php:3509
|
1477 |
#: app/features/ix.php:3550 app/features/locations.php:58
|
1478 |
+
#: app/features/locations.php:261 app/features/locations.php:322
|
1479 |
+
#: app/features/locations.php:324 app/features/locations.php:333
|
1480 |
#: app/features/mec/meta_boxes/display_options.php:1387
|
1481 |
#: app/features/mec/meta_boxes/search_form.php:38
|
1482 |
#: app/features/mec/meta_boxes/search_form.php:108
|
1490 |
#: app/features/mec/meta_boxes/search_form.php:661
|
1491 |
#: app/features/mec/meta_boxes/search_form.php:767
|
1492 |
#: app/features/mec/settings.php:864 app/features/mec/single.php:241
|
1493 |
+
#: app/features/popup/event.php:116 app/features/popup/event.php:125
|
1494 |
#: app/features/search.php:74 app/libraries/main.php:2302
|
1495 |
+
#: app/libraries/main.php:5636 app/libraries/skins.php:945
|
1496 |
+
#: app/skins/single.php:781 app/skins/single.php:1224
|
1497 |
#: app/skins/single/default.php:186 app/skins/single/default.php:417
|
1498 |
#: app/skins/single/m1.php:172 app/skins/single/m2.php:95
|
1499 |
#: app/skins/single/modern.php:113
|
1535 |
|
1536 |
#: app/features/events.php:3431 app/features/events.php:3473
|
1537 |
#: app/features/fes.php:223 app/features/ix.php:3509 app/features/ix.php:3550
|
1538 |
+
#: app/features/labels.php:177 app/features/locations.php:260
|
1539 |
#: app/features/organizers.php:203 app/features/speakers.php:268
|
1540 |
msgid "ID"
|
1541 |
msgstr "ID"
|
1557 |
|
1558 |
#: app/features/events.php:3775 app/features/fes.php:223
|
1559 |
#: app/features/profile/profile.php:183 app/libraries/main.php:2353
|
1560 |
+
#: app/libraries/main.php:5666
|
1561 |
msgid "Ticket"
|
1562 |
msgstr "Bilhete"
|
1563 |
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#: app/features/fes/form.php:753 app/features/organizers.php:280
|
1769 |
+
#: app/features/popup/event.php:183
|
1770 |
msgid "eg. John Smith"
|
1771 |
msgstr "ex. John Smith"
|
1772 |
|
1793 |
#: app/features/fes/form.php:848 app/features/labels.php:61
|
1794 |
#: app/features/labels.php:221 app/features/mec.php:438
|
1795 |
#: app/features/mec/meta_boxes/filter.php:72
|
1796 |
+
#: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5633
|
1797 |
+
#: app/skins/single.php:994 app/skins/single/default.php:165
|
1798 |
#: app/skins/single/default.php:396 app/skins/single/m1.php:77
|
1799 |
#: app/skins/single/modern.php:249
|
1800 |
msgid "Labels"
|
2607 |
msgstr "Imagem Destacada"
|
2608 |
|
2609 |
#: app/features/labels.php:118 app/features/labels.php:143
|
2610 |
+
#: app/libraries/main.php:5881 app/skins/agenda/render.php:43
|
2611 |
#: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
|
2612 |
#: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
|
2613 |
#: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
|
2625 |
msgid "You can show featured and canceled events by a different style!"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: app/features/labels.php:180 app/features/locations.php:263
|
2629 |
#: app/features/organizers.php:206 app/features/speakers.php:272
|
2630 |
+
#: app/modules/booking/steps/tickets.php:62
|
2631 |
msgid "Count"
|
2632 |
msgstr "Contagem"
|
2633 |
|
2634 |
+
#: app/features/labels.php:181 app/features/locations.php:264
|
2635 |
#: app/features/organizers.php:207
|
2636 |
msgid "Slug"
|
2637 |
msgstr "Slug"
|
2638 |
|
2639 |
+
#: app/features/labels.php:221 app/features/locations.php:322
|
2640 |
#, php-format
|
2641 |
msgid "Event %s"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
#: app/features/locations.php:59 app/features/mec.php:439
|
2645 |
#: app/features/mec/dashboard.php:275 app/features/mec/meta_boxes/filter.php:70
|
2646 |
+
#: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5635
|
2647 |
msgid "Locations"
|
2648 |
msgstr "Localizações"
|
2649 |
|
2650 |
+
#: app/features/locations.php:110 app/features/locations.php:180
|
2651 |
+
#: app/features/locations.php:262
|
2652 |
#: app/features/mec/meta_boxes/search_form.php:74
|
2653 |
#: app/features/mec/meta_boxes/search_form.php:144
|
2654 |
#: app/features/mec/meta_boxes/search_form.php:214
|
2663 |
msgid "Address"
|
2664 |
msgstr "Endereço"
|
2665 |
|
2666 |
+
#: app/features/locations.php:113 app/features/locations.php:181
|
2667 |
msgid "Enter the location address"
|
2668 |
msgstr "Digite o endereço da localização"
|
2669 |
|
2670 |
+
#: app/features/locations.php:130 app/features/locations.php:196
|
2671 |
+
#: app/features/locations.php:361 app/features/popup/event.php:147
|
2672 |
msgid "Latitude"
|
2673 |
msgstr "Latitude"
|
2674 |
|
2675 |
+
#: app/features/locations.php:133 app/features/locations.php:197
|
2676 |
msgid "Geo latitude (Optional)"
|
2677 |
msgstr "Geo latitude (Opcional)"
|
2678 |
|
2679 |
+
#: app/features/locations.php:138 app/features/locations.php:200
|
2680 |
+
#: app/features/locations.php:362 app/features/popup/event.php:148
|
2681 |
msgid "Longitude"
|
2682 |
msgstr "Longitude"
|
2683 |
|
2684 |
+
#: app/features/locations.php:141 app/features/locations.php:201
|
2685 |
msgid "Geo longitude (Optional)"
|
2686 |
msgstr "Geo longitude (Opcional)"
|
2687 |
|
2688 |
+
#: app/features/locations.php:146 app/features/locations.php:204
|
2689 |
+
#: app/features/locations.php:372
|
2690 |
#, fuzzy
|
2691 |
#| msgid "Locations"
|
2692 |
msgid "Location Website"
|
2693 |
msgstr "Localizações"
|
2694 |
|
2695 |
+
#: app/features/locations.php:149 app/features/locations.php:205
|
2696 |
#, fuzzy
|
2697 |
#| msgid "Geo latitude (Optional)"
|
2698 |
msgid "Location Website (Optional)"
|
2699 |
msgstr "Geo latitude (Opcional)"
|
2700 |
|
2701 |
+
#: app/features/locations.php:155 app/features/locations.php:209
|
2702 |
#: app/features/organizers.php:127 app/features/organizers.php:160
|
2703 |
#: app/features/speakers.php:167 app/features/speakers.php:216
|
2704 |
msgid "Thumbnail"
|
2705 |
msgstr "Miniatura"
|
2706 |
|
2707 |
+
#: app/features/locations.php:160 app/features/locations.php:212
|
2708 |
#: app/features/organizers.php:132 app/features/organizers.php:163
|
2709 |
#: app/features/speakers.php:172 app/features/speakers.php:219
|
2710 |
msgid "Upload/Add image"
|
2711 |
msgstr "Enviar/Adicionar imagem"
|
2712 |
|
2713 |
+
#: app/features/locations.php:161 app/features/locations.php:213
|
2714 |
+
#: app/features/locations.php:380 app/features/locations.php:387
|
2715 |
#: app/features/organizers.php:133 app/features/organizers.php:164
|
2716 |
#: app/features/organizers.php:299 app/features/organizers.php:306
|
2717 |
#: app/features/speakers.php:173 app/features/speakers.php:220
|
2718 |
msgid "Remove image"
|
2719 |
msgstr "Remover imagem"
|
2720 |
|
2721 |
+
#: app/features/locations.php:325 app/features/popup/event.php:117
|
2722 |
msgid "Hide location"
|
2723 |
msgstr "Ocultar localização"
|
2724 |
|
2725 |
+
#: app/features/locations.php:326 app/features/popup/event.php:118
|
2726 |
msgid "Insert a new location"
|
2727 |
msgstr "Inserir uma nova localização"
|
2728 |
|
2729 |
+
#: app/features/locations.php:334
|
2730 |
msgid "Choose one of saved locations or insert new one below."
|
2731 |
msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
|
2732 |
|
2733 |
+
#: app/features/locations.php:341 app/features/popup/event.php:139
|
2734 |
msgid "Location Name"
|
2735 |
msgstr "Nome da Localização"
|
2736 |
|
2737 |
+
#: app/features/locations.php:342 app/features/popup/event.php:140
|
2738 |
msgid "eg. City Hall"
|
2739 |
msgstr "exemplo; Prefeitura"
|
2740 |
|
2741 |
+
#: app/features/locations.php:345 app/features/mec/settings.php:738
|
2742 |
+
#: app/features/popup/event.php:143 app/widgets/single.php:115
|
2743 |
msgid "Event Location"
|
2744 |
msgstr "Localização do Evento"
|
2745 |
|
2746 |
+
#: app/features/locations.php:346 app/features/popup/event.php:144
|
2747 |
msgid "eg. City hall, Manhattan, New York"
|
2748 |
msgstr "exemplo; Prefeitura, Manhattan, Nova Iorque"
|
2749 |
|
2750 |
+
#: app/features/locations.php:365 app/features/popup/event.php:151
|
2751 |
#, fuzzy
|
2752 |
#| msgid "Longitude"
|
2753 |
msgid "Latitude/Longitude"
|
2754 |
msgstr "Longitude"
|
2755 |
|
2756 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2757 |
msgid ""
|
2758 |
"If you leave the latitude and longitude empty, Modern Events Calendar tries "
|
2759 |
"to convert the location address to geopoint, Latitude and Longitude are the "
|
2762 |
"the location on the map to find lat long coordinates."
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: app/features/locations.php:366 app/features/popup/event.php:152
|
2766 |
msgid "Get Latitude and Longitude"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: app/features/locations.php:379 app/features/organizers.php:298
|
2770 |
+
#: app/features/popup/event.php:202
|
2771 |
msgid "Choose image"
|
2772 |
msgstr "Escolha uma imagem"
|
2773 |
|
2774 |
+
#: app/features/locations.php:393 app/features/popup/event.php:135
|
2775 |
msgid "Don't show map in single event page"
|
2776 |
msgstr "Não mostrar mapa na página de evento individual"
|
2777 |
|
2778 |
+
#: app/features/locations.php:396 app/libraries/main.php:5669
|
2779 |
#, fuzzy
|
2780 |
#| msgid "Search Locations"
|
2781 |
msgid "Other Locations"
|
2782 |
msgstr "Pesquisar Localizações"
|
2783 |
|
2784 |
+
#: app/features/locations.php:398
|
2785 |
msgid ""
|
2786 |
"You can select extra locations in addition to main location if you like."
|
2787 |
msgstr ""
|
2858 |
#: app/features/mec.php:440 app/features/mec/dashboard.php:282
|
2859 |
#: app/features/mec/meta_boxes/filter.php:71
|
2860 |
#: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
|
2861 |
+
#: app/libraries/main.php:5637
|
2862 |
msgid "Organizers"
|
2863 |
msgstr "Organizadores"
|
2864 |
|
2899 |
msgid "MEC - Go Pro"
|
2900 |
msgstr "Suporte"
|
2901 |
|
2902 |
+
#: app/features/mec.php:455 app/features/mec.php:1215
|
2903 |
#: app/features/mec/go-pro.php:9
|
2904 |
msgid "Go Pro"
|
2905 |
msgstr ""
|
2956 |
msgid "Modal Popup"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: app/features/mec.php:1110 app/features/mec.php:1228
|
2960 |
msgid "Total Bookings"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: app/features/mec.php:1129 app/features/mec/dashboard.php:63
|
2964 |
#, fuzzy
|
2965 |
#| msgid "Modern Events Calendar"
|
2966 |
msgid "Modern Events Calendar (Lite)"
|
2967 |
msgstr "Calendário de Eventos Moderno"
|
2968 |
|
2969 |
+
#: app/features/mec.php:1138 app/features/mec/dashboard.php:293
|
2970 |
#: app/features/mec/settings.php:428
|
2971 |
msgid "Upcoming Events"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: app/features/mec.php:1201
|
2975 |
#, fuzzy
|
2976 |
#| msgid "Update Label"
|
2977 |
msgid "News & Updates"
|
2978 |
msgstr "Atualizar Etiqueta"
|
2979 |
|
2980 |
+
#: app/features/mec.php:1214
|
2981 |
msgid "Blog"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: app/features/mec.php:1214
|
2985 |
msgid "Help"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: app/features/mec.php:1260
|
2989 |
msgid "This Month"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: app/features/mec.php:1266
|
2993 |
msgid "Last Month"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: app/features/mec.php:1272
|
2997 |
msgid "This Year"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: app/features/mec.php:1278
|
3001 |
msgid "Last Year"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: app/features/mec.php:1290
|
3005 |
msgid "Bar"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: app/features/mec.php:1291
|
3009 |
msgid "Line"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: app/features/mec.php:1293
|
3013 |
msgid "Filter"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: app/features/mec.php:1309
|
3017 |
#, php-format
|
3018 |
msgid "Total Sells (%s)"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: app/features/mec.php:1337
|
3022 |
#, fuzzy
|
3023 |
#| msgid "Modern Events Calendar"
|
3024 |
msgid "Print Calendar"
|
3025 |
msgstr "Calendário de Eventos Moderno"
|
3026 |
|
3027 |
+
#: app/features/mec.php:1352
|
3028 |
#, fuzzy
|
3029 |
#| msgid "Multiple Day Events"
|
3030 |
msgid "Display Events"
|
3429 |
#: app/features/mec/notifications.php:923
|
3430 |
#: app/features/mec/notifications.php:945 app/features/mec/settings.php:1132
|
3431 |
#: app/features/mec/settings.php:1154 app/features/mec/single.php:296
|
3432 |
+
#: app/features/mec/single.php:318 app/libraries/main.php:5880
|
3433 |
msgid "Verified"
|
3434 |
msgstr "Verificado"
|
3435 |
|
4600 |
#: app/features/mec/meta_boxes/search_form.php:782
|
4601 |
#: app/features/mec/settings.php:877 app/features/mec/single.php:246
|
4602 |
#: app/features/search.php:86 app/features/speakers.php:61
|
4603 |
+
#: app/features/speakers.php:269 app/libraries/main.php:5640
|
4604 |
+
#: app/libraries/skins.php:997 app/modules/speakers/details.php:18
|
4605 |
msgid "Speaker"
|
4606 |
msgstr ""
|
4607 |
|
4617 |
#: app/features/mec/meta_boxes/search_form.php:683
|
4618 |
#: app/features/mec/meta_boxes/search_form.php:789
|
4619 |
#: app/features/mec/settings.php:884 app/features/mec/single.php:255
|
4620 |
+
#: app/features/search.php:92 app/libraries/skins.php:1023
|
4621 |
#, fuzzy
|
4622 |
#| msgid "Tags"
|
4623 |
msgid "Tag"
|
5423 |
"Ele envia para administrador para notificá-lo que recebeu uma nova reserva."
|
5424 |
|
5425 |
#: app/features/mec/notifications.php:543 app/libraries/main.php:582
|
5426 |
+
#: app/libraries/notifications.php:587
|
5427 |
msgid "Booking Reminder"
|
5428 |
msgstr ""
|
5429 |
|
5451 |
msgid "Please, insert comma to separate reminder days."
|
5452 |
msgstr ""
|
5453 |
|
5454 |
+
#: app/features/mec/notifications.php:660 app/features/popup/event.php:253
|
5455 |
#: app/libraries/main.php:584
|
5456 |
msgid "New Event"
|
5457 |
msgstr "Novo Evento"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
#: app/features/mec/settings.php:154 app/features/mec/settings.php:164
|
5685 |
+
#: app/libraries/main.php:5644
|
5686 |
msgid "Weekdays"
|
5687 |
msgstr "Dias da semana"
|
5688 |
|
6472 |
msgstr "Mostrar opção de dias excepcionais na página Adicionar/Editar eventos"
|
6473 |
|
6474 |
#: app/features/mec/single.php:220 app/libraries/main.php:553
|
6475 |
+
#: app/skins/single.php:161 app/skins/single.php:292
|
6476 |
#, fuzzy
|
6477 |
#| msgid "featured event"
|
6478 |
msgid "Related Events"
|
7135 |
msgstr "Insira o endereço de e-mail do organizador."
|
7136 |
|
7137 |
#: app/features/organizers.php:119 app/features/organizers.php:156
|
7138 |
+
#: app/features/organizers.php:291 app/features/popup/event.php:196
|
7139 |
msgid "Link to organizer page"
|
7140 |
msgstr "Link para a página do organizador"
|
7141 |
|
7154 |
msgid "Event Main %s"
|
7155 |
msgstr ""
|
7156 |
|
7157 |
+
#: app/features/organizers.php:263 app/features/popup/event.php:164
|
7158 |
msgid "Hide organizer"
|
7159 |
msgstr "Ocultar organizador"
|
7160 |
|
7161 |
+
#: app/features/organizers.php:264 app/features/popup/event.php:165
|
7162 |
msgid "Insert a new organizer"
|
7163 |
msgstr "Inserir um novo organizador"
|
7164 |
|
7165 |
+
#: app/features/organizers.php:272 app/features/popup/event.php:173
|
7166 |
msgid "Choose one of saved organizers or insert new one below."
|
7167 |
msgstr "Escolha um dos organizadores salvos ou insira um novo abaixo."
|
7168 |
|
7169 |
+
#: app/features/organizers.php:283 app/features/popup/event.php:186
|
7170 |
msgid "Phone number."
|
7171 |
msgstr ""
|
7172 |
|
7173 |
+
#: app/features/organizers.php:284 app/features/popup/event.php:187
|
7174 |
msgid "eg. +1 (234) 5678"
|
7175 |
msgstr "ex. (00) 0000-0000"
|
7176 |
|
7177 |
+
#: app/features/organizers.php:287 app/features/popup/event.php:191
|
7178 |
msgid "Email address."
|
7179 |
msgstr ""
|
7180 |
|
7181 |
+
#: app/features/organizers.php:288 app/features/popup/event.php:192
|
7182 |
msgid "eg. john@smith.com"
|
7183 |
msgstr "ex. john@smith.com"
|
7184 |
|
7185 |
+
#: app/features/organizers.php:292 app/features/popup/event.php:197
|
7186 |
#, fuzzy
|
7187 |
#| msgid "http://webnus.biz"
|
7188 |
msgid "eg. https://webnus.net"
|
7189 |
msgstr "http://webnus.biz"
|
7190 |
|
7191 |
+
#: app/features/organizers.php:312 app/libraries/main.php:5668
|
7192 |
+
#: app/skins/single.php:1152
|
7193 |
msgid "Other Organizers"
|
7194 |
msgstr ""
|
7195 |
|
7214 |
msgid "Event name is required"
|
7215 |
msgstr ""
|
7216 |
|
7217 |
+
#: app/features/popup/event.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7218 |
#, fuzzy
|
7219 |
#| msgid "Choose one of saved locations or insert new one below."
|
7220 |
msgid "Choose one of saved locations or insert new one."
|
7221 |
msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
|
7222 |
|
7223 |
+
#: app/features/popup/event.php:130
|
7224 |
#, fuzzy
|
7225 |
#| msgid "Add New Location"
|
7226 |
msgid "Add Location"
|
7227 |
msgstr "Adicionar Nova Localização"
|
7228 |
|
7229 |
+
#: app/features/popup/event.php:177
|
7230 |
#, fuzzy
|
7231 |
#| msgid "Add New Organizer"
|
7232 |
msgid "Add Organizer"
|
7233 |
msgstr "Adicionar Novo Organizador"
|
7234 |
|
7235 |
+
#: app/features/popup/event.php:217
|
7236 |
#, fuzzy
|
7237 |
#| msgid "Categories"
|
7238 |
msgid "All Categories"
|
7239 |
msgstr "Categorias"
|
7240 |
|
7241 |
+
#: app/features/popup/event.php:218
|
7242 |
msgid "Most Used"
|
7243 |
msgstr ""
|
7244 |
|
7245 |
+
#: app/features/popup/event.php:229
|
7246 |
#, fuzzy
|
7247 |
#| msgid "Add New Label"
|
7248 |
msgid "Add New Category"
|
7249 |
msgstr "Adicionar Nova Etiqueta"
|
7250 |
|
7251 |
+
#: app/features/popup/event.php:240
|
7252 |
#, fuzzy
|
7253 |
#| msgid "Featured Image"
|
7254 |
msgid "Set Featured Image"
|
7255 |
msgstr "Imagem Destacada"
|
7256 |
|
7257 |
+
#: app/features/popup/event.php:250
|
7258 |
msgid "Your Event Has Been Created."
|
7259 |
msgstr ""
|
7260 |
|
7261 |
+
#: app/features/popup/event.php:261 app/features/popup/shortcode.php:529
|
7262 |
msgid "Prev"
|
7263 |
msgstr ""
|
7264 |
|
7265 |
+
#: app/features/popup/event.php:262 app/features/popup/shortcode.php:530
|
7266 |
#: app/modules/booking/steps/form.php:188
|
7267 |
+
#: app/modules/booking/steps/tickets.php:99 app/skins/countdown/tpl.php:117
|
7268 |
#: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:210
|
7269 |
msgid "Next"
|
7270 |
msgstr "Próximo"
|
7507 |
msgid "No search result."
|
7508 |
msgstr ""
|
7509 |
|
7510 |
+
#: app/features/search_bar/search_result.php:12 app/libraries/main.php:5670
|
7511 |
+
#: app/libraries/notifications.php:926 app/libraries/render.php:516
|
7512 |
#: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
|
7513 |
#: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
|
7514 |
+
#: app/modules/next-event/details.php:145 app/skins/single.php:1044
|
7515 |
#: app/skins/single/default.php:118 app/skins/single/default.php:349
|
7516 |
#: app/skins/single/m1.php:47 app/skins/single/modern.php:219
|
7517 |
#, fuzzy
|
7609 |
msgid "%s Price"
|
7610 |
msgstr ""
|
7611 |
|
7612 |
+
#: app/libraries/book.php:674 app/libraries/book.php:765
|
7613 |
msgid "Discount"
|
7614 |
msgstr "Desconto"
|
7615 |
|
7616 |
+
#: app/libraries/book.php:836 app/modules/booking/default.php:321
|
7617 |
+
#: app/modules/booking/default.php:426 app/modules/booking/steps/message.php:13
|
7618 |
msgid "Download Invoice"
|
7619 |
msgstr ""
|
7620 |
|
7637 |
msgid "Upgrade"
|
7638 |
msgstr ""
|
7639 |
|
7640 |
+
#: app/libraries/factory.php:369
|
7641 |
msgid "day"
|
7642 |
msgstr "dia"
|
7643 |
|
7644 |
+
#: app/libraries/factory.php:370 app/modules/countdown/details.php:138
|
7645 |
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
|
7646 |
#: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
|
7647 |
msgid "days"
|
7648 |
msgstr "dias"
|
7649 |
|
7650 |
+
#: app/libraries/factory.php:371
|
7651 |
msgid "hour"
|
7652 |
msgstr "hora"
|
7653 |
|
7654 |
+
#: app/libraries/factory.php:372 app/modules/countdown/details.php:145
|
7655 |
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
|
7656 |
#: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
|
7657 |
msgid "hours"
|
7658 |
msgstr "horas"
|
7659 |
|
7660 |
+
#: app/libraries/factory.php:373
|
7661 |
msgid "minute"
|
7662 |
msgstr "minuto"
|
7663 |
|
7664 |
+
#: app/libraries/factory.php:374 app/modules/countdown/details.php:152
|
7665 |
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
|
7666 |
#: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
|
7667 |
msgid "minutes"
|
7668 |
msgstr "minutos"
|
7669 |
|
7670 |
+
#: app/libraries/factory.php:375
|
7671 |
msgid "second"
|
7672 |
msgstr "segundo"
|
7673 |
|
7674 |
+
#: app/libraries/factory.php:376 app/modules/countdown/details.php:159
|
7675 |
#: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
|
7676 |
#: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
|
7677 |
msgid "seconds"
|
7678 |
msgstr "segundos"
|
7679 |
|
7680 |
+
#: app/libraries/factory.php:428
|
7681 |
msgid "MEC Single Sidebar"
|
7682 |
msgstr ""
|
7683 |
|
7684 |
+
#: app/libraries/factory.php:429
|
7685 |
msgid "Custom sidebar for single and modal page of MEC."
|
7686 |
msgstr ""
|
7687 |
|
7745 |
msgid "Timeline View"
|
7746 |
msgstr "Visualização do Slider"
|
7747 |
|
7748 |
+
#: app/libraries/main.php:385 app/libraries/main.php:5646
|
7749 |
msgid "SU"
|
7750 |
msgstr "DOM"
|
7751 |
|
7752 |
+
#: app/libraries/main.php:386 app/libraries/main.php:5647
|
7753 |
msgid "MO"
|
7754 |
msgstr "SEG"
|
7755 |
|
7756 |
+
#: app/libraries/main.php:387 app/libraries/main.php:5648
|
7757 |
msgid "TU"
|
7758 |
msgstr "TER"
|
7759 |
|
7760 |
+
#: app/libraries/main.php:388 app/libraries/main.php:5649
|
7761 |
msgid "WE"
|
7762 |
msgstr "QUA"
|
7763 |
|
7764 |
+
#: app/libraries/main.php:389 app/libraries/main.php:5650
|
7765 |
msgid "TH"
|
7766 |
msgstr "QUI"
|
7767 |
|
7768 |
+
#: app/libraries/main.php:390 app/libraries/main.php:5651
|
7769 |
msgid "FR"
|
7770 |
msgstr "SEX"
|
7771 |
|
7772 |
+
#: app/libraries/main.php:391 app/libraries/main.php:5652
|
7773 |
msgid "SA"
|
7774 |
msgstr "SAB"
|
7775 |
|
8104 |
msgid "Free"
|
8105 |
msgstr "Grátis"
|
8106 |
|
8107 |
+
#: app/libraries/main.php:3949 app/libraries/main.php:5895
|
8108 |
#, fuzzy
|
8109 |
#| msgid "M.E. Calendar"
|
8110 |
msgid "M.E. Calender"
|
8111 |
msgstr "Calendário E.M."
|
8112 |
|
8113 |
+
#: app/libraries/main.php:4105
|
8114 |
#, php-format
|
8115 |
msgid "Copy of %s"
|
8116 |
msgstr "Cópia de %s"
|
8117 |
|
8118 |
+
#: app/libraries/main.php:4923
|
8119 |
msgid "Booked an event."
|
8120 |
msgstr "Um evento reservado."
|
8121 |
|
8122 |
+
#: app/libraries/main.php:4964
|
8123 |
#, php-format
|
8124 |
msgid "%s booked %s event."
|
8125 |
msgstr "Evento %s reservado %s."
|
8126 |
|
8127 |
+
#: app/libraries/main.php:5629
|
8128 |
msgid "Taxonomies"
|
8129 |
msgstr ""
|
8130 |
|
8131 |
+
#: app/libraries/main.php:5631
|
8132 |
msgid "Category Plural Label"
|
8133 |
msgstr ""
|
8134 |
|
8135 |
+
#: app/libraries/main.php:5632
|
8136 |
msgid "Category Singular Label"
|
8137 |
msgstr ""
|
8138 |
|
8139 |
+
#: app/libraries/main.php:5633
|
8140 |
msgid "Label Plural Label"
|
8141 |
msgstr ""
|
8142 |
|
8143 |
+
#: app/libraries/main.php:5634
|
8144 |
msgid "Label Singular Label"
|
8145 |
msgstr ""
|
8146 |
|
8147 |
+
#: app/libraries/main.php:5634
|
8148 |
msgid "label"
|
8149 |
msgstr ""
|
8150 |
|
8151 |
+
#: app/libraries/main.php:5635
|
8152 |
msgid "Location Plural Label"
|
8153 |
msgstr ""
|
8154 |
|
8155 |
+
#: app/libraries/main.php:5636
|
8156 |
msgid "Location Singular Label"
|
8157 |
msgstr ""
|
8158 |
|
8159 |
+
#: app/libraries/main.php:5637
|
8160 |
msgid "Organizer Plural Label"
|
8161 |
msgstr ""
|
8162 |
|
8163 |
+
#: app/libraries/main.php:5638
|
8164 |
msgid "Organizer Singular Label"
|
8165 |
msgstr ""
|
8166 |
|
8167 |
+
#: app/libraries/main.php:5639
|
8168 |
#, fuzzy
|
8169 |
#| msgid "Search Labels"
|
8170 |
msgid "Speaker Plural Label"
|
8171 |
msgstr "Pesquisar Etiquetas"
|
8172 |
|
8173 |
+
#: app/libraries/main.php:5640
|
8174 |
#, fuzzy
|
8175 |
#| msgid "Popular Labels"
|
8176 |
msgid "Speaker Singular Label"
|
8177 |
msgstr "Etiquetas Populares"
|
8178 |
|
8179 |
+
#: app/libraries/main.php:5646
|
8180 |
msgid "Sunday abbreviation"
|
8181 |
msgstr ""
|
8182 |
|
8183 |
+
#: app/libraries/main.php:5647
|
8184 |
msgid "Monday abbreviation"
|
8185 |
msgstr ""
|
8186 |
|
8187 |
+
#: app/libraries/main.php:5648
|
8188 |
msgid "Tuesday abbreviation"
|
8189 |
msgstr ""
|
8190 |
|
8191 |
+
#: app/libraries/main.php:5649
|
8192 |
msgid "Wednesday abbreviation"
|
8193 |
msgstr ""
|
8194 |
|
8195 |
+
#: app/libraries/main.php:5650
|
8196 |
msgid "Thursday abbreviation"
|
8197 |
msgstr ""
|
8198 |
|
8199 |
+
#: app/libraries/main.php:5651
|
8200 |
msgid "Friday abbreviation"
|
8201 |
msgstr ""
|
8202 |
|
8203 |
+
#: app/libraries/main.php:5652
|
8204 |
msgid "Saturday abbreviation"
|
8205 |
msgstr ""
|
8206 |
|
8207 |
+
#: app/libraries/main.php:5656
|
8208 |
msgid "Others"
|
8209 |
msgstr ""
|
8210 |
|
8211 |
+
#: app/libraries/main.php:5658
|
8212 |
msgid "Booking Success Message"
|
8213 |
msgstr ""
|
8214 |
|
8215 |
+
#: app/libraries/main.php:5658
|
8216 |
#, fuzzy
|
8217 |
#| msgid ""
|
8218 |
#| "Thanks for your booking. Your tickets booked, booking verification might "
|
8224 |
"Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
|
8225 |
"reserva é necessária, por favor verifique seu e-mail."
|
8226 |
|
8227 |
+
#: app/libraries/main.php:5659 app/widgets/single.php:131
|
8228 |
msgid "Register Button"
|
8229 |
msgstr ""
|
8230 |
|
8231 |
+
#: app/libraries/main.php:5659 app/skins/available_spot/tpl.php:209
|
8232 |
#: app/skins/carousel/render.php:109 app/skins/carousel/render.php:148
|
8233 |
#: app/skins/grid/render.php:98 app/skins/grid/render.php:153
|
8234 |
#: app/skins/grid/render.php:203 app/skins/grid/render.php:223
|
8235 |
#: app/skins/list/render.php:67 app/skins/list/render.php:155
|
8236 |
+
#: app/skins/masonry/render.php:150 app/skins/single.php:352
|
8237 |
+
#: app/skins/single.php:1065 app/skins/single.php:1068
|
8238 |
#: app/skins/single/default.php:278 app/skins/single/default.php:280
|
8239 |
#: app/skins/single/default.php:509 app/skins/single/default.php:511
|
8240 |
#: app/skins/single/m1.php:144 app/skins/single/m1.php:146
|
8246 |
msgid "REGISTER"
|
8247 |
msgstr "REGISTRAR"
|
8248 |
|
8249 |
+
#: app/libraries/main.php:5660
|
8250 |
msgid "View Detail Button"
|
8251 |
msgstr ""
|
8252 |
|
8253 |
+
#: app/libraries/main.php:5660 app/skins/carousel/render.php:109
|
8254 |
#: app/skins/carousel/render.php:148 app/skins/grid/render.php:98
|
8255 |
#: app/skins/grid/render.php:153 app/skins/grid/render.php:203
|
8256 |
#: app/skins/grid/render.php:223 app/skins/list/render.php:67
|
8257 |
#: app/skins/list/render.php:155 app/skins/masonry/render.php:150
|
8258 |
+
#: app/skins/single.php:352 app/skins/slider/render.php:71
|
8259 |
#: app/skins/slider/render.php:94 app/skins/slider/render.php:116
|
8260 |
#: app/skins/slider/render.php:139 app/skins/slider/render.php:173
|
8261 |
msgid "View Detail"
|
8262 |
msgstr "Ver Detalhes"
|
8263 |
|
8264 |
+
#: app/libraries/main.php:5661
|
8265 |
msgid "Event Detail Button"
|
8266 |
msgstr ""
|
8267 |
|
8268 |
+
#: app/libraries/main.php:5661 app/skins/countdown/tpl.php:221
|
8269 |
msgid "Event Detail"
|
8270 |
msgstr "Detalhes do Evento"
|
8271 |
|
8272 |
+
#: app/libraries/main.php:5663
|
8273 |
msgid "More Info Link"
|
8274 |
msgstr ""
|
8275 |
|
8276 |
+
#: app/libraries/main.php:5666
|
8277 |
msgid "Ticket (Singular)"
|
8278 |
msgstr ""
|
8279 |
|
8280 |
+
#: app/libraries/main.php:5667
|
8281 |
msgid "Tickets (Plural)"
|
8282 |
msgstr ""
|
8283 |
|
8284 |
+
#: app/libraries/main.php:5754
|
8285 |
msgid "EventON"
|
8286 |
msgstr ""
|
8287 |
|
8288 |
+
#: app/libraries/main.php:5755
|
8289 |
msgid "The Events Calendar"
|
8290 |
msgstr ""
|
8291 |
|
8292 |
+
#: app/libraries/main.php:5756
|
8293 |
msgid "Events Schedule WP Plugin"
|
8294 |
msgstr ""
|
8295 |
|
8296 |
+
#: app/libraries/main.php:5757
|
8297 |
msgid "Calendarize It"
|
8298 |
msgstr ""
|
8299 |
|
8300 |
+
#: app/libraries/main.php:5758
|
8301 |
#, fuzzy
|
8302 |
#| msgid "No Search Options"
|
8303 |
msgid "Event Espresso"
|
8304 |
msgstr "Sem Opções de Pesquisa"
|
8305 |
|
8306 |
+
#: app/libraries/main.php:5759
|
8307 |
#, fuzzy
|
8308 |
#| msgid "Event Repeating"
|
8309 |
msgid "Events Manager (Recurring)"
|
8310 |
msgstr "Repetição de Eventos"
|
8311 |
|
8312 |
+
#: app/libraries/main.php:5760
|
8313 |
#, fuzzy
|
8314 |
#| msgid "Modern Events Calendar"
|
8315 |
msgid "Events Manager (Single)"
|
8316 |
msgstr "Calendário de Eventos Moderno"
|
8317 |
|
8318 |
+
#: app/libraries/main.php:5832 app/libraries/main.php:5852
|
8319 |
msgid "Confirmed"
|
8320 |
msgstr "Confirmado"
|
8321 |
|
8322 |
+
#: app/libraries/main.php:5833 app/libraries/main.php:5860
|
8323 |
msgid "Rejected"
|
8324 |
msgstr "Recusado"
|
8325 |
|
8326 |
+
#: app/libraries/main.php:5834 app/libraries/main.php:5856
|
8327 |
msgid "Pending"
|
8328 |
msgstr "Pendente"
|
8329 |
|
8330 |
+
#: app/libraries/main.php:5882
|
8331 |
msgid "Waiting"
|
8332 |
msgstr "Aguardando"
|
8333 |
|
8334 |
+
#: app/libraries/main.php:5925
|
8335 |
#, fuzzy
|
8336 |
#| msgid "Sunday"
|
8337 |
msgid "Sun"
|
8338 |
msgstr "Domingo"
|
8339 |
|
8340 |
+
#: app/libraries/main.php:5925
|
8341 |
#, fuzzy
|
8342 |
#| msgid "Month"
|
8343 |
msgid "Mon"
|
8344 |
msgstr "Mês"
|
8345 |
|
8346 |
+
#: app/libraries/main.php:5925
|
8347 |
#, fuzzy
|
8348 |
#| msgid "Tel"
|
8349 |
msgid "Tue"
|
8350 |
msgstr "Telefone"
|
8351 |
|
8352 |
+
#: app/libraries/main.php:5925
|
8353 |
msgid "Wed"
|
8354 |
msgstr ""
|
8355 |
|
8356 |
+
#: app/libraries/main.php:5925
|
8357 |
msgid "Thu"
|
8358 |
msgstr ""
|
8359 |
|
8360 |
+
#: app/libraries/main.php:5925
|
8361 |
#, fuzzy
|
8362 |
#| msgid "Friday"
|
8363 |
msgid "Fri"
|
8364 |
msgstr "Sexta-feira"
|
8365 |
|
8366 |
+
#: app/libraries/main.php:5925
|
8367 |
#, fuzzy
|
8368 |
#| msgid "Start"
|
8369 |
msgid "Sat"
|
8370 |
msgstr "Iniciar"
|
8371 |
|
8372 |
+
#: app/libraries/main.php:6087 app/libraries/render.php:80
|
8373 |
#: app/libraries/render.php:432
|
8374 |
msgid "Skin controller does not exist."
|
8375 |
msgstr "Controlador de pele não existe."
|
8376 |
|
8377 |
+
#: app/libraries/main.php:6302
|
8378 |
msgid "Sold Out"
|
8379 |
msgstr ""
|
8380 |
|
8381 |
+
#: app/libraries/main.php:6310
|
8382 |
#, fuzzy
|
8383 |
#| msgid "Ticket"
|
8384 |
msgid "Last Few Tickets"
|
8385 |
msgstr "Bilhete"
|
8386 |
|
8387 |
+
#: app/libraries/main.php:6624 app/libraries/main.php:6641
|
8388 |
#, fuzzy
|
8389 |
#| msgid "hours"
|
8390 |
msgid "Hours"
|
8391 |
msgstr "horas"
|
8392 |
|
8393 |
+
#: app/libraries/main.php:6630 app/libraries/main.php:6647
|
8394 |
#, fuzzy
|
8395 |
#| msgid "minutes"
|
8396 |
msgid "Minutes"
|
8397 |
msgstr "minutos"
|
8398 |
|
|