Version Description
- Added: "attachment_url" to MEC RSS
- Added: Offers (event price) to schema structure
- Fixed: Displaying comment form on MEC pages when comment is disabled
- Fixed: Displaying wrong content and title on the event detail pages
- Fixed: Next event module
- Fixed: Booking form in the modal window
- Fixed: Google Maps module in the modal window
- Fixed: Displaying Total attendees, name , email in notifications
- Fixed: CSV export "unknown" field
- Fixed: Displaying extra fields in booking system
- Fixed: Email in woocommerce paymant
- Fixed: Some minor issues
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 4.2.1 |
Comparing to | |
See all releases |
Code changes from version 4.2.0 to 4.2.1
- app/features/events.php +15 -15
- app/features/feed/rss2.php +1 -1
- app/features/mec.php +767 -763
- app/features/mec/regform.php +32 -32
- app/features/mec/styling.php +9 -9
- app/features/mec/support-page.php +2 -2
- app/libraries/book.php +8 -2
- app/libraries/feed.php +11 -0
- app/libraries/main.php +5 -4
- app/libraries/notifications.php +6 -0
- app/libraries/skins.php +16 -4
- app/modules/booking/default.php +1 -2
- app/modules/booking/steps/form.php +2 -2
- app/modules/weather/details.php +1 -1
- app/skins/agenda/render.php +8 -2
- app/skins/available_spot/tpl.php +8 -3
- app/skins/carousel/render.php +7 -2
- app/skins/countdown/tpl.php +8 -3
- app/skins/cover/tpl.php +8 -3
- app/skins/daily_view/render.php +8 -2
- app/skins/grid/render.php +7 -2
- app/skins/list.php +2 -2
- app/skins/list/render.php +5 -0
- app/skins/masonry/render.php +7 -2
- app/skins/monthly_view/calendar.php +9 -2
- app/skins/monthly_view/calendar_clean.php +9 -2
- app/skins/monthly_view/calendar_novel.php +7 -0
- app/skins/monthly_view/calendar_simple.php +7 -0
- app/skins/single/default.php +5 -0
- app/skins/single/modern.php +5 -0
- app/skins/slider/render.php +28 -2
- app/skins/timetable/render.php +10 -4
- app/skins/weekly_view/render.php +8 -2
- app/skins/yearly_view/render.php +8 -2
- assets/css/frontend.css +3 -2
- assets/css/frontend.min.css +1 -1
- assets/js/frontend.js +8 -5
- changelog.txt +16 -2
- languages/modern-events-calendar-lite-de_DE.mo +0 -0
- languages/modern-events-calendar-lite-de_DE.po +166 -166
- languages/modern-events-calendar-lite-en_US.mo +0 -0
- languages/modern-events-calendar-lite-en_US.po +166 -166
- languages/modern-events-calendar-lite-es_ES.mo +0 -0
- languages/modern-events-calendar-lite-es_ES.po +166 -166
- languages/modern-events-calendar-lite-fr_FR.mo +0 -0
- languages/modern-events-calendar-lite-fr_FR.po +166 -166
- languages/modern-events-calendar-lite-hu_HU.mo +0 -0
- languages/modern-events-calendar-lite-hu_HU.po +166 -166
- languages/modern-events-calendar-lite-it_IT.mo +0 -0
- languages/modern-events-calendar-lite-it_IT.po +166 -166
- languages/modern-events-calendar-lite-nb_NO.mo +0 -0
- languages/modern-events-calendar-lite-nb_NO.po +166 -166
- languages/modern-events-calendar-lite-nl_NL.mo +0 -0
- languages/modern-events-calendar-lite-nl_NL.po +166 -166
- languages/modern-events-calendar-lite-pl_PL.mo +0 -0
- languages/modern-events-calendar-lite-pl_PL.po +166 -166
- languages/modern-events-calendar-lite-pt_BR.mo +0 -0
- languages/modern-events-calendar-lite-pt_BR.po +166 -166
- languages/modern-events-calendar-lite-ru_RU.mo +0 -0
- languages/modern-events-calendar-lite-ru_RU.po +166 -166
- languages/modern-events-calendar-lite-sv_SE.mo +0 -0
- languages/modern-events-calendar-lite-sv_SE.po +166 -166
- languages/modern-events-calendar-lite-tr_TR.mo +0 -0
- languages/modern-events-calendar-lite-tr_TR.po +166 -166
- languages/modern-events-calendar-lite.pot +166 -166
- modern-events-calendar-lite.php +2 -2
- readme.txt +16 -2
app/features/events.php
CHANGED
@@ -1234,7 +1234,7 @@ class MEC_feature_events extends MEC_base
|
|
1234 |
[
|
1235 |
'mandatory' => '0',
|
1236 |
'type' => 'name',
|
1237 |
-
'label' => esc_html__( 'Name', 'modern-events-calendar-lite'),
|
1238 |
]
|
1239 |
);
|
1240 |
}
|
@@ -1245,7 +1245,7 @@ class MEC_feature_events extends MEC_base
|
|
1245 |
[
|
1246 |
'mandatory' => '0',
|
1247 |
'type' => 'mec_email',
|
1248 |
-
'label' => esc_html__( 'Email', 'modern-events-calendar-lite'),
|
1249 |
]
|
1250 |
);
|
1251 |
}
|
@@ -1303,19 +1303,19 @@ class MEC_feature_events extends MEC_base
|
|
1303 |
?>
|
1304 |
</ul>
|
1305 |
<div id="mec_reg_form_field_types">
|
1306 |
-
<button type="button" class="button red" data-type="name"><?php _e( 'MEC Name', 'modern-events-calendar-lite'); ?></button>
|
1307 |
-
<button type="button" class="button red" data-type="mec_email"><?php _e( 'MEC Email', 'modern-events-calendar-lite'); ?></button>
|
1308 |
-
<button type="button" class="button" data-type="text"><?php _e( 'Text', 'modern-events-calendar-lite'); ?></button>
|
1309 |
-
<button type="button" class="button" data-type="email"><?php _e( 'Email', 'modern-events-calendar-lite'); ?></button>
|
1310 |
-
<button type="button" class="button" data-type="date"><?php _e( 'Date', 'modern-events-calendar-lite'); ?></button>
|
1311 |
-
<button type="button" class="button" data-type="tel"><?php _e( 'Tel', 'modern-events-calendar-lite'); ?></button>
|
1312 |
-
<button type="button" class="button" data-type="file"><?php _e( 'File', 'modern-events-calendar-lite'); ?></button>
|
1313 |
-
<button type="button" class="button" data-type="textarea"><?php _e( 'Textarea', 'modern-events-calendar-lite'); ?></button>
|
1314 |
-
<button type="button" class="button" data-type="checkbox"><?php _e( 'Checkboxes', 'modern-events-calendar-lite'); ?></button>
|
1315 |
-
<button type="button" class="button" data-type="radio"><?php _e( 'Radio Buttons', 'modern-events-calendar-lite'); ?></button>
|
1316 |
-
<button type="button" class="button" data-type="select"><?php _e( 'Dropdown', 'modern-events-calendar-lite'); ?></button>
|
1317 |
-
<button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite'); ?></button>
|
1318 |
-
<button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite'); ?></button>
|
1319 |
</div>
|
1320 |
<input type="hidden" id="mec_new_reg_field_key" value="<?php echo $i+1; ?>" />
|
1321 |
<div class="mec-util-hidden">
|
1234 |
[
|
1235 |
'mandatory' => '0',
|
1236 |
'type' => 'name',
|
1237 |
+
'label' => esc_html__( 'Name', 'modern-events-calendar-lite' ),
|
1238 |
]
|
1239 |
);
|
1240 |
}
|
1245 |
[
|
1246 |
'mandatory' => '0',
|
1247 |
'type' => 'mec_email',
|
1248 |
+
'label' => esc_html__( 'Email', 'modern-events-calendar-lite' ),
|
1249 |
]
|
1250 |
);
|
1251 |
}
|
1303 |
?>
|
1304 |
</ul>
|
1305 |
<div id="mec_reg_form_field_types">
|
1306 |
+
<button type="button" class="button red" data-type="name"><?php _e( 'MEC Name', 'modern-events-calendar-lite' ); ?></button>
|
1307 |
+
<button type="button" class="button red" data-type="mec_email"><?php _e( 'MEC Email', 'modern-events-calendar-lite' ); ?></button>
|
1308 |
+
<button type="button" class="button" data-type="text"><?php _e( 'Text', 'modern-events-calendar-lite' ); ?></button>
|
1309 |
+
<button type="button" class="button" data-type="email"><?php _e( 'Email', 'modern-events-calendar-lite' ); ?></button>
|
1310 |
+
<button type="button" class="button" data-type="date"><?php _e( 'Date', 'modern-events-calendar-lite' ); ?></button>
|
1311 |
+
<button type="button" class="button" data-type="tel"><?php _e( 'Tel', 'modern-events-calendar-lite' ); ?></button>
|
1312 |
+
<button type="button" class="button" data-type="file"><?php _e( 'File', 'modern-events-calendar-lite' ); ?></button>
|
1313 |
+
<button type="button" class="button" data-type="textarea"><?php _e( 'Textarea', 'modern-events-calendar-lite' ); ?></button>
|
1314 |
+
<button type="button" class="button" data-type="checkbox"><?php _e( 'Checkboxes', 'modern-events-calendar-lite' ); ?></button>
|
1315 |
+
<button type="button" class="button" data-type="radio"><?php _e( 'Radio Buttons', 'modern-events-calendar-lite' ); ?></button>
|
1316 |
+
<button type="button" class="button" data-type="select"><?php _e( 'Dropdown', 'modern-events-calendar-lite' ); ?></button>
|
1317 |
+
<button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite' ); ?></button>
|
1318 |
+
<button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite' ); ?></button>
|
1319 |
</div>
|
1320 |
<input type="hidden" id="mec_new_reg_field_key" value="<?php echo $i+1; ?>" />
|
1321 |
<div class="mec-util-hidden">
|
app/features/feed/rss2.php
CHANGED
@@ -46,7 +46,7 @@ do_action('rss_tag_pre', 'rss2');
|
|
46 |
<?php if(!get_option('rss_use_excerpt')): $content = $this->feed->content($event->ID, 'rss2'); ?>
|
47 |
<content:encoded><![CDATA[<?php echo $content; ?>]]></content:encoded>
|
48 |
<?php endif; ?>
|
49 |
-
|
50 |
<?php if(get_comments_number($event->ID) or comments_open($event->ID)): ?>
|
51 |
<wfw:commentRss><?php echo esc_url(get_post_comments_feed_link($event->ID, 'rss2')); ?></wfw:commentRss>
|
52 |
<slash:comments><?php echo get_comments_number($event->ID); ?></slash:comments>
|
46 |
<?php if(!get_option('rss_use_excerpt')): $content = $this->feed->content($event->ID, 'rss2'); ?>
|
47 |
<content:encoded><![CDATA[<?php echo $content; ?>]]></content:encoded>
|
48 |
<?php endif; ?>
|
49 |
+
<wp:attachment_url><![CDATA[<?php echo $this->feed->attachment($event->ID); ?>]]></wp:attachment_url>
|
50 |
<?php if(get_comments_number($event->ID) or comments_open($event->ID)): ?>
|
51 |
<wfw:commentRss><?php echo esc_url(get_post_comments_feed_link($event->ID, 'rss2')); ?></wfw:commentRss>
|
52 |
<slash:comments><?php echo get_comments_number($event->ID); ?></slash:comments>
|
app/features/mec.php
CHANGED
@@ -1,785 +1,789 @@
|
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
-
defined('MECEXEC') or die();
|
4 |
|
5 |
/**
|
6 |
* Webnus MEC class.
|
|
|
7 |
* @author Webnus <info@webnus.biz>
|
8 |
*/
|
9 |
-
class MEC_feature_mec extends MEC_base
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
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 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
$image_popup_html = '
|
747 |
<div class="mec-form-row mec-image-popup-wrap mec-switcher">
|
748 |
<div class="mec-col-4">
|
749 |
-
<label for="mec_skin_'
|
750 |
</div>
|
751 |
<div class="mec-col-4">
|
752 |
-
<input type="hidden" name="mec[sk-options]['
|
753 |
-
<input type="checkbox" name="mec[sk-options]['
|
754 |
';
|
755 |
-
|
756 |
-
|
|
|
|
|
757 |
</div>
|
758 |
</div>
|
759 |
';
|
760 |
-
|
761 |
<div class="mec-col-4">
|
762 |
-
<label for="mec_skin_'
|
763 |
</div>
|
764 |
<div class="mec-col-4">
|
765 |
-
<input type="hidden" name="mec[sk-options]['
|
766 |
-
<ul class="mec-sed-methods" data-for="#mec_skin_'
|
767 |
-
<li data-method="0" class="'.(
|
768 |
-
<li data-method="m1" class="'.($value === 'm1' ? 'active' : '').'">'.__('Modal 1', 'modern-events-calendar-lite').'</li>
|
769 |
</ul>
|
770 |
</div>
|
771 |
</div>' . $image_popup_html;
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
|
|
|
|
785 |
}
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
+
defined( 'MECEXEC' ) or die();
|
4 |
|
5 |
/**
|
6 |
* Webnus MEC class.
|
7 |
+
*
|
8 |
* @author Webnus <info@webnus.biz>
|
9 |
*/
|
10 |
+
class MEC_feature_mec extends MEC_base {
|
11 |
+
|
12 |
+
/**
|
13 |
+
* @var MEC_factory
|
14 |
+
*/
|
15 |
+
public $factory;
|
16 |
+
|
17 |
+
/**
|
18 |
+
* @var MEC_db
|
19 |
+
*/
|
20 |
+
public $db;
|
21 |
+
|
22 |
+
/**
|
23 |
+
* @var MEC_main
|
24 |
+
*/
|
25 |
+
public $main;
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @var MEC_notifications
|
29 |
+
*/
|
30 |
+
public $notifications;
|
31 |
+
public $settings;
|
32 |
+
public $page;
|
33 |
+
public $PT;
|
34 |
+
|
35 |
+
/**
|
36 |
+
* Constructor method
|
37 |
+
*
|
38 |
+
* @author Webnus <info@webnus.biz>
|
39 |
+
*/
|
40 |
+
public function __construct() {
|
41 |
+
// Import MEC Factory
|
42 |
+
$this->factory = $this->getFactory();
|
43 |
+
|
44 |
+
// Import MEC DB
|
45 |
+
$this->db = $this->getDB();
|
46 |
+
|
47 |
+
// Import MEC Main
|
48 |
+
$this->main = $this->getMain();
|
49 |
+
|
50 |
+
// Import MEC Notifications
|
51 |
+
$this->notifications = $this->getNotifications();
|
52 |
+
|
53 |
+
// MEC Settings
|
54 |
+
$this->settings = $this->main->get_settings();
|
55 |
+
}
|
56 |
+
|
57 |
+
/**
|
58 |
+
* Initialize calendars feature
|
59 |
+
*
|
60 |
+
* @author Webnus <info@webnus.biz>
|
61 |
+
*/
|
62 |
+
public function init() {
|
63 |
+
$this->factory->action( 'admin_menu', array( $this, 'menus' ) );
|
64 |
+
$this->factory->action( 'admin_menu', array( $this, 'support_menu' ), 21 );
|
65 |
+
$this->factory->action( 'init', array( $this, 'register_post_type' ) );
|
66 |
+
$this->factory->action( 'add_meta_boxes', array( $this, 'register_meta_boxes' ), 1 );
|
67 |
+
|
68 |
+
$this->factory->action( 'parent_file', array( $this, 'mec_parent_menu_highlight' ) );
|
69 |
+
$this->factory->action( 'submenu_file', array( $this, 'mec_sub_menu_highlight' ) );
|
70 |
+
|
71 |
+
// Google recaptcha
|
72 |
+
$this->factory->filter( 'mec_grecaptcha_include', array( $this, 'grecaptcha_include' ) );
|
73 |
+
|
74 |
+
// Google Maps API
|
75 |
+
$this->factory->filter( 'mec_gm_include', array( $this, 'gm_include' ) );
|
76 |
+
|
77 |
+
$this->factory->filter( 'manage_mec_calendars_posts_columns', array( $this, 'filter_columns' ) );
|
78 |
+
$this->factory->action( 'manage_mec_calendars_posts_custom_column', array( $this, 'filter_columns_content' ), 10, 2 );
|
79 |
+
|
80 |
+
$this->factory->action( 'save_post', array( $this, 'save_calendar' ), 10 );
|
81 |
+
|
82 |
+
// BuddyPress Integration
|
83 |
+
$this->factory->action( 'mec_booking_confirmed', array( $this->main, 'bp_add_activity' ), 10 );
|
84 |
+
$this->factory->action( 'mec_booking_verified', array( $this->main, 'bp_add_activity' ), 10 );
|
85 |
+
$this->factory->action( 'bp_register_activity_actions', array( $this->main, 'bp_register_activity_actions' ), 10 );
|
86 |
+
|
87 |
+
// Mailchimp Integration
|
88 |
+
$this->factory->action( 'mec_booking_verified', array( $this->main, 'mailchimp_add_subscriber' ), 10 );
|
89 |
+
|
90 |
+
// MEC Notifications
|
91 |
+
$this->factory->action( 'mec_booking_completed', array( $this->notifications, 'email_verification' ), 10 );
|
92 |
+
$this->factory->action( 'mec_booking_completed', array( $this->notifications, 'booking_notification' ), 11 );
|
93 |
+
$this->factory->action( 'mec_booking_completed', array( $this->notifications, 'admin_notification' ), 12 );
|
94 |
+
$this->factory->action( 'mec_booking_confirmed', array( $this->notifications, 'booking_confirmation' ), 10 );
|
95 |
+
$this->factory->action( 'mec_fes_added', array( $this->notifications, 'new_event' ), 50, 3 );
|
96 |
+
|
97 |
+
$this->page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : 'MEC-settings';
|
98 |
+
|
99 |
+
// MEC Post Type Name
|
100 |
+
$this->PT = $this->main->get_main_post_type();
|
101 |
+
|
102 |
+
// Disable Block Editor
|
103 |
+
$this->factory->filter( 'gutenberg_can_edit_post_type', array( $this, 'gutenberg' ), 10, 2 );
|
104 |
+
$this->factory->filter( 'use_block_editor_for_post_type', array( $this, 'gutenberg' ), 10, 2 );
|
105 |
+
|
106 |
+
// Export Settings
|
107 |
+
$this->factory->action( 'wp_ajax_download_settings', array( $this, 'download_settings' ) );
|
108 |
+
$this->factory->action( 'wp_ajax_nopriv_download_settings', array( $this, 'download_settings' ) );
|
109 |
+
|
110 |
+
// Import Settings
|
111 |
+
$this->factory->action( 'wp_ajax_import_settings', array( $this, 'import_settings' ) );
|
112 |
+
$this->factory->action( 'wp_ajax_nopriv_import_settings', array( $this, 'import_settings' ) );
|
113 |
+
|
114 |
+
// License Activation
|
115 |
+
$this->factory->action( 'wp_ajax_activate_license', array( $this, 'activate_license' ) );
|
116 |
+
$this->factory->action( 'wp_ajax_nopriv_activate_license', array( $this, 'activate_license' ) );
|
117 |
+
|
118 |
+
// Scheduler Cronjob
|
119 |
+
$schedule = $this->getSchedule();
|
120 |
+
$this->factory->action( 'mec_scheduler', array( $schedule, 'cron' ) );
|
121 |
+
}
|
122 |
+
|
123 |
+
/* Activate License */
|
124 |
+
public function activate_license() {
|
125 |
+
if ( ! wp_verify_nonce( $_REQUEST['nonce'], 'mec_settings_nonce' ) ) {
|
126 |
+
exit();
|
127 |
+
}
|
128 |
+
|
129 |
+
$options = get_option( 'mec_options' );
|
130 |
+
|
131 |
+
$options['product_name'] = $_REQUEST['content']['LicenseTypeJson'];
|
132 |
+
$options['purchase_code'] = $_REQUEST['content']['PurchaseCodeJson'];
|
133 |
+
update_option( 'mec_options', $options );
|
134 |
+
|
135 |
+
$verify = null;
|
136 |
+
if ( $this->getPRO() ) {
|
137 |
+
$envato = $this->getEnvato();
|
138 |
+
$verify = $envato->get_MEC_info( 'dl' );
|
139 |
+
}
|
140 |
+
|
141 |
+
if ( ! is_null( $verify ) ) {
|
142 |
+
$LicenseStatus = 'success';
|
143 |
+
} else {
|
144 |
+
$LicenseStatus = __( 'Activation faild. Please check your purchase code or license type.<br><b>Note: Your purchase code should match your licesne type.</b>', 'modern-events-calendar-lite' ) . '<a style="text-decoration: underline; padding-left: 7px;" href="https://webnus.ticksy.com/article/14445/" target="_blank">' . __( 'Troubleshooting', 'modern-events-calendar-lite' ) . '</a>';
|
145 |
+
}
|
146 |
+
|
147 |
+
echo $LicenseStatus;
|
148 |
+
wp_die();
|
149 |
+
}
|
150 |
+
|
151 |
+
|
152 |
+
/* Download MEC settings */
|
153 |
+
public function download_settings() {
|
154 |
+
if ( ! wp_verify_nonce( $_REQUEST['nonce'], 'mec_settings_download' ) ) {
|
155 |
+
exit();
|
156 |
+
}
|
157 |
+
|
158 |
+
$content = get_option( 'mec_options' );
|
159 |
+
$content = json_encode( $content, true );
|
160 |
+
|
161 |
+
header( 'Content-type: application/txt' );
|
162 |
+
header( 'Content-Description: MEC Settings' );
|
163 |
+
header( 'Content-Disposition: attachment; filename="mec_options_backup_' . date( 'd-m-Y' ) . '.json"' );
|
164 |
+
header( 'Content-Transfer-Encoding: binary' );
|
165 |
+
header( 'Expires: 0' );
|
166 |
+
header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
|
167 |
+
print_r( $content );
|
168 |
+
wp_die();
|
169 |
+
}
|
170 |
+
|
171 |
+
/* Download MEC settings */
|
172 |
+
public function import_settings() {
|
173 |
+
if ( ! wp_verify_nonce( $_REQUEST['nonce'], 'mec_settings_nonce' ) ) {
|
174 |
+
exit();
|
175 |
+
}
|
176 |
+
|
177 |
+
$options = $_REQUEST['content'];
|
178 |
+
if ( $options == 'No-JSON' ) {
|
179 |
+
echo '<div class="mec-message-import-error">' . esc_html__( 'Your options is not in JSON format. Please insert correct options in this field and try again.', 'modern-events-calendar-lite' ) . '</div>';
|
180 |
+
exit();
|
181 |
+
} else {
|
182 |
+
if ( empty( $options ) ) {
|
183 |
+
echo '<div class="mec-message-import-error">' . esc_html__( 'Your options field can not be empty!', 'modern-events-calendar-lite' ) . '</div>';
|
184 |
+
exit;
|
185 |
+
} else {
|
186 |
+
update_option( 'mec_options', $options );
|
187 |
+
echo '<div class="mec-message-import-success">' . esc_html__( 'Your options imported successfuly.', 'modern-events-calendar-lite' ) . '</div>';
|
188 |
+
}
|
189 |
+
}
|
190 |
+
|
191 |
+
wp_die();
|
192 |
+
}
|
193 |
+
|
194 |
+
/**
|
195 |
+
* highlighting menu when click on taxonomy
|
196 |
+
*
|
197 |
+
* @author Webnus <info@webnus.biz>
|
198 |
+
* @param string $parent_file
|
199 |
+
* @return string
|
200 |
+
*/
|
201 |
+
public function mec_parent_menu_highlight( $parent_file ) {
|
202 |
+
global $current_screen;
|
203 |
+
|
204 |
+
$taxonomy = $current_screen->taxonomy;
|
205 |
+
$post_type = $current_screen->post_type;
|
206 |
+
|
207 |
+
// Don't do amything if the post type is not our post type
|
208 |
+
if ( $post_type != $this->PT ) {
|
209 |
+
return $parent_file;
|
210 |
+
}
|
211 |
+
|
212 |
+
switch ( $taxonomy ) {
|
213 |
+
case 'mec_category':
|
214 |
+
case 'post_tag':
|
215 |
+
case 'mec_label':
|
216 |
+
case 'mec_location':
|
217 |
+
case 'mec_organizer':
|
218 |
+
case 'mec_speaker':
|
219 |
+
$parent_file = 'mec-intro';
|
220 |
+
break;
|
221 |
+
|
222 |
+
default:
|
223 |
+
// nothing
|
224 |
+
break;
|
225 |
+
}
|
226 |
+
|
227 |
+
return $parent_file;
|
228 |
+
}
|
229 |
+
|
230 |
+
public function mec_sub_menu_highlight( $submenu_file ) {
|
231 |
+
global $current_screen;
|
232 |
+
|
233 |
+
$taxonomy = $current_screen->taxonomy;
|
234 |
+
$post_type = $current_screen->post_type;
|
235 |
+
|
236 |
+
// Don't do amything if the post type is not our post type
|
237 |
+
if ( $post_type != $this->PT ) {
|
238 |
+
return $submenu_file;
|
239 |
+
}
|
240 |
+
|
241 |
+
switch ( $taxonomy ) {
|
242 |
+
case 'mec_category':
|
243 |
+
$submenu_file = 'edit-tags.php?taxonomy=mec_category&post_type=' . $this->PT;
|
244 |
+
break;
|
245 |
+
case 'post_tag':
|
246 |
+
$submenu_file = 'edit-tags.php?taxonomy=post_tag&post_type=' . $this->PT;
|
247 |
+
break;
|
248 |
+
case 'mec_label':
|
249 |
+
$submenu_file = 'edit-tags.php?taxonomy=mec_label&post_type=' . $this->PT;
|
250 |
+
break;
|
251 |
+
case 'mec_location':
|
252 |
+
$submenu_file = 'edit-tags.php?taxonomy=mec_location&post_type=' . $this->PT;
|
253 |
+
break;
|
254 |
+
case 'mec_organizer':
|
255 |
+
$submenu_file = 'edit-tags.php?taxonomy=mec_organizer&post_type=' . $this->PT;
|
256 |
+
break;
|
257 |
+
case 'mec_speaker':
|
258 |
+
$submenu_file = 'edit-tags.php?taxonomy=mec_speaker&post_type=' . $this->PT;
|
259 |
+
break;
|
260 |
+
default:
|
261 |
+
// nothing
|
262 |
+
break;
|
263 |
+
}
|
264 |
+
|
265 |
+
return $submenu_file;
|
266 |
+
}
|
267 |
+
|
268 |
+
/**
|
269 |
+
* Add the support menu
|
270 |
+
*
|
271 |
+
* @author Webnus <info@webnus.biz>
|
272 |
+
*/
|
273 |
+
public function support_menu() {
|
274 |
+
add_submenu_page( 'mec-intro', __( 'MEC - Support', 'modern-events-calendar-lite' ), __( 'Support', 'modern-events-calendar-lite' ), 'manage_options', 'MEC-support', array( $this, 'support_page' ) );
|
275 |
+
}
|
276 |
+
|
277 |
+
/**
|
278 |
+
* Add the calendars menu
|
279 |
+
*
|
280 |
+
* @author Webnus <info@webnus.biz>
|
281 |
+
*/
|
282 |
+
public function menus() {
|
283 |
+
global $submenu;
|
284 |
+
unset( $submenu['mec-intro'][2] );
|
285 |
+
|
286 |
+
remove_menu_page( 'edit.php?post_type=mec-events' );
|
287 |
+
remove_menu_page( 'edit.php?post_type=mec_calendars' );
|
288 |
+
do_action( 'before_mec_submenu_action' );
|
289 |
+
|
290 |
+
add_submenu_page( 'mec-intro', __( 'Add Event', 'modern-events-calendar-lite' ), __( 'Add Event', 'modern-events-calendar-lite' ), 'edit_posts', 'post-new.php?post_type=' . $this->PT );
|
291 |
+
add_submenu_page( 'mec-intro', __( 'Tags', 'modern-events-calendar-lite' ), __( 'Tags', 'modern-events-calendar-lite' ), 'edit_others_posts', 'edit-tags.php?taxonomy=post_tag&post_type=' . $this->PT );
|
292 |
+
add_submenu_page( 'mec-intro', $this->main->m( 'taxonomy_categories', __( 'Categories', 'modern-events-calendar-lite' ) ), $this->main->m( 'taxonomy_categories', __( 'Categories', 'modern-events-calendar-lite' ) ), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_category&post_type=' . $this->PT );
|
293 |
+
add_submenu_page( 'mec-intro', $this->main->m( 'taxonomy_labels', __( 'Labels', 'modern-events-calendar-lite' ) ), $this->main->m( 'taxonomy_labels', __( 'Labels', 'modern-events-calendar-lite' ) ), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_label&post_type=' . $this->PT );
|
294 |
+
add_submenu_page( 'mec-intro', $this->main->m( 'taxonomy_locations', __( 'Locations', 'modern-events-calendar-lite' ) ), $this->main->m( 'taxonomy_locations', __( 'Locations', 'modern-events-calendar-lite' ) ), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_location&post_type=' . $this->PT );
|
295 |
+
add_submenu_page( 'mec-intro', $this->main->m( 'taxonomy_organizers', __( 'Organizers', 'modern-events-calendar-lite' ) ), $this->main->m( 'taxonomy_organizers', __( 'Organizers', 'modern-events-calendar-lite' ) ), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_organizer&post_type=' . $this->PT );
|
296 |
+
|
297 |
+
// Speakers Menu
|
298 |
+
if ( isset( $this->settings['speakers_status'] ) and $this->settings['speakers_status'] ) {
|
299 |
+
add_submenu_page( 'mec-intro', $this->main->m( 'taxonomy_speakers', __( 'Speakers', 'modern-events-calendar-lite' ) ), $this->main->m( 'taxonomy_speakers', __( 'Speakers', 'modern-events-calendar-lite' ) ), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_speaker&post_type=' . $this->PT );
|
300 |
+
}
|
301 |
+
|
302 |
+
add_submenu_page( 'mec-intro', __( 'Shortcodes', 'modern-events-calendar-lite' ), __( 'Shortcodes', 'modern-events-calendar-lite' ), 'edit_others_posts', 'edit.php?post_type=mec_calendars' );
|
303 |
+
add_submenu_page( 'mec-intro', __( 'MEC - Settings', 'modern-events-calendar-lite' ), __( 'Settings', 'modern-events-calendar-lite' ), 'manage_options', 'MEC-settings', array( $this, 'page' ) );
|
304 |
+
add_submenu_page( 'mec-intro', __( 'MEC - Addons', 'modern-events-calendar-lite' ), __( 'Addons', 'modern-events-calendar-lite' ), 'manage_options', 'MEC-addons', array( $this, 'addons' ) );
|
305 |
+
|
306 |
+
do_action( 'after_mec_submenu_action' );
|
307 |
+
}
|
308 |
+
|
309 |
+
/**
|
310 |
+
* Register post type of calendars/custom shortcodes
|
311 |
+
*
|
312 |
+
* @author Webnus <info@webnus.biz>
|
313 |
+
*/
|
314 |
+
public function register_post_type() {
|
315 |
+
register_post_type(
|
316 |
+
'mec_calendars',
|
317 |
+
array(
|
318 |
+
'labels' => array(
|
319 |
+
'name' => __( 'Shortcodes', 'modern-events-calendar-lite' ),
|
320 |
+
'singular_name' => __( 'Shortcode', 'modern-events-calendar-lite' ),
|
321 |
+
'add_new' => __( 'Add Shortcode', 'modern-events-calendar-lite' ),
|
322 |
+
'add_new_item' => __( 'Add New Shortcode', 'modern-events-calendar-lite' ),
|
323 |
+
'not_found' => __( 'No shortcodes found!', 'modern-events-calendar-lite' ),
|
324 |
+
'all_items' => __( 'All Shortcodes', 'modern-events-calendar-lite' ),
|
325 |
+
'edit_item' => __( 'Edit shortcodes', 'modern-events-calendar-lite' ),
|
326 |
+
'not_found_in_trash' => __( 'No shortcodes found in Trash!', 'modern-events-calendar-lite' ),
|
327 |
+
),
|
328 |
+
'public' => false,
|
329 |
+
'show_in_nav_menus' => false,
|
330 |
+
'show_in_admin_bar' => false,
|
331 |
+
'show_ui' => true,
|
332 |
+
'has_archive' => false,
|
333 |
+
'exclude_from_search' => true,
|
334 |
+
'publicly_queryable' => false,
|
335 |
+
'show_in_menu' => 'mec-intro',
|
336 |
+
'supports' => array( 'title' ),
|
337 |
+
)
|
338 |
+
);
|
339 |
+
do_action( 'mec_register_post_type' );
|
340 |
+
}
|
341 |
+
|
342 |
+
/**
|
343 |
+
* Filter columns of calendars/custom shortcodes
|
344 |
+
*
|
345 |
+
* @author Webnus <info@webnus.biz>
|
346 |
+
* @param array $columns
|
347 |
+
* @return array
|
348 |
+
*/
|
349 |
+
public function filter_columns( $columns ) {
|
350 |
+
$columns['shortcode'] = __( 'Shortcode', 'modern-events-calendar-lite' );
|
351 |
+
return $columns;
|
352 |
+
}
|
353 |
+
|
354 |
+
/**
|
355 |
+
* Filter column content of calendars/custom shortcodes
|
356 |
+
*
|
357 |
+
* @author Webnus <info@webnus.biz>
|
358 |
+
* @param string $column_name
|
359 |
+
* @param int $post_id
|
360 |
+
*/
|
361 |
+
public function filter_columns_content( $column_name, $post_id ) {
|
362 |
+
if ( $column_name == 'shortcode' ) {
|
363 |
+
echo '[MEC id="' . $post_id . '"]';
|
364 |
+
}
|
365 |
+
}
|
366 |
+
|
367 |
+
/**
|
368 |
+
* Register meta boxes of calendars/custom shortcodes
|
369 |
+
*
|
370 |
+
* @author Webnus <info@webnus.biz>
|
371 |
+
*/
|
372 |
+
public function register_meta_boxes() {
|
373 |
+
add_meta_box( 'mec_calendar_display_options', __( 'Display Options', 'modern-events-calendar-lite' ), array( $this, 'meta_box_display_options' ), 'mec_calendars', 'normal', 'high' );
|
374 |
+
add_meta_box( 'mec_calendar_filter', __( 'Filter Options', 'modern-events-calendar-lite' ), array( $this, 'meta_box_filter' ), 'mec_calendars', 'normal', 'high' );
|
375 |
+
add_meta_box( 'mec_calendar_shortcode', __( 'Shortcode', 'modern-events-calendar-lite' ), array( $this, 'meta_box_shortcode' ), 'mec_calendars', 'side' );
|
376 |
+
add_meta_box( 'mec_calendar_search_form', __( 'Search Form', 'modern-events-calendar-lite' ), array( $this, 'meta_box_search_form' ), 'mec_calendars', 'side' );
|
377 |
+
}
|
378 |
+
|
379 |
+
/**
|
380 |
+
* Save calendars/custom shortcodes
|
381 |
+
*
|
382 |
+
* @author Webnus <info@webnus.biz>
|
383 |
+
* @param int $post_id
|
384 |
+
* @return void
|
385 |
+
*/
|
386 |
+
public function save_calendar( $post_id ) {
|
387 |
+
// Check if our nonce is set.
|
388 |
+
if ( ! isset( $_POST['mec_calendar_nonce'] ) ) {
|
389 |
+
return;
|
390 |
+
}
|
391 |
+
|
392 |
+
// Verify that the nonce is valid.
|
393 |
+
if ( ! wp_verify_nonce( sanitize_text_field( $_POST['mec_calendar_nonce'] ), 'mec_calendar_data' ) ) {
|
394 |
+
return;
|
395 |
+
}
|
396 |
+
|
397 |
+
// If this is an autosave, our form has not been submitted, so we don't want to do anything.
|
398 |
+
if ( defined( 'DOING_AUTOSAVE' ) and DOING_AUTOSAVE ) {
|
399 |
+
return;
|
400 |
+
}
|
401 |
+
|
402 |
+
$terms = isset( $_POST['mec_tax_input'] ) ? $_POST['mec_tax_input'] : array();
|
403 |
+
|
404 |
+
$categories = ( isset( $terms['mec_category'] ) and is_array( $terms['mec_category'] ) ) ? implode( ',', $terms['mec_category'] ) : '';
|
405 |
+
$locations = ( isset( $terms['mec_location'] ) and is_array( $terms['mec_location'] ) ) ? implode( ',', $terms['mec_location'] ) : '';
|
406 |
+
$organizers = ( isset( $terms['mec_organizer'] ) and is_array( $terms['mec_organizer'] ) ) ? implode( ',', $terms['mec_organizer'] ) : '';
|
407 |
+
$labels = ( isset( $terms['mec_label'] ) and is_array( $terms['mec_label'] ) ) ? implode( ',', $terms['mec_label'] ) : '';
|
408 |
+
$tags = ( isset( $terms['mec_tag'] ) ) ? explode( ',', trim( $terms['mec_tag'] ) ) : '';
|
409 |
+
$authors = ( isset( $terms['mec_author'] ) and is_array( $terms['mec_author'] ) ) ? implode( ',', $terms['mec_author'] ) : '';
|
410 |
+
|
411 |
+
// Fox tags
|
412 |
+
if ( is_array( $tags ) and count( $tags ) == 1 and trim( $tags[0] ) == '' ) {
|
413 |
+
$tags = array();
|
414 |
+
}
|
415 |
+
if ( is_array( $tags ) ) {
|
416 |
+
$tags = array_map( 'trim', $tags );
|
417 |
+
$tags = implode( ',', $tags );
|
418 |
+
}
|
419 |
+
|
420 |
+
update_post_meta( $post_id, 'label', $labels );
|
421 |
+
update_post_meta( $post_id, 'category', $categories );
|
422 |
+
update_post_meta( $post_id, 'location', $locations );
|
423 |
+
update_post_meta( $post_id, 'organizer', $organizers );
|
424 |
+
update_post_meta( $post_id, 'tag', $tags );
|
425 |
+
update_post_meta( $post_id, 'author', $authors );
|
426 |
+
|
427 |
+
$mec = isset( $_POST['mec'] ) ? $_POST['mec'] : array();
|
428 |
+
|
429 |
+
foreach ( $mec as $key => $value ) {
|
430 |
+
update_post_meta( $post_id, $key, $value );
|
431 |
+
}
|
432 |
+
}
|
433 |
+
|
434 |
+
/**
|
435 |
+
* Show content of filter meta box
|
436 |
+
*
|
437 |
+
* @author Webnus <info@webnus.biz>
|
438 |
+
* @param object $post
|
439 |
+
*/
|
440 |
+
public function meta_box_filter( $post ) {
|
441 |
+
$path = MEC::import( 'app.features.mec.meta_boxes.filter', true, true );
|
442 |
+
|
443 |
+
ob_start();
|
444 |
+
include $path;
|
445 |
+
echo $output = ob_get_clean();
|
446 |
+
}
|
447 |
+
|
448 |
+
/**
|
449 |
+
* Show content of shortcode meta box
|
450 |
+
*
|
451 |
+
* @author Webnus <info@webnus.biz>
|
452 |
+
* @param object $post
|
453 |
+
*/
|
454 |
+
public function meta_box_shortcode( $post ) {
|
455 |
+
$path = MEC::import( 'app.features.mec.meta_boxes.shortcode', true, true );
|
456 |
+
|
457 |
+
ob_start();
|
458 |
+
include $path;
|
459 |
+
echo $output = ob_get_clean();
|
460 |
+
}
|
461 |
+
|
462 |
+
/**
|
463 |
+
* Show content of search form meta box
|
464 |
+
*
|
465 |
+
* @author Webnus <info@webnus.biz>
|
466 |
+
* @param object $post
|
467 |
+
*/
|
468 |
+
public function meta_box_search_form( $post ) {
|
469 |
+
$path = MEC::import( 'app.features.mec.meta_boxes.search_form', true, true );
|
470 |
+
|
471 |
+
ob_start();
|
472 |
+
include $path;
|
473 |
+
echo $output = ob_get_clean();
|
474 |
+
}
|
475 |
+
|
476 |
+
/**
|
477 |
+
* Show content of display options meta box
|
478 |
+
*
|
479 |
+
* @author Webnus <info@webnus.biz>
|
480 |
+
* @param object $post
|
481 |
+
*/
|
482 |
+
public function meta_box_display_options( $post ) {
|
483 |
+
$path = MEC::import( 'app.features.mec.meta_boxes.display_options', true, true );
|
484 |
+
|
485 |
+
ob_start();
|
486 |
+
include $path;
|
487 |
+
echo $output = ob_get_clean();
|
488 |
+
}
|
489 |
+
|
490 |
+
/**
|
491 |
+
* Show content of skin options meta box
|
492 |
+
*
|
493 |
+
* @author Webnus <info@webnus.biz>
|
494 |
+
* @param object $post
|
495 |
+
*/
|
496 |
+
public function meta_box_skin_options( $post ) {
|
497 |
+
$path = MEC::import( 'app.features.mec.meta_boxes.skin_options', true, true );
|
498 |
+
|
499 |
+
ob_start();
|
500 |
+
include $path;
|
501 |
+
echo $output = ob_get_clean();
|
502 |
+
}
|
503 |
+
|
504 |
+
/**
|
505 |
+
* Get Addons page
|
506 |
+
*
|
507 |
+
* @author Webnus <info@webnus.biz>
|
508 |
+
* @return void
|
509 |
+
*/
|
510 |
+
public function addons() {
|
511 |
+
$this->display_addons();
|
512 |
+
}
|
513 |
+
|
514 |
+
/**
|
515 |
+
* Show Addons page
|
516 |
+
*
|
517 |
+
* @author Webnus <info@webnus.biz>
|
518 |
+
* @return void
|
519 |
+
*/
|
520 |
+
public function display_addons() {
|
521 |
+
$path = MEC::import( 'app.features.mec.addons', true, true );
|
522 |
+
ob_start();
|
523 |
+
include $path;
|
524 |
+
echo $output = ob_get_clean();
|
525 |
+
}
|
526 |
+
|
527 |
+
/**
|
528 |
+
* Show support page
|
529 |
+
*
|
530 |
+
* @author Webnus <info@webnus.biz>
|
531 |
+
* @return void
|
532 |
+
*/
|
533 |
+
public function display_support() {
|
534 |
+
$path = MEC::import( 'app.features.mec.support-page', true, true );
|
535 |
+
ob_start();
|
536 |
+
include $path;
|
537 |
+
echo $output = ob_get_clean();
|
538 |
+
}
|
539 |
+
|
540 |
+
/**
|
541 |
+
* support page
|
542 |
+
*
|
543 |
+
* @author Webnus <info@webnus.biz>
|
544 |
+
* @return void
|
545 |
+
*/
|
546 |
+
public function support_page() {
|
547 |
+
$this->display_support();
|
548 |
+
}
|
549 |
+
|
550 |
+
/**
|
551 |
+
* Show content settings menu
|
552 |
+
*
|
553 |
+
* @author Webnus <info@webnus.biz>
|
554 |
+
* @return void
|
555 |
+
*/
|
556 |
+
public function page() {
|
557 |
+
$tab = isset( $_GET['tab'] ) ? sanitize_text_field( $_GET['tab'] ) : 'MEC-settings';
|
558 |
+
|
559 |
+
if ( $tab == 'MEC-customcss' ) {
|
560 |
+
$this->styles();
|
561 |
+
} elseif ( $tab == 'MEC-ie' ) {
|
562 |
+
$this->import_export();
|
563 |
+
}
|
564 |
+
// elseif($tab == 'MEC-support') $this->support();
|
565 |
+
elseif ( $tab == 'MEC-reg-form' ) {
|
566 |
+
$this->regform();
|
567 |
+
} elseif ( $tab == 'MEC-gateways' ) {
|
568 |
+
$this->gateways();
|
569 |
+
} elseif ( $tab == 'MEC-notifications' ) {
|
570 |
+
$this->notifications();
|
571 |
+
} elseif ( $tab == 'MEC-messages' ) {
|
572 |
+
$this->messages();
|
573 |
+
} elseif ( $tab == 'MEC-styling' ) {
|
574 |
+
$this->styling();
|
575 |
+
} else {
|
576 |
+
$this->settings();
|
577 |
+
}
|
578 |
+
}
|
579 |
+
|
580 |
+
/**
|
581 |
+
* Show content of settings tab
|
582 |
+
*
|
583 |
+
* @author Webnus <info@webnus.biz>
|
584 |
+
* @return void
|
585 |
+
*/
|
586 |
+
public function settings() {
|
587 |
+
$path = MEC::import( 'app.features.mec.settings', true, true );
|
588 |
+
|
589 |
+
ob_start();
|
590 |
+
include $path;
|
591 |
+
echo $output = ob_get_clean();
|
592 |
+
}
|
593 |
+
|
594 |
+
/**
|
595 |
+
* Show content of styles tab
|
596 |
+
*
|
597 |
+
* @author Webnus <info@webnus.biz>
|
598 |
+
* @return void
|
599 |
+
*/
|
600 |
+
public function styles() {
|
601 |
+
$path = MEC::import( 'app.features.mec.styles', true, true );
|
602 |
+
|
603 |
+
ob_start();
|
604 |
+
include $path;
|
605 |
+
echo $output = ob_get_clean();
|
606 |
+
}
|
607 |
+
|
608 |
+
/**
|
609 |
+
* Show content of styling tab
|
610 |
+
*
|
611 |
+
* @author Webnus <info@webnus.biz>
|
612 |
+
* @return void
|
613 |
+
*/
|
614 |
+
public function styling() {
|
615 |
+
$path = MEC::import( 'app.features.mec.styling', true, true );
|
616 |
+
|
617 |
+
ob_start();
|
618 |
+
include $path;
|
619 |
+
echo $output = ob_get_clean();
|
620 |
+
}
|
621 |
+
|
622 |
+
/**
|
623 |
+
* Show content of import/export tab
|
624 |
+
*
|
625 |
+
* @author Webnus <info@webnus.biz>
|
626 |
+
* @return void
|
627 |
+
*/
|
628 |
+
public function import_export() {
|
629 |
+
$path = MEC::import( 'app.features.mec.ie', true, true );
|
630 |
+
|
631 |
+
ob_start();
|
632 |
+
include $path;
|
633 |
+
echo $output = ob_get_clean();
|
634 |
+
}
|
635 |
+
|
636 |
+
/**
|
637 |
+
* Show content of support tab
|
638 |
+
*
|
639 |
+
* @author Webnus <info@webnus.biz>
|
640 |
+
* @return void
|
641 |
+
*/
|
642 |
+
// public function support()
|
643 |
+
// {
|
644 |
+
// $path = MEC::import('app.features.mec.support', true, true);
|
645 |
+
// ob_start();
|
646 |
+
// include $path;
|
647 |
+
// echo $output = ob_get_clean();
|
648 |
+
// }
|
649 |
+
|
650 |
+
/**
|
651 |
+
* Show content of registration form tab
|
652 |
+
*
|
653 |
+
* @author Webnus <info@webnus.biz>
|
654 |
+
* @return void
|
655 |
+
*/
|
656 |
+
public function regform() {
|
657 |
+
$path = MEC::import( 'app.features.mec.regform', true, true );
|
658 |
+
|
659 |
+
ob_start();
|
660 |
+
include $path;
|
661 |
+
echo $output = ob_get_clean();
|
662 |
+
}
|
663 |
+
|
664 |
+
/**
|
665 |
+
* Show content of gateways tab
|
666 |
+
*
|
667 |
+
* @author Webnus <info@webnus.biz>
|
668 |
+
* @return void
|
669 |
+
*/
|
670 |
+
public function gateways() {
|
671 |
+
$path = MEC::import( 'app.features.mec.gateways', true, true );
|
672 |
+
|
673 |
+
ob_start();
|
674 |
+
include $path;
|
675 |
+
echo $output = ob_get_clean();
|
676 |
+
}
|
677 |
+
|
678 |
+
/**
|
679 |
+
* Show content of notifications tab
|
680 |
+
*
|
681 |
+
* @author Webnus <info@webnus.biz>
|
682 |
+
* @return void
|
683 |
+
*/
|
684 |
+
public function notifications() {
|
685 |
+
$path = MEC::import( 'app.features.mec.notifications', true, true );
|
686 |
+
|
687 |
+
ob_start();
|
688 |
+
include $path;
|
689 |
+
echo $output = ob_get_clean();
|
690 |
+
}
|
691 |
+
|
692 |
+
/**
|
693 |
+
* Show content of messages tab
|
694 |
+
*
|
695 |
+
* @author Webnus <info@webnus.biz>
|
696 |
+
* @return void
|
697 |
+
*/
|
698 |
+
public function messages() {
|
699 |
+
$path = MEC::import( 'app.features.mec.messages', true, true );
|
700 |
+
|
701 |
+
ob_start();
|
702 |
+
include $path;
|
703 |
+
echo $output = ob_get_clean();
|
704 |
+
}
|
705 |
+
|
706 |
+
/**
|
707 |
+
* Whether to include google recaptcha library
|
708 |
+
*
|
709 |
+
* @author Webnus <info@webnus.biz>
|
710 |
+
* @param boolean $grecaptcha_include
|
711 |
+
* @return boolean
|
712 |
+
*/
|
713 |
+
public function grecaptcha_include( $grecaptcha_include ) {
|
714 |
+
// Don't include the library if google recaptcha is not enabled
|
715 |
+
if ( ! $this->main->get_recaptcha_status() ) {
|
716 |
+
return false;
|
717 |
+
}
|
718 |
+
|
719 |
+
return $grecaptcha_include;
|
720 |
+
}
|
721 |
+
|
722 |
+
/**
|
723 |
+
* Whether to include google map library
|
724 |
+
*
|
725 |
+
* @author Webnus <info@webnus.biz>
|
726 |
+
* @param boolean $gm_include
|
727 |
+
* @return boolean
|
728 |
+
*/
|
729 |
+
public function gm_include( $gm_include ) {
|
730 |
+
// Don't include the library if google Maps API is set to don't load
|
731 |
+
if ( isset( $this->settings['google_maps_dont_load_api'] ) and $this->settings['google_maps_dont_load_api'] ) {
|
732 |
+
return false;
|
733 |
+
}
|
734 |
+
|
735 |
+
return $gm_include;
|
736 |
+
}
|
737 |
+
|
738 |
+
/**
|
739 |
+
* Single Event Display Method
|
740 |
+
*
|
741 |
+
* @param string $skin
|
742 |
+
* @param int $value
|
743 |
+
* @return string
|
744 |
+
*/
|
745 |
+
public function sed_method_field( $skin, $value = 0, $image_popup = 0 ) {
|
746 |
+
$image_popup_html = '
|
|
|
747 |
<div class="mec-form-row mec-image-popup-wrap mec-switcher">
|
748 |
<div class="mec-col-4">
|
749 |
+
<label for="mec_skin_' . $skin . '_image_popup">' . __( 'Display content\'s images as Popup', 'modern-events-calendar-lite' ) . '</label>
|
750 |
</div>
|
751 |
<div class="mec-col-4">
|
752 |
+
<input type="hidden" name="mec[sk-options][' . $skin . '][image_popup]" value="0" />
|
753 |
+
<input type="checkbox" name="mec[sk-options][' . $skin . '][image_popup]" id="mec_skin_' . $skin . '_image_popup" value="1"
|
754 |
';
|
755 |
+
if ( $image_popup == 1 ) {
|
756 |
+
$image_popup_html .= 'checked="checked"';
|
757 |
+
}
|
758 |
+
$image_popup_html .= '/><label for="mec_skin_' . $skin . '_image_popup"></label>
|
759 |
</div>
|
760 |
</div>
|
761 |
';
|
762 |
+
return '<div class="mec-form-row mec-sed-method-wrap">
|
763 |
<div class="mec-col-4">
|
764 |
+
<label for="mec_skin_' . $skin . '_sed_method">' . __( 'Single Event Display Method', 'modern-events-calendar-lite' ) . '</label>
|
765 |
</div>
|
766 |
<div class="mec-col-4">
|
767 |
+
<input type="hidden" name="mec[sk-options][' . $skin . '][sed_method]" value="' . $value . '" id="mec_skin_' . $skin . '_sed_method_field" />
|
768 |
+
<ul class="mec-sed-methods" data-for="#mec_skin_' . $skin . '_sed_method_field">
|
769 |
+
<li data-method="0" class="' . ( ! $value ? 'active' : '' ) . '">' . __( 'Separate Window', 'modern-events-calendar-lite' ) . '</li>
|
770 |
+
<li data-method="m1" class="' . ( $value === 'm1' ? 'active' : '' ) . '">' . __( 'Modal 1', 'modern-events-calendar-lite' ) . '</li>
|
771 |
</ul>
|
772 |
</div>
|
773 |
</div>' . $image_popup_html;
|
774 |
+
}
|
775 |
+
|
776 |
+
/**
|
777 |
+
* Disable Gutenberg Editor for MEC Post Types
|
778 |
+
*
|
779 |
+
* @param boolean $status
|
780 |
+
* @param string $post_type
|
781 |
+
* @return bool
|
782 |
+
*/
|
783 |
+
public function gutenberg( $status, $post_type ) {
|
784 |
+
if ( in_array( $post_type, array( $this->PT, $this->main->get_book_post_type(), $this->main->get_shortcode_post_type() ) ) ) {
|
785 |
+
return false;
|
786 |
+
}
|
787 |
+
return $status;
|
788 |
+
}
|
789 |
}
|
app/features/mec/regform.php
CHANGED
@@ -24,7 +24,7 @@ if ( ! $mec_name ) {
|
|
24 |
[
|
25 |
'mandatory' => '0',
|
26 |
'type' => 'name',
|
27 |
-
'label' => esc_html__( 'Name', 'modern-events-calendar-lite'),
|
28 |
]
|
29 |
);
|
30 |
}
|
@@ -35,7 +35,7 @@ if ( ! $mec_email ) {
|
|
35 |
[
|
36 |
'mandatory' => '0',
|
37 |
'type' => 'mec_email',
|
38 |
-
'label' => esc_html__( 'Email', 'modern-events-calendar-lite'),
|
39 |
]
|
40 |
);
|
41 |
}
|
@@ -44,7 +44,7 @@ if ( ! $mec_email ) {
|
|
44 |
<div class="wns-be-container">
|
45 |
|
46 |
<div id="wns-be-infobar">
|
47 |
-
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e( 'Save Changes', 'modern-events-calendar-lite'); ?></a>
|
48 |
</div>
|
49 |
|
50 |
<div class="wns-be-sidebar">
|
@@ -57,7 +57,7 @@ if ( ! $mec_email ) {
|
|
57 |
<i class="sl-arrow-down"></i>
|
58 |
</span>
|
59 |
<i class="mec-sl-settings"></i>
|
60 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Settings', 'modern-events-calendar-lite'); ?></span>
|
61 |
</a>
|
62 |
</li>
|
63 |
|
@@ -65,14 +65,14 @@ if ( ! $mec_email ) {
|
|
65 |
<li class="wns-be-group-menu-li active">
|
66 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-reg-form' ); ?>" id="" class="wns-be-group-tab-link-a">
|
67 |
<i class="mec-sl-layers"></i>
|
68 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Booking Form', 'modern-events-calendar-lite'); ?></span>
|
69 |
</a>
|
70 |
</li>
|
71 |
|
72 |
<li class="wns-be-group-menu-li">
|
73 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-gateways' ); ?>" id="" class="wns-be-group-tab-link-a">
|
74 |
<i class="mec-sl-wallet"></i>
|
75 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Payment Gateways', 'modern-events-calendar-lite'); ?></span>
|
76 |
</a>
|
77 |
</li>
|
78 |
<?php endif; ?>
|
@@ -80,42 +80,42 @@ if ( ! $mec_email ) {
|
|
80 |
<li class="wns-be-group-menu-li">
|
81 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-notifications' ); ?>" id="" class="wns-be-group-tab-link-a">
|
82 |
<i class="mec-sl-envelope"></i>
|
83 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Notifications', 'modern-events-calendar-lite'); ?></span>
|
84 |
</a>
|
85 |
</li>
|
86 |
|
87 |
<li class="wns-be-group-menu-li">
|
88 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-styling' ); ?>" id="" class="wns-be-group-tab-link-a">
|
89 |
<i class="mec-sl-equalizer"></i>
|
90 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Styling Options', 'modern-events-calendar-lite'); ?></span>
|
91 |
</a>
|
92 |
</li>
|
93 |
|
94 |
<li class="wns-be-group-menu-li">
|
95 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-customcss' ); ?>" id="" class="wns-be-group-tab-link-a">
|
96 |
<i class="mec-sl-wrench"></i>
|
97 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Custom CSS', 'modern-events-calendar-lite'); ?></span>
|
98 |
</a>
|
99 |
</li>
|
100 |
|
101 |
<li class="wns-be-group-menu-li">
|
102 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-messages' ); ?>" id="" class="wns-be-group-tab-link-a">
|
103 |
<i class="mec-sl-bubble"></i>
|
104 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Messages', 'modern-events-calendar-lite'); ?></span>
|
105 |
</a>
|
106 |
</li>
|
107 |
|
108 |
<li class="wns-be-group-menu-li">
|
109 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-ie' ); ?>" id="" class="wns-be-group-tab-link-a">
|
110 |
<i class="mec-sl-refresh"></i>
|
111 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Import / Export', 'modern-events-calendar-lite'); ?></span>
|
112 |
</a>
|
113 |
</li>
|
114 |
|
115 |
<!-- <li class="wns-be-group-menu-li">
|
116 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-support' ); ?>" id="" class="wns-be-group-tab-link-a">
|
117 |
<i class="mec-sl-support"></i>
|
118 |
-
<span class="wns-be-group-menu-title"><?php _e( 'Support', 'modern-events-calendar-lite'); ?></span>
|
119 |
</a>
|
120 |
</li> -->
|
121 |
|
@@ -128,7 +128,7 @@ if ( ! $mec_email ) {
|
|
128 |
|
129 |
<div id="wns-be-content">
|
130 |
<div class="wns-be-group-tab">
|
131 |
-
<h2><?php _e( 'Booking Form', 'modern-events-calendar-lite'); ?></h2>
|
132 |
<div class="mec-container">
|
133 |
<?php do_action( 'before_mec_reg_fields_form' ); ?>
|
134 |
<form id="mec_reg_fields_form">
|
@@ -177,25 +177,25 @@ if ( ! $mec_email ) {
|
|
177 |
?>
|
178 |
</ul>
|
179 |
<div id="mec_reg_form_field_types">
|
180 |
-
<button type="button" class="button red" data-type="name"><?php _e( 'MEC Name', 'modern-events-calendar-lite'); ?></button>
|
181 |
-
<button type="button" class="button red" data-type="mec_email"><?php _e( 'MEC Email', 'modern-events-calendar-lite'); ?></button>
|
182 |
-
<button type="button" class="button" data-type="text"><?php _e( 'Text', 'modern-events-calendar-lite'); ?></button>
|
183 |
-
<button type="button" class="button" data-type="email"><?php _e( 'Email', 'modern-events-calendar-lite'); ?></button>
|
184 |
-
<button type="button" class="button" data-type="date"><?php _e( 'Date', 'modern-events-calendar-lite'); ?></button>
|
185 |
-
<button type="button" class="button" data-type="tel"><?php _e( 'Tel', 'modern-events-calendar-lite'); ?></button>
|
186 |
-
<button type="button" class="button" data-type="file"><?php _e( 'File', 'modern-events-calendar-lite'); ?></button>
|
187 |
-
<button type="button" class="button" data-type="textarea"><?php _e( 'Textarea', 'modern-events-calendar-lite'); ?></button>
|
188 |
-
<button type="button" class="button" data-type="checkbox"><?php _e( 'Checkboxes', 'modern-events-calendar-lite'); ?></button>
|
189 |
-
<button type="button" class="button" data-type="radio"><?php _e( 'Radio Buttons', 'modern-events-calendar-lite'); ?></button>
|
190 |
-
<button type="button" class="button" data-type="select"><?php _e( 'Dropdown', 'modern-events-calendar-lite'); ?></button>
|
191 |
-
<button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite'); ?></button>
|
192 |
-
<button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite'); ?></button>
|
193 |
</div>
|
194 |
<?php do_action( 'mec_reg_fields_form_end' ); ?>
|
195 |
</div>
|
196 |
<div class="mec-form-row">
|
197 |
<?php wp_nonce_field( 'mec_options_form' ); ?>
|
198 |
-
<button style="display: none;" id="mec_reg_fields_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e( 'Save Changes', 'modern-events-calendar-lite'); ?></button>
|
199 |
</div>
|
200 |
</form>
|
201 |
<?php do_action( 'after_mec_reg_fields_form' ); ?>
|
@@ -250,7 +250,7 @@ if ( ! $mec_email ) {
|
|
250 |
</div>
|
251 |
|
252 |
<div id="wns-be-footer">
|
253 |
-
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e( 'Save Changes', 'modern-events-calendar-lite'); ?></a>
|
254 |
</div>
|
255 |
|
256 |
</div>
|
@@ -270,8 +270,8 @@ jQuery("#mec_reg_fields_form").on('submit', function(event)
|
|
270 |
event.preventDefault();
|
271 |
|
272 |
// Add loading Class to the button
|
273 |
-
jQuery(".dpr-save-btn").addClass('loading').text("<?php echo esc_js( esc_attr__( 'Saved', 'modern-events-calendar-lite') ); ?>");
|
274 |
-
jQuery('<div class="wns-saved-settings"><?php echo esc_js( esc_attr__( 'Settings Saved!', 'modern-events-calendar-lite') ); ?></div>').insertBefore('#wns-be-content');
|
275 |
|
276 |
var fields = jQuery("#mec_reg_fields_form").serialize();
|
277 |
jQuery.ajax(
|
@@ -286,7 +286,7 @@ jQuery("#mec_reg_fields_form").on('submit', function(event)
|
|
286 |
{
|
287 |
// Remove the loading Class to the button
|
288 |
setTimeout(function(){
|
289 |
-
jQuery(".dpr-save-btn").removeClass('loading').text("<?php echo esc_js( esc_attr__( 'Save Changes', 'modern-events-calendar-lite') ); ?>");
|
290 |
jQuery('.wns-saved-settings').remove();
|
291 |
jQuery('.mec-loarder-wrap').remove();
|
292 |
}, 1000);
|
@@ -295,7 +295,7 @@ jQuery("#mec_reg_fields_form").on('submit', function(event)
|
|
295 |
{
|
296 |
// Remove the loading Class to the button
|
297 |
setTimeout(function(){
|
298 |
-
jQuery(".dpr-save-btn").removeClass('loading').text("<?php echo esc_js( esc_attr__( 'Save Changes', 'modern-events-calendar-lite') ); ?>");
|
299 |
jQuery('.wns-saved-settings').remove();
|
300 |
jQuery('.mec-loarder-wrap').remove();
|
301 |
}, 1000);
|
24 |
[
|
25 |
'mandatory' => '0',
|
26 |
'type' => 'name',
|
27 |
+
'label' => esc_html__( 'Name', 'modern-events-calendar-lite' ),
|
28 |
]
|
29 |
);
|
30 |
}
|
35 |
[
|
36 |
'mandatory' => '0',
|
37 |
'type' => 'mec_email',
|
38 |
+
'label' => esc_html__( 'Email', 'modern-events-calendar-lite' ),
|
39 |
]
|
40 |
);
|
41 |
}
|
44 |
<div class="wns-be-container">
|
45 |
|
46 |
<div id="wns-be-infobar">
|
47 |
+
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e( 'Save Changes', 'modern-events-calendar-lite' ); ?></a>
|
48 |
</div>
|
49 |
|
50 |
<div class="wns-be-sidebar">
|
57 |
<i class="sl-arrow-down"></i>
|
58 |
</span>
|
59 |
<i class="mec-sl-settings"></i>
|
60 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Settings', 'modern-events-calendar-lite' ); ?></span>
|
61 |
</a>
|
62 |
</li>
|
63 |
|
65 |
<li class="wns-be-group-menu-li active">
|
66 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-reg-form' ); ?>" id="" class="wns-be-group-tab-link-a">
|
67 |
<i class="mec-sl-layers"></i>
|
68 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Booking Form', 'modern-events-calendar-lite' ); ?></span>
|
69 |
</a>
|
70 |
</li>
|
71 |
|
72 |
<li class="wns-be-group-menu-li">
|
73 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-gateways' ); ?>" id="" class="wns-be-group-tab-link-a">
|
74 |
<i class="mec-sl-wallet"></i>
|
75 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Payment Gateways', 'modern-events-calendar-lite' ); ?></span>
|
76 |
</a>
|
77 |
</li>
|
78 |
<?php endif; ?>
|
80 |
<li class="wns-be-group-menu-li">
|
81 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-notifications' ); ?>" id="" class="wns-be-group-tab-link-a">
|
82 |
<i class="mec-sl-envelope"></i>
|
83 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Notifications', 'modern-events-calendar-lite' ); ?></span>
|
84 |
</a>
|
85 |
</li>
|
86 |
|
87 |
<li class="wns-be-group-menu-li">
|
88 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-styling' ); ?>" id="" class="wns-be-group-tab-link-a">
|
89 |
<i class="mec-sl-equalizer"></i>
|
90 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Styling Options', 'modern-events-calendar-lite' ); ?></span>
|
91 |
</a>
|
92 |
</li>
|
93 |
|
94 |
<li class="wns-be-group-menu-li">
|
95 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-customcss' ); ?>" id="" class="wns-be-group-tab-link-a">
|
96 |
<i class="mec-sl-wrench"></i>
|
97 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Custom CSS', 'modern-events-calendar-lite' ); ?></span>
|
98 |
</a>
|
99 |
</li>
|
100 |
|
101 |
<li class="wns-be-group-menu-li">
|
102 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-messages' ); ?>" id="" class="wns-be-group-tab-link-a">
|
103 |
<i class="mec-sl-bubble"></i>
|
104 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Messages', 'modern-events-calendar-lite' ); ?></span>
|
105 |
</a>
|
106 |
</li>
|
107 |
|
108 |
<li class="wns-be-group-menu-li">
|
109 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-ie' ); ?>" id="" class="wns-be-group-tab-link-a">
|
110 |
<i class="mec-sl-refresh"></i>
|
111 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Import / Export', 'modern-events-calendar-lite' ); ?></span>
|
112 |
</a>
|
113 |
</li>
|
114 |
|
115 |
<!-- <li class="wns-be-group-menu-li">
|
116 |
<a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-support' ); ?>" id="" class="wns-be-group-tab-link-a">
|
117 |
<i class="mec-sl-support"></i>
|
118 |
+
<span class="wns-be-group-menu-title"><?php _e( 'Support', 'modern-events-calendar-lite' ); ?></span>
|
119 |
</a>
|
120 |
</li> -->
|
121 |
|
128 |
|
129 |
<div id="wns-be-content">
|
130 |
<div class="wns-be-group-tab">
|
131 |
+
<h2><?php _e( 'Booking Form', 'modern-events-calendar-lite' ); ?></h2>
|
132 |
<div class="mec-container">
|
133 |
<?php do_action( 'before_mec_reg_fields_form' ); ?>
|
134 |
<form id="mec_reg_fields_form">
|
177 |
?>
|
178 |
</ul>
|
179 |
<div id="mec_reg_form_field_types">
|
180 |
+
<button type="button" class="button red" data-type="name"><?php _e( 'MEC Name', 'modern-events-calendar-lite' ); ?></button>
|
181 |
+
<button type="button" class="button red" data-type="mec_email"><?php _e( 'MEC Email', 'modern-events-calendar-lite' ); ?></button>
|
182 |
+
<button type="button" class="button" data-type="text"><?php _e( 'Text', 'modern-events-calendar-lite' ); ?></button>
|
183 |
+
<button type="button" class="button" data-type="email"><?php _e( 'Email', 'modern-events-calendar-lite' ); ?></button>
|
184 |
+
<button type="button" class="button" data-type="date"><?php _e( 'Date', 'modern-events-calendar-lite' ); ?></button>
|
185 |
+
<button type="button" class="button" data-type="tel"><?php _e( 'Tel', 'modern-events-calendar-lite' ); ?></button>
|
186 |
+
<button type="button" class="button" data-type="file"><?php _e( 'File', 'modern-events-calendar-lite' ); ?></button>
|
187 |
+
<button type="button" class="button" data-type="textarea"><?php _e( 'Textarea', 'modern-events-calendar-lite' ); ?></button>
|
188 |
+
<button type="button" class="button" data-type="checkbox"><?php _e( 'Checkboxes', 'modern-events-calendar-lite' ); ?></button>
|
189 |
+
<button type="button" class="button" data-type="radio"><?php _e( 'Radio Buttons', 'modern-events-calendar-lite' ); ?></button>
|
190 |
+
<button type="button" class="button" data-type="select"><?php _e( 'Dropdown', 'modern-events-calendar-lite' ); ?></button>
|
191 |
+
<button type="button" class="button" data-type="agreement"><?php _e( 'Agreement', 'modern-events-calendar-lite' ); ?></button>
|
192 |
+
<button type="button" class="button" data-type="p"><?php _e( 'Paragraph', 'modern-events-calendar-lite' ); ?></button>
|
193 |
</div>
|
194 |
<?php do_action( 'mec_reg_fields_form_end' ); ?>
|
195 |
</div>
|
196 |
<div class="mec-form-row">
|
197 |
<?php wp_nonce_field( 'mec_options_form' ); ?>
|
198 |
+
<button style="display: none;" id="mec_reg_fields_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e( 'Save Changes', 'modern-events-calendar-lite' ); ?></button>
|
199 |
</div>
|
200 |
</form>
|
201 |
<?php do_action( 'after_mec_reg_fields_form' ); ?>
|
250 |
</div>
|
251 |
|
252 |
<div id="wns-be-footer">
|
253 |
+
<a href="" id="" class="dpr-btn dpr-save-btn"><?php _e( 'Save Changes', 'modern-events-calendar-lite' ); ?></a>
|
254 |
</div>
|
255 |
|
256 |
</div>
|
270 |
event.preventDefault();
|
271 |
|
272 |
// Add loading Class to the button
|
273 |
+
jQuery(".dpr-save-btn").addClass('loading').text("<?php echo esc_js( esc_attr__( 'Saved', 'modern-events-calendar-lite' ) ); ?>");
|
274 |
+
jQuery('<div class="wns-saved-settings"><?php echo esc_js( esc_attr__( 'Settings Saved!', 'modern-events-calendar-lite' ) ); ?></div>').insertBefore('#wns-be-content');
|
275 |
|
276 |
var fields = jQuery("#mec_reg_fields_form").serialize();
|
277 |
jQuery.ajax(
|
286 |
{
|
287 |
// Remove the loading Class to the button
|
288 |
setTimeout(function(){
|
289 |
+
jQuery(".dpr-save-btn").removeClass('loading').text("<?php echo esc_js( esc_attr__( 'Save Changes', 'modern-events-calendar-lite' ) ); ?>");
|
290 |
jQuery('.wns-saved-settings').remove();
|
291 |
jQuery('.mec-loarder-wrap').remove();
|
292 |
}, 1000);
|
295 |
{
|
296 |
// Remove the loading Class to the button
|
297 |
setTimeout(function(){
|
298 |
+
jQuery(".dpr-save-btn").removeClass('loading').text("<?php echo esc_js( esc_attr__( 'Save Changes', 'modern-events-calendar-lite' ) ); ?>");
|
299 |
jQuery('.wns-saved-settings').remove();
|
300 |
jQuery('.mec-loarder-wrap').remove();
|
301 |
}, 1000);
|
app/features/mec/styling.php
CHANGED
@@ -134,10 +134,10 @@ if(is_array($fonts))
|
|
134 |
<!-- <input type="text" class="wp-color-picker-field" id="mec_settings_color" name="mec[styling][color]" value="<?php echo (isset($styling['color']) ? $styling['color'] : ''); ?>" data-default-color="" /> -->*/ ?>
|
135 |
|
136 |
<!-- Colorskin -->
|
137 |
-
<h4 class="mec-form-subtitle"><?php esc_html_e('Color Skin', 'modern-events-calendar-lite'); ?></h4>
|
138 |
<div class="mec-form-row">
|
139 |
<div class="mec-col-3">
|
140 |
-
<p><?php esc_html_e('Predefined Color Skin', 'modern-events-calendar-lite'); ?></p>
|
141 |
</div>
|
142 |
<div class="mec-col-6">
|
143 |
<ul class="mec-image-select-wrap">
|
@@ -180,7 +180,7 @@ if(is_array($fonts))
|
|
180 |
</div>
|
181 |
<div class="mec-form-row">
|
182 |
<div class="mec-col-3">
|
183 |
-
<p><?php esc_html_e('Custom Color Skin', 'modern-events-calendar-lite'); ?></p>
|
184 |
</div>
|
185 |
<div class="mec-col-6">
|
186 |
<input type="text" class="wp-color-picker-field" id="mec_settings_color" name="mec[styling][color]" value="<?php echo (isset($styling['color']) ? $styling['color'] : ''); ?>" data-default-color="" />
|
@@ -188,10 +188,10 @@ if(is_array($fonts))
|
|
188 |
</div>
|
189 |
|
190 |
<!-- Advanced Options -->
|
191 |
-
<h4 class="mec-form-subtitle"><?php esc_html_e('Advanced Color Options (shortcodes)', 'modern-events-calendar-lite'); ?></h4>
|
192 |
<div class="mec-form-row">
|
193 |
<div class="mec-col-3">
|
194 |
-
<p><?php esc_html_e('Title', 'modern-events-calendar-lite'); ?></p>
|
195 |
</div>
|
196 |
<div class="mec-col-6">
|
197 |
<input type="text" class="wp-color-picker-field" id="mec_settings_title_color" name="mec[styling][title_color]" value="<?php echo (isset($styling['title_color']) ? $styling['title_color'] : ''); ?>" data-default-color="" />
|
@@ -200,7 +200,7 @@ if(is_array($fonts))
|
|
200 |
|
201 |
<div class="mec-form-row">
|
202 |
<div class="mec-col-3">
|
203 |
-
<p><?php esc_html_e('Title Hover', 'modern-events-calendar-lite'); ?></p>
|
204 |
</div>
|
205 |
<div class="mec-col-6">
|
206 |
<input type="text" class="wp-color-picker-field" id="mec_settings_title_color_hover" name="mec[styling][title_color_hover]" value="<?php echo (isset($styling['title_color_hover']) ? $styling['title_color_hover'] : ''); ?>" data-default-color="" />
|
@@ -209,7 +209,7 @@ if(is_array($fonts))
|
|
209 |
|
210 |
<div class="mec-form-row">
|
211 |
<div class="mec-col-3">
|
212 |
-
<p><?php esc_html_e('Content', 'modern-events-calendar-lite'); ?></p>
|
213 |
</div>
|
214 |
<div class="mec-col-6">
|
215 |
<input type="text" class="wp-color-picker-field" id="mec_settings_content_color" name="mec[styling][content_color]" value="<?php echo (isset($styling['content_color']) ? $styling['content_color'] : ''); ?>" data-default-color="" />
|
@@ -217,7 +217,7 @@ if(is_array($fonts))
|
|
217 |
</div>
|
218 |
|
219 |
<!-- Typography -->
|
220 |
-
<h4 class="mec-form-subtitle"><?php esc_html_e('Typography', 'modern-events-calendar-lite'); ?></h4>
|
221 |
<div class="mec-form-row">
|
222 |
<label class="mec-col-3" for="mec_h_fontfamily"><?php _e('Heading (Events Title) Font Family', 'modern-events-calendar-lite'); ?></label>
|
223 |
<div class="mec-col-4">
|
@@ -283,7 +283,7 @@ if(is_array($fonts))
|
|
283 |
</div>
|
284 |
|
285 |
<!-- Container Width -->
|
286 |
-
<h4 class="mec-form-subtitle"><?php esc_html_e('Container Width', 'modern-events-calendar-lite'); ?></h4>
|
287 |
<div class="mec-form-row">
|
288 |
<label class="mec-col-3" for="mec_styling_container_normal_width"><?php _e('Desktop Normal Screens', 'modern-events-calendar-lite'); ?></label>
|
289 |
<div class="mec-col-4">
|
134 |
<!-- <input type="text" class="wp-color-picker-field" id="mec_settings_color" name="mec[styling][color]" value="<?php echo (isset($styling['color']) ? $styling['color'] : ''); ?>" data-default-color="" /> -->*/ ?>
|
135 |
|
136 |
<!-- Colorskin -->
|
137 |
+
<h4 class="mec-form-subtitle"><?php esc_html_e('Color Skin', 'modern-events-calendar-lite' ); ?></h4>
|
138 |
<div class="mec-form-row">
|
139 |
<div class="mec-col-3">
|
140 |
+
<p><?php esc_html_e('Predefined Color Skin', 'modern-events-calendar-lite' ); ?></p>
|
141 |
</div>
|
142 |
<div class="mec-col-6">
|
143 |
<ul class="mec-image-select-wrap">
|
180 |
</div>
|
181 |
<div class="mec-form-row">
|
182 |
<div class="mec-col-3">
|
183 |
+
<p><?php esc_html_e('Custom Color Skin', 'modern-events-calendar-lite' ); ?></p>
|
184 |
</div>
|
185 |
<div class="mec-col-6">
|
186 |
<input type="text" class="wp-color-picker-field" id="mec_settings_color" name="mec[styling][color]" value="<?php echo (isset($styling['color']) ? $styling['color'] : ''); ?>" data-default-color="" />
|
188 |
</div>
|
189 |
|
190 |
<!-- Advanced Options -->
|
191 |
+
<h4 class="mec-form-subtitle"><?php esc_html_e('Advanced Color Options (shortcodes)', 'modern-events-calendar-lite' ); ?></h4>
|
192 |
<div class="mec-form-row">
|
193 |
<div class="mec-col-3">
|
194 |
+
<p><?php esc_html_e('Title', 'modern-events-calendar-lite' ); ?></p>
|
195 |
</div>
|
196 |
<div class="mec-col-6">
|
197 |
<input type="text" class="wp-color-picker-field" id="mec_settings_title_color" name="mec[styling][title_color]" value="<?php echo (isset($styling['title_color']) ? $styling['title_color'] : ''); ?>" data-default-color="" />
|
200 |
|
201 |
<div class="mec-form-row">
|
202 |
<div class="mec-col-3">
|
203 |
+
<p><?php esc_html_e('Title Hover', 'modern-events-calendar-lite' ); ?></p>
|
204 |
</div>
|
205 |
<div class="mec-col-6">
|
206 |
<input type="text" class="wp-color-picker-field" id="mec_settings_title_color_hover" name="mec[styling][title_color_hover]" value="<?php echo (isset($styling['title_color_hover']) ? $styling['title_color_hover'] : ''); ?>" data-default-color="" />
|
209 |
|
210 |
<div class="mec-form-row">
|
211 |
<div class="mec-col-3">
|
212 |
+
<p><?php esc_html_e('Content', 'modern-events-calendar-lite' ); ?></p>
|
213 |
</div>
|
214 |
<div class="mec-col-6">
|
215 |
<input type="text" class="wp-color-picker-field" id="mec_settings_content_color" name="mec[styling][content_color]" value="<?php echo (isset($styling['content_color']) ? $styling['content_color'] : ''); ?>" data-default-color="" />
|
217 |
</div>
|
218 |
|
219 |
<!-- Typography -->
|
220 |
+
<h4 class="mec-form-subtitle"><?php esc_html_e('Typography', 'modern-events-calendar-lite' ); ?></h4>
|
221 |
<div class="mec-form-row">
|
222 |
<label class="mec-col-3" for="mec_h_fontfamily"><?php _e('Heading (Events Title) Font Family', 'modern-events-calendar-lite'); ?></label>
|
223 |
<div class="mec-col-4">
|
283 |
</div>
|
284 |
|
285 |
<!-- Container Width -->
|
286 |
+
<h4 class="mec-form-subtitle"><?php esc_html_e('Container Width', 'modern-events-calendar-lite' ); ?></h4>
|
287 |
<div class="mec-form-row">
|
288 |
<label class="mec-col-3" for="mec_styling_container_normal_width"><?php _e('Desktop Normal Screens', 'modern-events-calendar-lite'); ?></label>
|
289 |
<div class="mec-col-4">
|
app/features/mec/support-page.php
CHANGED
@@ -211,10 +211,10 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
|
|
211 |
</div>
|
212 |
|
213 |
<div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I have more than one calendar in one website?', 'modern-events-calendar-lite'); ?></a></div>
|
214 |
-
<div class="mec-faq-accordion-content"><?php esc_html_e( 'Unfortunately, MEC does not support more than 1 calendar in a single website, however, it will be added in its upcoming updates.' , 'modern-events-calendar-lite'); ?></div>
|
215 |
|
216 |
<div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I import/export from/to MEC?', 'modern-events-calendar-lite'); ?></a></div>
|
217 |
-
<div class="mec-faq-accordion-content"><?php esc_html_e( 'Yes, you can get an XML export from MEC data or import the file you\'ve exported to MEC. Also, if you are using one of the following plugins (The event calendar, calendarize it, EventOn, Events Schedule WP Plugin), then you can easily transfer your events to MEC.', 'modern-events-calendar-lite'); ?></div>
|
218 |
</div>
|
219 |
</div>
|
220 |
</div>
|
211 |
</div>
|
212 |
|
213 |
<div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I have more than one calendar in one website?', 'modern-events-calendar-lite'); ?></a></div>
|
214 |
+
<div class="mec-faq-accordion-content"><?php esc_html_e( 'Unfortunately, MEC does not support more than 1 calendar in a single website, however, it will be added in its upcoming updates.' , 'modern-events-calendar-lite' ); ?></div>
|
215 |
|
216 |
<div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I import/export from/to MEC?', 'modern-events-calendar-lite'); ?></a></div>
|
217 |
+
<div class="mec-faq-accordion-content"><?php esc_html_e( 'Yes, you can get an XML export from MEC data or import the file you\'ve exported to MEC. Also, if you are using one of the following plugins (The event calendar, calendarize it, EventOn, Events Schedule WP Plugin), then you can easily transfer your events to MEC.', 'modern-events-calendar-lite' ); ?></div>
|
218 |
</div>
|
219 |
</div>
|
220 |
</div>
|
app/libraries/book.php
CHANGED
@@ -630,9 +630,15 @@ class MEC_book extends MEC_base
|
|
630 |
{
|
631 |
$attendees = get_post_meta($book_id, 'mec_attendees', true);
|
632 |
$count = 0;
|
|
|
633 |
if(is_array($attendees)) {
|
634 |
-
foreach ( $attendees as $attendee) {
|
635 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
636 |
$count++;
|
637 |
}
|
638 |
}
|
630 |
{
|
631 |
$attendees = get_post_meta($book_id, 'mec_attendees', true);
|
632 |
$count = 0;
|
633 |
+
|
634 |
if(is_array($attendees)) {
|
635 |
+
foreach ( $attendees as $key => $attendee) {
|
636 |
+
if ($key === 'attachments') {
|
637 |
+
continue;
|
638 |
+
}
|
639 |
+
if (!isset($attendee[0]['MEC_TYPE_OF_DATA'])) {
|
640 |
+
$count++;
|
641 |
+
} else if ($attendee[0]['MEC_TYPE_OF_DATA'] != 'attachment') {
|
642 |
$count++;
|
643 |
}
|
644 |
}
|
app/libraries/feed.php
CHANGED
@@ -37,6 +37,17 @@ class MEC_feed extends MEC_base
|
|
37 |
$permalink = get_post_permalink($post_id);
|
38 |
return esc_url(apply_filters('the_permalink_rss', $permalink));
|
39 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
/**
|
42 |
* @author Webnus <info@webnus.biz>
|
37 |
$permalink = get_post_permalink($post_id);
|
38 |
return esc_url(apply_filters('the_permalink_rss', $permalink));
|
39 |
}
|
40 |
+
|
41 |
+
/**
|
42 |
+
* @author Webnus <info@webnus.biz>
|
43 |
+
* @param int $post_id
|
44 |
+
* @return string
|
45 |
+
*/
|
46 |
+
public function attachment($post_id)
|
47 |
+
{
|
48 |
+
$featured_link = get_the_post_thumbnail_url($post_id,'full');
|
49 |
+
return esc_url(apply_filters('the_attachment_rss', $featured_link));
|
50 |
+
}
|
51 |
|
52 |
/**
|
53 |
* @author Webnus <info@webnus.biz>
|
app/libraries/main.php
CHANGED
@@ -4184,10 +4184,11 @@ class MEC_main extends MEC_base
|
|
4184 |
|
4185 |
// Include Google Maps Javascript API
|
4186 |
$gm_include = apply_filters('mec_gm_include', true);
|
4187 |
-
if
|
4188 |
-
|
4189 |
-
|
4190 |
-
|
|
|
4191 |
}
|
4192 |
|
4193 |
/**
|
4184 |
|
4185 |
// Include Google Maps Javascript API
|
4186 |
$gm_include = apply_filters('mec_gm_include', true);
|
4187 |
+
if ( $this->getPRO() ) {
|
4188 |
+
if($gm_include) wp_enqueue_script('googlemap', '//maps.googleapis.com/maps/api/js?libraries=places'.((isset($settings['google_maps_api_key']) and trim($settings['google_maps_api_key']) != '') ? '&key='.$settings['google_maps_api_key'] : ''));
|
4189 |
+
// Google Maps Rich Marker
|
4190 |
+
wp_enqueue_script('mec-richmarker-script', $this->asset('packages/richmarker/richmarker.min.js'));
|
4191 |
+
}
|
4192 |
}
|
4193 |
|
4194 |
/**
|
app/libraries/notifications.php
CHANGED
@@ -288,6 +288,9 @@ class MEC_notifications extends MEC_base
|
|
288 |
// Send the emails
|
289 |
foreach($attendees as $attendee)
|
290 |
{
|
|
|
|
|
|
|
291 |
$to = $attendee['email'];
|
292 |
$message = isset($this->notif_settings['booking_reminder']['content']) ? $this->content($this->notif_settings['booking_reminder']['content'], $book_id, $attendee) : '';
|
293 |
|
@@ -555,6 +558,9 @@ class MEC_notifications extends MEC_base
|
|
555 |
$reg_fields = $this->main->get_reg_fields($event_id);
|
556 |
foreach($attendees as $attendee)
|
557 |
{
|
|
|
|
|
|
|
558 |
$reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
|
559 |
|
560 |
$attendees_full_info .= __('Name', 'modern-events-calendar-lite').': '.((isset($attendee['name']) and trim($attendee['name'])) ? $attendee['name'] : '---')."\r\n";
|
288 |
// Send the emails
|
289 |
foreach($attendees as $attendee)
|
290 |
{
|
291 |
+
if (isset($attendee[0]['MEC_TYPE_OF_DATA'])) {
|
292 |
+
continue;
|
293 |
+
}
|
294 |
$to = $attendee['email'];
|
295 |
$message = isset($this->notif_settings['booking_reminder']['content']) ? $this->content($this->notif_settings['booking_reminder']['content'], $book_id, $attendee) : '';
|
296 |
|
558 |
$reg_fields = $this->main->get_reg_fields($event_id);
|
559 |
foreach($attendees as $attendee)
|
560 |
{
|
561 |
+
if (isset($attendee[0]['MEC_TYPE_OF_DATA'])) {
|
562 |
+
continue;
|
563 |
+
}
|
564 |
$reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
|
565 |
|
566 |
$attendees_full_info .= __('Name', 'modern-events-calendar-lite').': '.((isset($attendee['name']) and trim($attendee['name'])) ? $attendee['name'] : '---')."\r\n";
|
app/libraries/skins.php
CHANGED
@@ -449,7 +449,7 @@ class MEC_skins extends MEC_base
|
|
449 |
$seconds_end = strtotime($end);
|
450 |
|
451 |
$order = "`tstart` ASC";
|
452 |
-
$
|
453 |
// (Start: In, Finish: In) OR (Start: Before or In, Finish: After) OR (Start: Before, Finish: In or After)
|
454 |
|
455 |
if($this->show_only_expired_events)
|
@@ -461,15 +461,23 @@ class MEC_skins extends MEC_base
|
|
461 |
elseif($this->hide_time_method == 'end') $column = 'tend';
|
462 |
|
463 |
$order = "`tstart` DESC";
|
464 |
-
$
|
465 |
}
|
466 |
elseif($this->show_ongoing_events)
|
467 |
{
|
468 |
$now = time();
|
469 |
-
$
|
470 |
}
|
471 |
|
472 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
$mec_dates = $this->db->select($query, 'loadObjectList');
|
474 |
|
475 |
// Today and Now
|
@@ -597,6 +605,10 @@ class MEC_skins extends MEC_base
|
|
597 |
{
|
598 |
// Next Offset
|
599 |
$this->next_offset = ($query->post_count-($query->current_post+1)) >= 0 ? ($query->current_post+1)+$this->offset : 0;
|
|
|
|
|
|
|
|
|
600 |
break 2;
|
601 |
}
|
602 |
}
|
449 |
$seconds_end = strtotime($end);
|
450 |
|
451 |
$order = "`tstart` ASC";
|
452 |
+
$where_OR = "(`tstart`>='".$seconds_start."' AND `tend`<='".$seconds_end."') OR (`tstart`<='".$seconds_end."' AND `tend`>='".$seconds_end."') OR (`tstart`<='".$seconds_start."' AND `tend`>='".$seconds_start."')";
|
453 |
// (Start: In, Finish: In) OR (Start: Before or In, Finish: After) OR (Start: Before, Finish: In or After)
|
454 |
|
455 |
if($this->show_only_expired_events)
|
461 |
elseif($this->hide_time_method == 'end') $column = 'tend';
|
462 |
|
463 |
$order = "`tstart` DESC";
|
464 |
+
$where_OR = "`".$column."`<'".$seconds_start."'";
|
465 |
}
|
466 |
elseif($this->show_ongoing_events)
|
467 |
{
|
468 |
$now = time();
|
469 |
+
$where_OR = "(`tstart`<='".$now."' AND `tend`>='".$now."')";
|
470 |
}
|
471 |
|
472 |
+
$where_AND = '1';
|
473 |
+
|
474 |
+
// Exclude Events
|
475 |
+
if(isset($this->atts['exclude']) and is_array($this->atts['exclude']) and count($this->atts['exclude'])) $where_AND .= " AND `post_id` NOT IN (".implode(',', $this->atts['exclude']).")";
|
476 |
+
|
477 |
+
// Include Events
|
478 |
+
if(isset($this->atts['include']) and is_array($this->atts['include']) and count($this->atts['include'])) $where_AND .= " AND `post_id` IN (".implode(',', $this->atts['include']).")";
|
479 |
+
|
480 |
+
$query = "SELECT * FROM `#__mec_dates` WHERE (".$where_OR.") AND (".$where_AND.") ORDER BY ".$order;
|
481 |
$mec_dates = $this->db->select($query, 'loadObjectList');
|
482 |
|
483 |
// Today and Now
|
605 |
{
|
606 |
// Next Offset
|
607 |
$this->next_offset = ($query->post_count-($query->current_post+1)) >= 0 ? ($query->current_post+1)+$this->offset : 0;
|
608 |
+
|
609 |
+
// Restore original Post Data
|
610 |
+
wp_reset_postdata();
|
611 |
+
|
612 |
break 2;
|
613 |
}
|
614 |
}
|
app/modules/booking/default.php
CHANGED
@@ -252,8 +252,7 @@ function mec_book_form_submit'.$uniqueid.'()
|
|
252 |
// Add loading Class to the button
|
253 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").addClass("loading");
|
254 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
255 |
-
|
256 |
-
|
257 |
var fileToUpload = false;
|
258 |
|
259 |
var data = jQuery("#mec_book_form'.$uniqueid.'").serialize();
|
252 |
// Add loading Class to the button
|
253 |
jQuery("#mec_book_form'.$uniqueid.' button[type=submit]").addClass("loading");
|
254 |
jQuery("#mec_booking_message'.$uniqueid.'").removeClass("mec-success mec-error").hide();
|
255 |
+
|
|
|
256 |
var fileToUpload = false;
|
257 |
|
258 |
var data = jQuery("#mec_book_form'.$uniqueid.'").serialize();
|
app/modules/booking/steps/form.php
CHANGED
@@ -32,7 +32,7 @@ if ( ! $mec_name ) {
|
|
32 |
$reg_fields[] = [
|
33 |
'mandatory' => '0',
|
34 |
'type' => 'name',
|
35 |
-
'label' => esc_html__( 'Name', 'modern-events-calendar-lite'),
|
36 |
];
|
37 |
}
|
38 |
|
@@ -40,7 +40,7 @@ if ( ! $mec_email ) {
|
|
40 |
$reg_fields[] = [
|
41 |
'mandatory' => '0',
|
42 |
'type' => 'mec_email',
|
43 |
-
'label' => esc_html__( 'Email', 'modern-events-calendar-lite'),
|
44 |
];
|
45 |
}
|
46 |
?>
|
32 |
$reg_fields[] = [
|
33 |
'mandatory' => '0',
|
34 |
'type' => 'name',
|
35 |
+
'label' => esc_html__( 'Name', 'modern-events-calendar-lite' ),
|
36 |
];
|
37 |
}
|
38 |
|
40 |
$reg_fields[] = [
|
41 |
'mandatory' => '0',
|
42 |
'type' => 'mec_email',
|
43 |
+
'label' => esc_html__( 'Email', 'modern-events-calendar-lite' ),
|
44 |
];
|
45 |
}
|
46 |
?>
|
app/modules/weather/details.php
CHANGED
@@ -45,7 +45,7 @@ if(!is_array($weather) or (is_array($weather) and !count($weather))) return;
|
|
45 |
<div class="mec-weather-summary">
|
46 |
<div class="mec-weather-summary-report"><?php echo $weather['summary']; ?></div>
|
47 |
<?php if(isset($weather['temperature'])): ?>
|
48 |
-
<div class="mec-weather-summary-temp"><?php echo round( $weather['temperature']);?> <var><?php _e( ' °C', 'modern-events-calendar-lite'); ?></var></div>
|
49 |
<?php endif; ?>
|
50 |
</div>
|
51 |
<div class="mec-weather-extras">
|
45 |
<div class="mec-weather-summary">
|
46 |
<div class="mec-weather-summary-report"><?php echo $weather['summary']; ?></div>
|
47 |
<?php if(isset($weather['temperature'])): ?>
|
48 |
+
<div class="mec-weather-summary-temp"><?php echo round( $weather['temperature']);?> <var><?php _e( ' °C', 'modern-events-calendar-lite' ); ?></var></div>
|
49 |
<?php endif; ?>
|
50 |
</div>
|
51 |
<div class="mec-weather-extras">
|
app/skins/agenda/render.php
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
$current_month_divider = $this->request->getVar('current_month_divider', 0);
|
|
|
6 |
?>
|
7 |
<?php foreach($this->events as $date=>$events): ?>
|
8 |
|
@@ -33,11 +34,11 @@ $current_month_divider = $this->request->getVar('current_month_divider', 0);
|
|
33 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
34 |
if ( $label['style'] == 'mec-label-featured' )
|
35 |
{
|
36 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
37 |
}
|
38 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
39 |
{
|
40 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
41 |
}
|
42 |
}
|
43 |
endif;
|
@@ -69,6 +70,11 @@ $current_month_divider = $this->request->getVar('current_month_divider', 0);
|
|
69 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
70 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
71 |
},
|
|
|
|
|
|
|
|
|
|
|
72 |
"performer": <?php echo $speakers; ?>,
|
73 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
74 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
$current_month_divider = $this->request->getVar('current_month_divider', 0);
|
6 |
+
$settings = $this->main->get_settings();
|
7 |
?>
|
8 |
<?php foreach($this->events as $date=>$events): ?>
|
9 |
|
34 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
35 |
if ( $label['style'] == 'mec-label-featured' )
|
36 |
{
|
37 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
38 |
}
|
39 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
40 |
{
|
41 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
42 |
}
|
43 |
}
|
44 |
endif;
|
70 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
71 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
72 |
},
|
73 |
+
"offers": {
|
74 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
75 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
76 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
77 |
+
},
|
78 |
"performer": <?php echo $speakers; ?>,
|
79 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
80 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/available_spot/tpl.php
CHANGED
@@ -4,7 +4,7 @@ defined('MECEXEC') or die();
|
|
4 |
|
5 |
$styling = $this->main->get_styling();
|
6 |
$event = $this->events[0];
|
7 |
-
|
8 |
// Event is not valid!
|
9 |
if(!isset($event->data)) return;
|
10 |
|
@@ -28,11 +28,11 @@ foreach( $event->data->labels as $label)
|
|
28 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
29 |
if ( $label['style'] == 'mec-label-featured' )
|
30 |
{
|
31 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
32 |
}
|
33 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
34 |
{
|
35 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
36 |
}
|
37 |
}
|
38 |
endif;
|
@@ -114,6 +114,11 @@ if ( !empty($event->data->speakers))
|
|
114 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
115 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
116 |
},
|
|
|
|
|
|
|
|
|
|
|
117 |
"performer": <?php echo $speakers; ?>,
|
118 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
119 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
4 |
|
5 |
$styling = $this->main->get_styling();
|
6 |
$event = $this->events[0];
|
7 |
+
$settings = $this->main->get_settings();
|
8 |
// Event is not valid!
|
9 |
if(!isset($event->data)) return;
|
10 |
|
28 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
29 |
if ( $label['style'] == 'mec-label-featured' )
|
30 |
{
|
31 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
32 |
}
|
33 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
34 |
{
|
35 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
36 |
}
|
37 |
}
|
38 |
endif;
|
114 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
115 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
116 |
},
|
117 |
+
"offers": {
|
118 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
119 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
120 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
121 |
+
},
|
122 |
"performer": <?php echo $speakers; ?>,
|
123 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
124 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/carousel/render.php
CHANGED
@@ -55,11 +55,11 @@ $settings = $this->main->get_settings();
|
|
55 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
56 |
if ( $label['style'] == 'mec-label-featured' )
|
57 |
{
|
58 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
59 |
}
|
60 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
61 |
{
|
62 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
63 |
}
|
64 |
}
|
65 |
endif;
|
@@ -92,6 +92,11 @@ $settings = $this->main->get_settings();
|
|
92 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
93 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
94 |
},
|
|
|
|
|
|
|
|
|
|
|
95 |
"performer": <?php echo $speakers; ?>,
|
96 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
97 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
55 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
56 |
if ( $label['style'] == 'mec-label-featured' )
|
57 |
{
|
58 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
59 |
}
|
60 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
61 |
{
|
62 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
63 |
}
|
64 |
}
|
65 |
endif;
|
92 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
93 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
94 |
},
|
95 |
+
"offers": {
|
96 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
97 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
98 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
99 |
+
},
|
100 |
"performer": <?php echo $speakers; ?>,
|
101 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
102 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/countdown/tpl.php
CHANGED
@@ -4,7 +4,7 @@ defined('MECEXEC') or die();
|
|
4 |
|
5 |
$styling = $this->main->get_styling();
|
6 |
$event = $this->events[0];
|
7 |
-
|
8 |
// Event is not valid!
|
9 |
if(!isset($event->data)) return;
|
10 |
|
@@ -21,11 +21,11 @@ foreach( $event->data->labels as $label)
|
|
21 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
22 |
if ( $label['style'] == 'mec-label-featured' )
|
23 |
{
|
24 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
25 |
}
|
26 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
27 |
{
|
28 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
29 |
}
|
30 |
}
|
31 |
endif;
|
@@ -99,6 +99,11 @@ $this->factory->params('footer', $javascript);
|
|
99 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
100 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
101 |
},
|
|
|
|
|
|
|
|
|
|
|
102 |
"performer": <?php echo $speakers; ?>,
|
103 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
104 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
4 |
|
5 |
$styling = $this->main->get_styling();
|
6 |
$event = $this->events[0];
|
7 |
+
$settings = $this->main->get_settings();
|
8 |
// Event is not valid!
|
9 |
if(!isset($event->data)) return;
|
10 |
|
21 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
22 |
if ( $label['style'] == 'mec-label-featured' )
|
23 |
{
|
24 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
25 |
}
|
26 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
27 |
{
|
28 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
29 |
}
|
30 |
}
|
31 |
endif;
|
99 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
100 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
101 |
},
|
102 |
+
"offers": {
|
103 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
104 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
105 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
106 |
+
},
|
107 |
"performer": <?php echo $speakers; ?>,
|
108 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
109 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/cover/tpl.php
CHANGED
@@ -4,7 +4,7 @@ defined('MECEXEC') or die();
|
|
4 |
|
5 |
$styling = $this->main->get_styling();
|
6 |
$event = $this->events[0];
|
7 |
-
|
8 |
// Event is not valid!
|
9 |
if(!isset($event->data)) return;
|
10 |
|
@@ -24,11 +24,11 @@ foreach( $event->data->labels as $label)
|
|
24 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
25 |
if ( $label['style'] == 'mec-label-featured' )
|
26 |
{
|
27 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
28 |
}
|
29 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
30 |
{
|
31 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
32 |
}
|
33 |
}
|
34 |
endif;
|
@@ -61,6 +61,11 @@ if ( !empty($event->data->speakers))
|
|
61 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
62 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
63 |
},
|
|
|
|
|
|
|
|
|
|
|
64 |
"performer": <?php echo $speakers; ?>,
|
65 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
66 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
4 |
|
5 |
$styling = $this->main->get_styling();
|
6 |
$event = $this->events[0];
|
7 |
+
$settings = $this->main->get_settings();
|
8 |
// Event is not valid!
|
9 |
if(!isset($event->data)) return;
|
10 |
|
24 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
25 |
if ( $label['style'] == 'mec-label-featured' )
|
26 |
{
|
27 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
28 |
}
|
29 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
30 |
{
|
31 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
32 |
}
|
33 |
}
|
34 |
endif;
|
61 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
62 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
63 |
},
|
64 |
+
"offers": {
|
65 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
66 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
67 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
68 |
+
},
|
69 |
"performer": <?php echo $speakers; ?>,
|
70 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
71 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/daily_view/render.php
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
|
|
4 |
?>
|
5 |
<ul class="mec-daily-view-dates-events">
|
6 |
<?php foreach($this->events as $date=>$events): ?>
|
@@ -19,11 +20,11 @@ defined('MECEXEC') or die();
|
|
19 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
20 |
if ( $label['style'] == 'mec-label-featured' )
|
21 |
{
|
22 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
23 |
}
|
24 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
25 |
{
|
26 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
27 |
}
|
28 |
}
|
29 |
endif;
|
@@ -55,6 +56,11 @@ defined('MECEXEC') or die();
|
|
55 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
56 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
57 |
},
|
|
|
|
|
|
|
|
|
|
|
58 |
"performer": <?php echo $speakers; ?>,
|
59 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
60 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
1 |
<?php
|
2 |
/** no direct access **/
|
3 |
defined('MECEXEC') or die();
|
4 |
+
$settings = $this->main->get_settings();
|
5 |
?>
|
6 |
<ul class="mec-daily-view-dates-events">
|
7 |
<?php foreach($this->events as $date=>$events): ?>
|
20 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
21 |
if ( $label['style'] == 'mec-label-featured' )
|
22 |
{
|
23 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
24 |
}
|
25 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
26 |
{
|
27 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
28 |
}
|
29 |
}
|
30 |
endif;
|
56 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
57 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
58 |
},
|
59 |
+
"offers": {
|
60 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
61 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
62 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
63 |
+
},
|
64 |
"performer": <?php echo $speakers; ?>,
|
65 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
66 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/grid/render.php
CHANGED
@@ -46,11 +46,11 @@ if($this->style == 'colorful')
|
|
46 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
47 |
if ( $label['style'] == 'mec-label-featured' )
|
48 |
{
|
49 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
50 |
}
|
51 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
52 |
{
|
53 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
54 |
}
|
55 |
}
|
56 |
endif;
|
@@ -82,6 +82,11 @@ if($this->style == 'colorful')
|
|
82 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
83 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
84 |
},
|
|
|
|
|
|
|
|
|
|
|
85 |
"performer": <?php echo $speakers; ?>,
|
86 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
87 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
46 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
47 |
if ( $label['style'] == 'mec-label-featured' )
|
48 |
{
|
49 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
50 |
}
|
51 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
52 |
{
|
53 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
54 |
}
|
55 |
}
|
56 |
endif;
|
82 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
83 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
84 |
},
|
85 |
+
"offers": {
|
86 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
87 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
88 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
89 |
+
},
|
90 |
"performer": <?php echo $speakers; ?>,
|
91 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
92 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/list.php
CHANGED
@@ -138,7 +138,7 @@ class MEC_skin_list extends MEC_skins
|
|
138 |
$this->args['meta_query'] = $this->meta_query();
|
139 |
|
140 |
// Tag
|
141 |
-
|
142 |
|
143 |
// Author
|
144 |
$this->args['author'] = $this->author_query();
|
@@ -146,7 +146,7 @@ class MEC_skin_list extends MEC_skins
|
|
146 |
// Pagination Options
|
147 |
$this->paged = get_query_var('paged', 1);
|
148 |
$this->limit = (isset($this->skin_options['limit']) and trim($this->skin_options['limit'])) ? $this->skin_options['limit'] : 12;
|
149 |
-
|
150 |
$this->args['posts_per_page'] = $this->limit;
|
151 |
$this->args['paged'] = $this->paged;
|
152 |
|
138 |
$this->args['meta_query'] = $this->meta_query();
|
139 |
|
140 |
// Tag
|
141 |
+
$this->args['tag'] = $this->tag_query();
|
142 |
|
143 |
// Author
|
144 |
$this->args['author'] = $this->author_query();
|
146 |
// Pagination Options
|
147 |
$this->paged = get_query_var('paged', 1);
|
148 |
$this->limit = (isset($this->skin_options['limit']) and trim($this->skin_options['limit'])) ? $this->skin_options['limit'] : 12;
|
149 |
+
|
150 |
$this->args['posts_per_page'] = $this->limit;
|
151 |
$this->args['paged'] = $this->paged;
|
152 |
|
app/skins/list/render.php
CHANGED
@@ -72,6 +72,11 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
|
|
72 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
73 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
74 |
},
|
|
|
|
|
|
|
|
|
|
|
75 |
"performer": <?php echo $speakers; ?>,
|
76 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
77 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
72 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
73 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
74 |
},
|
75 |
+
"offers": {
|
76 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
77 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
78 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
79 |
+
},
|
80 |
"performer": <?php echo $speakers; ?>,
|
81 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
82 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/masonry/render.php
CHANGED
@@ -25,11 +25,11 @@ $settings = $this->main->get_settings();
|
|
25 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
26 |
if ( $label['style'] == 'mec-label-featured' )
|
27 |
{
|
28 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
29 |
}
|
30 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
31 |
{
|
32 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
33 |
}
|
34 |
}
|
35 |
endif;
|
@@ -61,6 +61,11 @@ $settings = $this->main->get_settings();
|
|
61 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
62 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
63 |
},
|
|
|
|
|
|
|
|
|
|
|
64 |
"performer": <?php echo $speakers; ?>,
|
65 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
66 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
25 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
26 |
if ( $label['style'] == 'mec-label-featured' )
|
27 |
{
|
28 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
29 |
}
|
30 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
31 |
{
|
32 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
33 |
}
|
34 |
}
|
35 |
endif;
|
61 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
62 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
63 |
},
|
64 |
+
"offers": {
|
65 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
66 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
67 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
68 |
+
},
|
69 |
"performer": <?php echo $speakers; ?>,
|
70 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
71 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/monthly_view/calendar.php
CHANGED
@@ -77,11 +77,11 @@ elseif($week_start == 5) // Friday
|
|
77 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
78 |
if ( $label['style'] == 'mec-label-featured' )
|
79 |
{
|
80 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
81 |
}
|
82 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
83 |
{
|
84 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
85 |
}
|
86 |
}
|
87 |
endif;
|
@@ -105,6 +105,8 @@ elseif($week_start == 5) // Friday
|
|
105 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
106 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
107 |
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
|
|
|
|
108 |
$events_str .= '
|
109 |
<script type="application/ld+json">
|
110 |
{
|
@@ -119,6 +121,11 @@ elseif($week_start == 5) // Friday
|
|
119 |
"image" : "' . $location_image . '",
|
120 |
"address" : "' . $location_address . '"
|
121 |
},
|
|
|
|
|
|
|
|
|
|
|
122 |
"performer": '. $speakers . ',
|
123 |
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
124 |
"image" : "'. $image . '",
|
77 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
78 |
if ( $label['style'] == 'mec-label-featured' )
|
79 |
{
|
80 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
81 |
}
|
82 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
83 |
{
|
84 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
85 |
}
|
86 |
}
|
87 |
endif;
|
105 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
106 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
107 |
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
108 |
+
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
109 |
+
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
110 |
$events_str .= '
|
111 |
<script type="application/ld+json">
|
112 |
{
|
121 |
"image" : "' . $location_image . '",
|
122 |
"address" : "' . $location_address . '"
|
123 |
},
|
124 |
+
"offers": {
|
125 |
+
"url": "'. $event->data->permalink .'",
|
126 |
+
"price": "' . $price_schema.'",
|
127 |
+
"priceCurrency" : "' . $currency_schema .'"
|
128 |
+
},
|
129 |
"performer": '. $speakers . ',
|
130 |
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
131 |
"image" : "'. $image . '",
|
app/skins/monthly_view/calendar_clean.php
CHANGED
@@ -78,11 +78,11 @@ elseif($week_start == 5) // Friday
|
|
78 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
79 |
if ( $label['style'] == 'mec-label-featured' )
|
80 |
{
|
81 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
82 |
}
|
83 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
84 |
{
|
85 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
86 |
}
|
87 |
}
|
88 |
endif;
|
@@ -106,6 +106,8 @@ elseif($week_start == 5) // Friday
|
|
106 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
107 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
108 |
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
|
|
|
|
109 |
$events_str .= '
|
110 |
<script type="application/ld+json">
|
111 |
{
|
@@ -120,6 +122,11 @@ elseif($week_start == 5) // Friday
|
|
120 |
"image" : "' . $location_image . '",
|
121 |
"address" : "' . $location_address . '"
|
122 |
},
|
|
|
|
|
|
|
|
|
|
|
123 |
"performer": '. $speakers . ',
|
124 |
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
125 |
"image" : "'. $image . '",
|
78 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
79 |
if ( $label['style'] == 'mec-label-featured' )
|
80 |
{
|
81 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
82 |
}
|
83 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
84 |
{
|
85 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
86 |
}
|
87 |
}
|
88 |
endif;
|
106 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
107 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
108 |
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
109 |
+
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
110 |
+
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
111 |
$events_str .= '
|
112 |
<script type="application/ld+json">
|
113 |
{
|
122 |
"image" : "' . $location_image . '",
|
123 |
"address" : "' . $location_address . '"
|
124 |
},
|
125 |
+
"offers": {
|
126 |
+
"url": "'. $event->data->permalink .'",
|
127 |
+
"price": "' . $price_schema.'",
|
128 |
+
"priceCurrency" : "' . $currency_schema .'"
|
129 |
+
},
|
130 |
"performer": '. $speakers . ',
|
131 |
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
132 |
"image" : "'. $image . '",
|
app/skins/monthly_view/calendar_novel.php
CHANGED
@@ -99,6 +99,8 @@ elseif($week_start == 5) // Friday
|
|
99 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
100 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
101 |
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
|
|
|
|
102 |
echo '
|
103 |
<script type="application/ld+json">
|
104 |
{
|
@@ -113,6 +115,11 @@ elseif($week_start == 5) // Friday
|
|
113 |
"image" : "' . $location_image . '",
|
114 |
"address" : "' . $location_address . '"
|
115 |
},
|
|
|
|
|
|
|
|
|
|
|
116 |
"performer": '. $speakers . ',
|
117 |
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
118 |
"image" : "'. $image . '",
|
99 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
100 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
101 |
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
102 |
+
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
103 |
+
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
104 |
echo '
|
105 |
<script type="application/ld+json">
|
106 |
{
|
115 |
"image" : "' . $location_image . '",
|
116 |
"address" : "' . $location_address . '"
|
117 |
},
|
118 |
+
"offers": {
|
119 |
+
"url": "'. $event->data->permalink .'",
|
120 |
+
"price": "' . $price_schema.'",
|
121 |
+
"priceCurrency" : "' . $currency_schema .'"
|
122 |
+
},
|
123 |
"performer": '. $speakers . ',
|
124 |
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
125 |
"image" : "'. $image . '",
|
app/skins/monthly_view/calendar_simple.php
CHANGED
@@ -98,6 +98,8 @@ elseif($week_start == 5) // Friday
|
|
98 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
99 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
100 |
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
|
|
|
|
101 |
echo '
|
102 |
<script type="application/ld+json">
|
103 |
{
|
@@ -112,6 +114,11 @@ elseif($week_start == 5) // Friday
|
|
112 |
"image" : "' . $location_image . '",
|
113 |
"address" : "' . $location_address . '"
|
114 |
},
|
|
|
|
|
|
|
|
|
|
|
115 |
"performer": '. $speakers . ',
|
116 |
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
117 |
"image" : "'. $image . '",
|
98 |
$location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
|
99 |
$location_address = isset($location['address']) ? $location['address'] : '' ;
|
100 |
$image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
|
101 |
+
$price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
|
102 |
+
$currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
|
103 |
echo '
|
104 |
<script type="application/ld+json">
|
105 |
{
|
114 |
"image" : "' . $location_image . '",
|
115 |
"address" : "' . $location_address . '"
|
116 |
},
|
117 |
+
"offers": {
|
118 |
+
"url": "'. $event->data->permalink .'",
|
119 |
+
"price": "' . $price_schema.'",
|
120 |
+
"priceCurrency" : "' . $currency_schema .'"
|
121 |
+
},
|
122 |
"performer": '. $speakers . ',
|
123 |
"description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
|
124 |
"image" : "'. $image . '",
|
app/skins/single/default.php
CHANGED
@@ -495,6 +495,11 @@ if(!empty($event->data->speakers))
|
|
495 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ); ?>",
|
496 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
497 |
},
|
|
|
|
|
|
|
|
|
|
|
498 |
"performer": <?php echo $speakers; ?>,
|
499 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', get_the_content())); ?>",
|
500 |
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
495 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ); ?>",
|
496 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
497 |
},
|
498 |
+
"offers": {
|
499 |
+
"url": "<?php echo get_the_permalink(); ?>",
|
500 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
501 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
502 |
+
},
|
503 |
"performer": <?php echo $speakers; ?>,
|
504 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', get_the_content())); ?>",
|
505 |
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
app/skins/single/modern.php
CHANGED
@@ -283,6 +283,11 @@ if ( !empty($event->data->speakers))
|
|
283 |
"image" : "<?php echo esc_url($location['thumbnail'] ); ?>",
|
284 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
285 |
},
|
|
|
|
|
|
|
|
|
|
|
286 |
"performer": <?php echo $speakers; ?>,
|
287 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', get_the_content())); ?>",
|
288 |
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
283 |
"image" : "<?php echo esc_url($location['thumbnail'] ); ?>",
|
284 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
285 |
},
|
286 |
+
"offers": {
|
287 |
+
"url": "<?php echo get_the_permalink(); ?>",
|
288 |
+
"price": "<?php echo $event->data->meta['mec_cost'] ?>",
|
289 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
290 |
+
},
|
291 |
"performer": <?php echo $speakers; ?>,
|
292 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', get_the_content())); ?>",
|
293 |
"image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
|
app/skins/slider/render.php
CHANGED
@@ -4,6 +4,7 @@ defined('MECEXEC') or die();
|
|
4 |
|
5 |
$styling = $this->main->get_styling();
|
6 |
$event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])) ? 'colorskin-custom' : '';
|
|
|
7 |
?>
|
8 |
<div class="mec-wrap <?php echo $event_colorskin; ?>">
|
9 |
<div class="mec-slider-<?php echo $this->style; ?>-wrap" >
|
@@ -45,11 +46,11 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
|
|
45 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
46 |
if ( $label['style'] == 'mec-label-featured' )
|
47 |
{
|
48 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
49 |
}
|
50 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
51 |
{
|
52 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
53 |
}
|
54 |
}
|
55 |
endif;
|
@@ -83,6 +84,11 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
|
|
83 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
84 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
85 |
},
|
|
|
|
|
|
|
|
|
|
|
86 |
"performer": <?php echo $speakers; ?>,
|
87 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
88 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
@@ -124,6 +130,11 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
|
|
124 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
125 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
126 |
},
|
|
|
|
|
|
|
|
|
|
|
127 |
"performer": <?php echo $speakers; ?>,
|
128 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
129 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
@@ -164,6 +175,11 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
|
|
164 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
165 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
166 |
},
|
|
|
|
|
|
|
|
|
|
|
167 |
"performer": <?php echo $speakers; ?>,
|
168 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
169 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
@@ -204,6 +220,11 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
|
|
204 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
205 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
206 |
},
|
|
|
|
|
|
|
|
|
|
|
207 |
"performer": <?php echo $speakers; ?>,
|
208 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
209 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
@@ -244,6 +265,11 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
|
|
244 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
245 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
246 |
},
|
|
|
|
|
|
|
|
|
|
|
247 |
"performer": <?php echo $speakers; ?>,
|
248 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
249 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
4 |
|
5 |
$styling = $this->main->get_styling();
|
6 |
$event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])) ? 'colorskin-custom' : '';
|
7 |
+
$settings = $this->main->get_settings();
|
8 |
?>
|
9 |
<div class="mec-wrap <?php echo $event_colorskin; ?>">
|
10 |
<div class="mec-slider-<?php echo $this->style; ?>-wrap" >
|
46 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
47 |
if ( $label['style'] == 'mec-label-featured' )
|
48 |
{
|
49 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
50 |
}
|
51 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
52 |
{
|
53 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
54 |
}
|
55 |
}
|
56 |
endif;
|
84 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
85 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
86 |
},
|
87 |
+
"offers": {
|
88 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
89 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
90 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
91 |
+
},
|
92 |
"performer": <?php echo $speakers; ?>,
|
93 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
94 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
130 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
131 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
132 |
},
|
133 |
+
"offers": {
|
134 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
135 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
136 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
137 |
+
},
|
138 |
"performer": <?php echo $speakers; ?>,
|
139 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
140 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
175 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
176 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
177 |
},
|
178 |
+
"offers": {
|
179 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
180 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
181 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
182 |
+
},
|
183 |
"performer": <?php echo $speakers; ?>,
|
184 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
185 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
220 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
221 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
222 |
},
|
223 |
+
"offers": {
|
224 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
225 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
226 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
227 |
+
},
|
228 |
"performer": <?php echo $speakers; ?>,
|
229 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
230 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
265 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
266 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
267 |
},
|
268 |
+
"offers": {
|
269 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
270 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
271 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
272 |
+
},
|
273 |
"performer": <?php echo $speakers; ?>,
|
274 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
275 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/timetable/render.php
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
$has_events = array();
|
|
|
6 |
?>
|
7 |
<?php if($this->style == 'modern'): ?>
|
8 |
<div class="mec-timetable-day-events mec-clear mec-weekly-view-dates-events">
|
@@ -29,11 +30,11 @@ $has_events = array();
|
|
29 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
30 |
if ( $label['style'] == 'mec-label-featured' )
|
31 |
{
|
32 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
33 |
}
|
34 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
35 |
{
|
36 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
37 |
}
|
38 |
}
|
39 |
endif;
|
@@ -65,6 +66,11 @@ $has_events = array();
|
|
65 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
66 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
67 |
},
|
|
|
|
|
|
|
|
|
|
|
68 |
"performer": <?php echo $speakers; ?>,
|
69 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
70 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
@@ -126,11 +132,11 @@ $has_events = array();
|
|
126 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
127 |
if ( $label['style'] == 'mec-label-featured' )
|
128 |
{
|
129 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
130 |
}
|
131 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
132 |
{
|
133 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
134 |
}
|
135 |
}
|
136 |
endif;
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
$has_events = array();
|
6 |
+
$settings = $this->main->get_settings();
|
7 |
?>
|
8 |
<?php if($this->style == 'modern'): ?>
|
9 |
<div class="mec-timetable-day-events mec-clear mec-weekly-view-dates-events">
|
30 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
31 |
if ( $label['style'] == 'mec-label-featured' )
|
32 |
{
|
33 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
34 |
}
|
35 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
36 |
{
|
37 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
38 |
}
|
39 |
}
|
40 |
endif;
|
66 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
67 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
68 |
},
|
69 |
+
"offers": {
|
70 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
71 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
72 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
73 |
+
},
|
74 |
"performer": <?php echo $speakers; ?>,
|
75 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
76 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
132 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
133 |
if ( $label['style'] == 'mec-label-featured' )
|
134 |
{
|
135 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
136 |
}
|
137 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
138 |
{
|
139 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
140 |
}
|
141 |
}
|
142 |
endif;
|
app/skins/weekly_view/render.php
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
$has_events = array();
|
|
|
6 |
?>
|
7 |
<ul class="mec-weekly-view-dates-events">
|
8 |
<?php foreach($this->events as $date=>$events): $week = $this->week_of_days[$date]; ?>
|
@@ -27,11 +28,11 @@ $has_events = array();
|
|
27 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
28 |
if ( $label['style'] == 'mec-label-featured' )
|
29 |
{
|
30 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
31 |
}
|
32 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
33 |
{
|
34 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
35 |
}
|
36 |
}
|
37 |
endif;
|
@@ -63,6 +64,11 @@ $has_events = array();
|
|
63 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
64 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
65 |
},
|
|
|
|
|
|
|
|
|
|
|
66 |
"performer": <?php echo $speakers; ?>,
|
67 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
68 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
3 |
defined('MECEXEC') or die();
|
4 |
|
5 |
$has_events = array();
|
6 |
+
$settings = $this->main->get_settings();
|
7 |
?>
|
8 |
<ul class="mec-weekly-view-dates-events">
|
9 |
<?php foreach($this->events as $date=>$events): $week = $this->week_of_days[$date]; ?>
|
28 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
29 |
if ( $label['style'] == 'mec-label-featured' )
|
30 |
{
|
31 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
32 |
}
|
33 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
34 |
{
|
35 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
36 |
}
|
37 |
}
|
38 |
endif;
|
64 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
65 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
66 |
},
|
67 |
+
"offers": {
|
68 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
69 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
70 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
71 |
+
},
|
72 |
"performer": <?php echo $speakers; ?>,
|
73 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
74 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
app/skins/yearly_view/render.php
CHANGED
@@ -9,6 +9,7 @@ for($i = 1; $i <= 12; $i++)
|
|
9 |
{
|
10 |
$months_html .= $this->draw_monthly_calendar($this->year, $i, $this->events, $calendar_type);
|
11 |
}
|
|
|
12 |
?>
|
13 |
<div class="mec-yearly-calendar-sec">
|
14 |
<?php echo $months_html ?>
|
@@ -44,11 +45,11 @@ for($i = 1; $i <= 12; $i++)
|
|
44 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
45 |
if ( $label['style'] == 'mec-label-featured' )
|
46 |
{
|
47 |
-
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
|
48 |
}
|
49 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
50 |
{
|
51 |
-
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
|
52 |
}
|
53 |
}
|
54 |
endif;
|
@@ -80,6 +81,11 @@ for($i = 1; $i <= 12; $i++)
|
|
80 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
81 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
82 |
},
|
|
|
|
|
|
|
|
|
|
|
83 |
"performer": <?php echo $speakers; ?>,
|
84 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
85 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
9 |
{
|
10 |
$months_html .= $this->draw_monthly_calendar($this->year, $i, $this->events, $calendar_type);
|
11 |
}
|
12 |
+
$settings = $this->main->get_settings();
|
13 |
?>
|
14 |
<div class="mec-yearly-calendar-sec">
|
15 |
<?php echo $months_html ?>
|
45 |
if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
|
46 |
if ( $label['style'] == 'mec-label-featured' )
|
47 |
{
|
48 |
+
$label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
|
49 |
}
|
50 |
elseif ( $label['style'] == 'mec-label-canceled' )
|
51 |
{
|
52 |
+
$label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
|
53 |
}
|
54 |
}
|
55 |
endif;
|
81 |
"image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
|
82 |
"address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
|
83 |
},
|
84 |
+
"offers": {
|
85 |
+
"url": "<?php echo $event->data->permalink; ?>",
|
86 |
+
"price": "<?php echo isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ; ?>",
|
87 |
+
"priceCurrency" : "<?php echo isset($settings['currency']) ? $settings['currency'] : ''; ?>"
|
88 |
+
},
|
89 |
"performer": <?php echo $speakers; ?>,
|
90 |
"description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
|
91 |
"image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
|
assets/css/frontend.css
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
|
11 |
/* #CSS Base & Typography
|
12 |
================================================== */
|
13 |
-
.mec-wrap
|
14 |
.mec-wrap h1, .mec-wrap h2, .mec-wrap h3, .mec-wrap h4, .mec-wrap h5, .mec-wrap h6,
|
15 |
.entry-content .mec-wrap h1, .entry-content .mec-wrap h2, .entry-content .mec-wrap h3,.entry-content .mec-wrap h4, .entry-content .mec-wrap h5, .entry-content .mec-wrap h6 { font-family: 'Montserrat', Helvetica, Arial, sans-serif; color: #171c24; font-weight: 300; font-style:inherit; letter-spacing: normal; clear: none;}
|
16 |
.mec-wrap h1 { font-size: 50px; line-height: 1.16; margin-bottom: 12px; letter-spacing: -1px;}
|
@@ -1727,6 +1727,7 @@
|
|
1727 |
/* MEC Single Modal
|
1728 |
-------------------------------- */
|
1729 |
.mec-single-modal.mec-single-modern .mec-single-title { text-align: center; padding: 15px 10px 0; }
|
|
|
1730 |
.mec-single-modal.mec-single-modern .mec-single-event-bar { padding: 5px; }
|
1731 |
.mec-single-modal.mec-single-modern .mec-single-event-bar > div dd {font-size: 13px;}
|
1732 |
.mec-single-modal.mec-single-modern .mec-single-event-bar > div h3 {font-size: 15px;}
|
@@ -2323,7 +2324,7 @@
|
|
2323 |
|
2324 |
/* # Booking Modal
|
2325 |
================================================== */
|
2326 |
-
.lity-content .mec-events-meta-group-booking {
|
2327 |
.lity-content .mec-events-meta-group-booking .mec-booking form > h4 { text-transform: uppercase; font-size: 15px; font-weight: 700; color: #313131; border-bottom: 4px solid #ebebeb; width: 100%; display: block; padding-bottom: 10px; position: relative; text-align: center; }
|
2328 |
.lity-content .mec-events-meta-group-booking .mec-booking form > h4:before { padding: 1px 35px; border-bottom: 4px solid #40d9f1; font-size: 6px; content: ""; text-align: center; position: absolute; bottom: -4px; margin-left: -35px; left: 50%; }
|
2329 |
.lity-content .mec-events-meta-group-booking label, .lity-content .mec-events-meta-group-booking .mec-event-ticket-name, .lity-content .mec-events-meta-group-booking .mec-event-ticket-price, .lity-content .mec-events-meta-group-booking .mec-event-ticket-available, .lity-content .mec-events-meta-group-booking .mec-ticket-variation-name, .lity-content .mec-events-meta-group-booking .mec-ticket-variation-price { color: #424242; font-size: 12px; font-weight: 300; letter-spacing: 0; margin: 3px 0; clear: none; padding: 5px 1em 3px 0; }
|
10 |
|
11 |
/* #CSS Base & Typography
|
12 |
================================================== */
|
13 |
+
.mec-wrap, .mec-wrap div:not([class^="elementor-"]) { font-family: 'Montserrat', Helvetica, Arial, sans-serif;}
|
14 |
.mec-wrap h1, .mec-wrap h2, .mec-wrap h3, .mec-wrap h4, .mec-wrap h5, .mec-wrap h6,
|
15 |
.entry-content .mec-wrap h1, .entry-content .mec-wrap h2, .entry-content .mec-wrap h3,.entry-content .mec-wrap h4, .entry-content .mec-wrap h5, .entry-content .mec-wrap h6 { font-family: 'Montserrat', Helvetica, Arial, sans-serif; color: #171c24; font-weight: 300; font-style:inherit; letter-spacing: normal; clear: none;}
|
16 |
.mec-wrap h1 { font-size: 50px; line-height: 1.16; margin-bottom: 12px; letter-spacing: -1px;}
|
1727 |
/* MEC Single Modal
|
1728 |
-------------------------------- */
|
1729 |
.mec-single-modal.mec-single-modern .mec-single-title { text-align: center; padding: 15px 10px 0; }
|
1730 |
+
.admin-bar .mec-single-modal.mec-single-modern .mec-single-title {padding-top: 40px;}
|
1731 |
.mec-single-modal.mec-single-modern .mec-single-event-bar { padding: 5px; }
|
1732 |
.mec-single-modal.mec-single-modern .mec-single-event-bar > div dd {font-size: 13px;}
|
1733 |
.mec-single-modal.mec-single-modern .mec-single-event-bar > div h3 {font-size: 15px;}
|
2324 |
|
2325 |
/* # Booking Modal
|
2326 |
================================================== */
|
2327 |
+
.lity-content .mec-events-meta-group-booking { width: 100%; padding: 20px 50px; background: #fff; }
|
2328 |
.lity-content .mec-events-meta-group-booking .mec-booking form > h4 { text-transform: uppercase; font-size: 15px; font-weight: 700; color: #313131; border-bottom: 4px solid #ebebeb; width: 100%; display: block; padding-bottom: 10px; position: relative; text-align: center; }
|
2329 |
.lity-content .mec-events-meta-group-booking .mec-booking form > h4:before { padding: 1px 35px; border-bottom: 4px solid #40d9f1; font-size: 6px; content: ""; text-align: center; position: absolute; bottom: -4px; margin-left: -35px; left: 50%; }
|
2330 |
.lity-content .mec-events-meta-group-booking label, .lity-content .mec-events-meta-group-booking .mec-event-ticket-name, .lity-content .mec-events-meta-group-booking .mec-event-ticket-price, .lity-content .mec-events-meta-group-booking .mec-event-ticket-available, .lity-content .mec-events-meta-group-booking .mec-ticket-variation-name, .lity-content .mec-events-meta-group-booking .mec-ticket-variation-price { color: #424242; font-size: 12px; font-weight: 300; letter-spacing: 0; margin: 3px 0; clear: none; padding: 5px 1em 3px 0; }
|
assets/css/frontend.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.mec-wrap,.mec-wrap div{font-family:Montserrat,Helvetica,Arial,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,Helvetica,Arial,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover>li a{color:#fff}.mec-event-sharing-wrap>li{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{vertical-align:top;margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:auto;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:3px}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:14px;color:#888;margin-bottom:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{border-bottom:1px solid #eee;padding:14px 0;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-weight:600;font-size:15px}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-50px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:700px;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5)}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:inline-block}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:10%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:750px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.lity-content .mec-events-meta-group-booking{max-width:520px;width:520px;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}
|
1 |
+
.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,Helvetica,Arial,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,Helvetica,Arial,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover>li a{color:#fff}.mec-event-sharing-wrap>li{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{vertical-align:top;margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:auto;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:3px}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:14px;color:#888;margin-bottom:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{border-bottom:1px solid #eee;padding:14px 0;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-weight:600;font-size:15px}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-50px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:700px;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5)}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:inline-block}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:10%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:750px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}
|
assets/js/frontend.js
CHANGED
@@ -13,15 +13,18 @@ var mecSingleEventDisplayer = {
|
|
13 |
success: function(response)
|
14 |
{
|
15 |
jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
|
16 |
-
lity(
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
20 |
jQuery(this).closest('a').attr('data-lity', '');
|
21 |
});
|
22 |
}
|
23 |
}
|
24 |
-
|
25 |
},
|
26 |
error: function()
|
27 |
{
|
13 |
success: function(response)
|
14 |
{
|
15 |
jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
|
16 |
+
lity(response);
|
17 |
+
|
18 |
+
if(image_popup != 0)
|
19 |
+
{
|
20 |
+
if(jQuery('.lity-content .mec-events-content a img').length > 0)
|
21 |
+
{
|
22 |
+
jQuery('.lity-content .mec-events-content a img').each(function()
|
23 |
+
{
|
24 |
jQuery(this).closest('a').attr('data-lity', '');
|
25 |
});
|
26 |
}
|
27 |
}
|
|
|
28 |
},
|
29 |
error: function()
|
30 |
{
|
changelog.txt
CHANGED
@@ -1,4 +1,18 @@
|
|
1 |
-
v 4.2.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
- Compatibility: WordPress 5.2
|
3 |
- Added: Additional Location feature
|
4 |
- Added: MEC_Name and MEC_Email field to edit booking form
|
@@ -10,7 +24,7 @@
|
|
10 |
- Added: Norwegian (Bokmål) language
|
11 |
- Fixed: Some issues in RSS feed of events regarding showing content and excerpt
|
12 |
- Fixed: Attached image in frontend submission form
|
13 |
-
- Fixed: Exporting custom day events to Google Calendar in manual export and automated
|
14 |
|
15 |
v 4.1.0 – 22 April 2019
|
16 |
- Added: Tag and Speaker filter to shortcodes
|
1 |
+
v 4.2.1 – 7 May 2019
|
2 |
+
- Added: "attachment_url" to MEC RSS
|
3 |
+
- Added: Offers (event price) to schema structure
|
4 |
+
- Fixed: Displaying comment form on MEC pages when comment is disabled
|
5 |
+
- Fixed: Displaying wrong content and title on the event detail pages
|
6 |
+
- Fixed: Next event module
|
7 |
+
- Fixed: Booking form in the modal window
|
8 |
+
- Fixed: Google Maps module in the modal window
|
9 |
+
- Fixed: Displaying Total attendees, name , email in notifications
|
10 |
+
- Fixed: CSV export "unknown" field
|
11 |
+
- Fixed: Displaying extra fields in booking system
|
12 |
+
- Fixed: Email in woocommerce paymant
|
13 |
+
- Fixed: Some minor issues
|
14 |
+
|
15 |
+
v 4.2.0 – 30 April 2019
|
16 |
- Compatibility: WordPress 5.2
|
17 |
- Added: Additional Location feature
|
18 |
- Added: MEC_Name and MEC_Email field to edit booking form
|
24 |
- Added: Norwegian (Bokmål) language
|
25 |
- Fixed: Some issues in RSS feed of events regarding showing content and excerpt
|
26 |
- Fixed: Attached image in frontend submission form
|
27 |
+
- Fixed: Exporting custom day events to Google Calendar in manual export and automated synchronization
|
28 |
|
29 |
v 4.1.0 – 22 April 2019
|
30 |
- Added: Tag and Speaker filter to shortcodes
|
languages/modern-events-calendar-lite-de_DE.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2019-
|
6 |
-
"PO-Revision-Date: 2019-
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
@@ -27,8 +27,8 @@ msgstr "Moderner Event Kalender "
|
|
27 |
msgid "Content"
|
28 |
msgstr "Inhalt"
|
29 |
|
30 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
31 |
-
#: app/features/mec.php:
|
32 |
msgid "Shortcode"
|
33 |
msgstr "Shortcode"
|
34 |
|
@@ -59,7 +59,7 @@ msgstr "Alles Auswählen"
|
|
59 |
msgid "Event Color"
|
60 |
msgstr "Farbe der Veranstaltung"
|
61 |
|
62 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
63 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
64 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
65 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -288,7 +288,7 @@ msgstr "Veranstaltungen"
|
|
288 |
msgid "Event"
|
289 |
msgstr "Veranstaltung"
|
290 |
|
291 |
-
#: app/features/events.php:134 app/features/mec.php:
|
292 |
msgid "Add Event"
|
293 |
msgstr "Veranstaltung hinzufügen"
|
294 |
|
@@ -328,16 +328,16 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
|
|
328 |
#: app/features/mec/meta_boxes/search_form.php:362
|
329 |
#: app/features/mec/meta_boxes/search_form.php:416
|
330 |
#: app/features/mec/meta_boxes/search_form.php:477
|
331 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
332 |
-
#: app/libraries/skins.php:
|
333 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
334 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
335 |
msgid "Category"
|
336 |
msgstr "Kategorie"
|
337 |
|
338 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
339 |
-
#: app/features/mec.php:
|
340 |
-
#: app/libraries/main.php:
|
341 |
msgid "Categories"
|
342 |
msgstr "Kategorien"
|
343 |
|
@@ -412,14 +412,14 @@ msgstr "Veranstaltungsdetails"
|
|
412 |
#: app/features/events.php:296 app/features/events.php:2053
|
413 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
414 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
415 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
416 |
#: app/widgets/single.php:103
|
417 |
msgid "Event Cost"
|
418 |
msgstr ""
|
419 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
420 |
|
421 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
422 |
-
#: app/libraries/main.php:
|
423 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
424 |
#: app/skins/single/modern.php:184
|
425 |
msgid "Cost"
|
@@ -436,7 +436,7 @@ msgstr "Gäste Daten"
|
|
436 |
#: app/features/events.php:380 app/features/events.php:1237
|
437 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
438 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
439 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
440 |
#: app/modules/booking/steps/form.php:35
|
441 |
msgid "Name"
|
442 |
msgstr "Name"
|
@@ -448,7 +448,7 @@ msgstr "Name"
|
|
448 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
449 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
450 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
451 |
-
#: app/libraries/notifications.php:
|
452 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
453 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
454 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -777,9 +777,9 @@ msgstr "Beschreibung"
|
|
777 |
|
778 |
#: app/features/events.php:683 app/features/events.php:703
|
779 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
780 |
-
#: app/features/mec.php:
|
781 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
782 |
-
#: app/libraries/main.php:
|
783 |
msgid "Speakers"
|
784 |
msgstr ""
|
785 |
|
@@ -795,7 +795,7 @@ msgid "Event Links"
|
|
795 |
msgstr "Veranstaltungslinks"
|
796 |
|
797 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
798 |
-
#: app/libraries/main.php:
|
799 |
msgid "Event Link"
|
800 |
msgstr "Veranstaltungslink"
|
801 |
|
@@ -814,7 +814,7 @@ msgstr ""
|
|
814 |
"einschließlich http(s)://"
|
815 |
|
816 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
817 |
-
#: app/libraries/main.php:
|
818 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
819 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
820 |
#: app/widgets/single.php:107
|
@@ -851,7 +851,7 @@ msgstr "Gesamt Verfügbare Plätze"
|
|
851 |
#: app/features/events.php:818 app/features/events.php:910
|
852 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
853 |
#: app/modules/booking/steps/tickets.php:40
|
854 |
-
#: app/skins/available_spot/tpl.php:
|
855 |
msgid "Unlimited"
|
856 |
msgstr "Unlimitiert"
|
857 |
|
@@ -860,7 +860,7 @@ msgid "100"
|
|
860 |
msgstr "z.B. 100"
|
861 |
|
862 |
#: app/features/events.php:838 app/libraries/book.php:60
|
863 |
-
#: app/libraries/main.php:
|
864 |
msgid "Tickets"
|
865 |
msgstr "Tickets"
|
866 |
|
@@ -928,7 +928,7 @@ msgstr "Preisschild"
|
|
928 |
#: app/features/mec/meta_boxes/search_form.php:397
|
929 |
#: app/features/mec/meta_boxes/search_form.php:451
|
930 |
#: app/features/mec/meta_boxes/search_form.php:512
|
931 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
932 |
msgid "Label"
|
933 |
msgstr "Label"
|
934 |
|
@@ -1155,7 +1155,7 @@ msgstr "Veranstalter"
|
|
1155 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1156 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1157 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1158 |
-
#: app/libraries/main.php:
|
1159 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1160 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1161 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1176,7 +1176,7 @@ msgstr "Ort"
|
|
1176 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1177 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1178 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1179 |
-
#: app/libraries/main.php:
|
1180 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1181 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1182 |
#: app/skins/single/modern.php:21
|
@@ -1321,14 +1321,14 @@ msgid "Remove Image"
|
|
1321 |
msgstr "Bild entfernen"
|
1322 |
|
1323 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1324 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1325 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1326 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1327 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1328 |
msgid "Labels"
|
1329 |
msgstr "Labels"
|
1330 |
|
1331 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1332 |
#: app/features/mec/meta_boxes/filter.php:138
|
1333 |
msgid "Tags"
|
1334 |
msgstr "Schlagworte"
|
@@ -2057,31 +2057,31 @@ msgid "Normal"
|
|
2057 |
msgstr ""
|
2058 |
|
2059 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2060 |
-
#: app/skins/agenda/render.php:
|
2061 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2062 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
2063 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2064 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2065 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2066 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2067 |
-
#: app/skins/timetable/render.php:
|
2068 |
-
#: app/skins/weekly_view/render.php:
|
2069 |
#, fuzzy
|
2070 |
#| msgid "Featured Image"
|
2071 |
msgid "Featured"
|
2072 |
msgstr "Ausgewähltes Bild"
|
2073 |
|
2074 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2075 |
-
#: app/libraries/main.php:
|
2076 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2077 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2078 |
-
#: app/skins/daily_view/render.php:
|
2079 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2080 |
#: app/skins/monthly_view/calendar.php:84
|
2081 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2082 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2083 |
-
#: app/skins/timetable/render.php:
|
2084 |
-
#: app/skins/weekly_view/render.php:
|
2085 |
msgid "Canceled"
|
2086 |
msgstr "Abgesagt"
|
2087 |
|
@@ -2105,9 +2105,9 @@ msgstr "Slug"
|
|
2105 |
msgid "Event %s"
|
2106 |
msgstr "Event %s"
|
2107 |
|
2108 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2109 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2110 |
-
#: app/libraries/main.php:
|
2111 |
msgid "Locations"
|
2112 |
msgstr "Orte"
|
2113 |
|
@@ -2214,7 +2214,7 @@ msgstr "Bild wählen"
|
|
2214 |
msgid "Don't show map in single event page"
|
2215 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2216 |
|
2217 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2218 |
#, fuzzy
|
2219 |
#| msgid "Locations"
|
2220 |
msgid "Other Locations"
|
@@ -2230,41 +2230,41 @@ msgstr ""
|
|
2230 |
"Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
|
2231 |
"auswählen, wenn Sie möchten."
|
2232 |
|
2233 |
-
#: app/features/mec.php:
|
2234 |
msgid ""
|
2235 |
"Activation faild. Please check your purchase code or license type."
|
2236 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: app/features/mec.php:
|
2240 |
msgid "Troubleshooting"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: app/features/mec.php:
|
2244 |
msgid ""
|
2245 |
"Your options is not in JSON format. Please insert correct options in this "
|
2246 |
"field and try again."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: app/features/mec.php:
|
2250 |
#, fuzzy
|
2251 |
#| msgid "Your booking cannot verify!"
|
2252 |
msgid "Your options field can not be empty!"
|
2253 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
2254 |
|
2255 |
-
#: app/features/mec.php:
|
2256 |
#, fuzzy
|
2257 |
#| msgid "Your booking successfully verified."
|
2258 |
msgid "Your options imported successfuly."
|
2259 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
2260 |
|
2261 |
-
#: app/features/mec.php:
|
2262 |
#, fuzzy
|
2263 |
#| msgid "Support"
|
2264 |
msgid "MEC - Support"
|
2265 |
msgstr "Support"
|
2266 |
|
2267 |
-
#: app/features/mec.php:
|
2268 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2269 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2270 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2273,64 +2273,64 @@ msgstr "Support"
|
|
2273 |
msgid "Support"
|
2274 |
msgstr "Support"
|
2275 |
|
2276 |
-
#: app/features/mec.php:
|
2277 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2278 |
-
#: app/libraries/main.php:
|
2279 |
msgid "Organizers"
|
2280 |
msgstr "Veranstalter"
|
2281 |
|
2282 |
-
#: app/features/mec.php:
|
2283 |
#: app/features/mec/dashboard.php:164
|
2284 |
msgid "Shortcodes"
|
2285 |
msgstr "Shortcodes"
|
2286 |
|
2287 |
-
#: app/features/mec.php:
|
2288 |
msgid "MEC - Settings"
|
2289 |
msgstr "MEC - Einstellungen"
|
2290 |
|
2291 |
-
#: app/features/mec.php:
|
2292 |
#, fuzzy
|
2293 |
#| msgid "MEC - Settings"
|
2294 |
msgid "MEC - Addons"
|
2295 |
msgstr "MEC - Einstellungen"
|
2296 |
|
2297 |
-
#: app/features/mec.php:
|
2298 |
msgid "Addons"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: app/features/mec.php:
|
2302 |
msgid "Add Shortcode"
|
2303 |
msgstr "Shortcode hinzufügen"
|
2304 |
|
2305 |
-
#: app/features/mec.php:
|
2306 |
msgid "Add New Shortcode"
|
2307 |
msgstr "Neuen Shortcode hinzufügen"
|
2308 |
|
2309 |
-
#: app/features/mec.php:
|
2310 |
msgid "No shortcodes found!"
|
2311 |
msgstr "Keine Shortcodes gefunden!"
|
2312 |
|
2313 |
-
#: app/features/mec.php:
|
2314 |
msgid "All Shortcodes"
|
2315 |
msgstr "Alle Shortcodes"
|
2316 |
|
2317 |
-
#: app/features/mec.php:
|
2318 |
msgid "Edit shortcodes"
|
2319 |
msgstr "Shortcode ändern"
|
2320 |
|
2321 |
-
#: app/features/mec.php:
|
2322 |
msgid "No shortcodes found in Trash!"
|
2323 |
msgstr "Keine Shortcodes im Papierkorb gefunden!"
|
2324 |
|
2325 |
-
#: app/features/mec.php:
|
2326 |
msgid "Display Options"
|
2327 |
msgstr "Darstellungsoptionen"
|
2328 |
|
2329 |
-
#: app/features/mec.php:
|
2330 |
msgid "Filter Options"
|
2331 |
msgstr "Filteroptionen"
|
2332 |
|
2333 |
-
#: app/features/mec.php:
|
2334 |
msgid "Search Form"
|
2335 |
msgstr "Suche Formular"
|
2336 |
|
@@ -2338,15 +2338,15 @@ msgstr "Suche Formular"
|
|
2338 |
msgid "Display content's images as Popup"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: app/features/mec.php:
|
2342 |
msgid "Single Event Display Method"
|
2343 |
msgstr "Single Event Anzeigemethode"
|
2344 |
|
2345 |
-
#: app/features/mec.php:
|
2346 |
msgid "Separate Window"
|
2347 |
msgstr "Separates Fenster"
|
2348 |
|
2349 |
-
#: app/features/mec.php:
|
2350 |
msgid "Modal 1"
|
2351 |
msgstr "Modal 1"
|
2352 |
|
@@ -3310,8 +3310,8 @@ msgstr "Deaktiviert"
|
|
3310 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3311 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3312 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3313 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3314 |
-
#: app/libraries/skins.php:
|
3315 |
msgid "Speaker"
|
3316 |
msgstr ""
|
3317 |
|
@@ -3323,7 +3323,7 @@ msgstr ""
|
|
3323 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3324 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3325 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3326 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3327 |
#, fuzzy
|
3328 |
#| msgid "Tags"
|
3329 |
msgid "Tag"
|
@@ -3849,7 +3849,7 @@ msgstr "Ausschlussdatum Suffix"
|
|
3849 |
msgid "Remove suffix from calendars"
|
3850 |
msgstr "Suffix aus den Kalendern entfernen"
|
3851 |
|
3852 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3853 |
msgid "Weekdays"
|
3854 |
msgstr "Wochentage"
|
3855 |
|
@@ -4563,7 +4563,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4563 |
msgstr ""
|
4564 |
|
4565 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4566 |
-
#: app/libraries/main.php:
|
4567 |
msgid "Verified"
|
4568 |
msgstr "Verifiziert"
|
4569 |
|
@@ -5128,7 +5128,7 @@ msgstr "z.B.. max@mustermann.com"
|
|
5128 |
msgid "eg. https://webnus.net"
|
5129 |
msgstr "http://webnus.net"
|
5130 |
|
5131 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
5132 |
#: app/skins/single.php:194
|
5133 |
msgid "Other Organizers"
|
5134 |
msgstr "Andere Veranstalter"
|
@@ -5170,7 +5170,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5170 |
msgstr ""
|
5171 |
|
5172 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5173 |
-
#: app/libraries/main.php:
|
5174 |
msgid "Ticket"
|
5175 |
msgstr "Ticket"
|
5176 |
|
@@ -5249,8 +5249,8 @@ msgstr "%s Preis"
|
|
5249 |
msgid "Discount"
|
5250 |
msgstr "Rabatt"
|
5251 |
|
5252 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5253 |
-
#: app/modules/booking/default.php:
|
5254 |
msgid "Download Invoice"
|
5255 |
msgstr "Download Rechnung"
|
5256 |
|
@@ -5280,8 +5280,8 @@ msgid "day"
|
|
5280 |
msgstr "Tag"
|
5281 |
|
5282 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5283 |
-
#: app/skins/available_spot/tpl.php:
|
5284 |
-
#: app/skins/countdown/tpl.php:
|
5285 |
msgid "days"
|
5286 |
msgstr "Tage"
|
5287 |
|
@@ -5290,8 +5290,8 @@ msgid "hour"
|
|
5290 |
msgstr "Stunde"
|
5291 |
|
5292 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5293 |
-
#: app/skins/available_spot/tpl.php:
|
5294 |
-
#: app/skins/countdown/tpl.php:
|
5295 |
msgid "hours"
|
5296 |
msgstr "Stunden"
|
5297 |
|
@@ -5300,8 +5300,8 @@ msgid "minute"
|
|
5300 |
msgstr "Minute"
|
5301 |
|
5302 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5303 |
-
#: app/skins/available_spot/tpl.php:
|
5304 |
-
#: app/skins/countdown/tpl.php:
|
5305 |
msgid "minutes"
|
5306 |
msgstr "Minuten"
|
5307 |
|
@@ -5310,8 +5310,8 @@ msgid "second"
|
|
5310 |
msgstr "Sekunde"
|
5311 |
|
5312 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5313 |
-
#: app/skins/available_spot/tpl.php:
|
5314 |
-
#: app/skins/countdown/tpl.php:
|
5315 |
msgid "seconds"
|
5316 |
msgstr "Sekunden"
|
5317 |
|
@@ -5323,7 +5323,7 @@ msgstr "MEC Single Sidebar"
|
|
5323 |
msgid "Custom sidebar for single and modal page of MEC."
|
5324 |
msgstr "Custom sidebar for single and modal page of MEC."
|
5325 |
|
5326 |
-
#: app/libraries/feed.php:
|
5327 |
msgid "There is no excerpt because this is a protected post."
|
5328 |
msgstr ""
|
5329 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
@@ -5384,31 +5384,31 @@ msgstr "Karussellansicht"
|
|
5384 |
msgid "Slider View"
|
5385 |
msgstr "Slideransicht"
|
5386 |
|
5387 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5388 |
msgid "SU"
|
5389 |
msgstr "SO"
|
5390 |
|
5391 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5392 |
msgid "MO"
|
5393 |
msgstr "MO"
|
5394 |
|
5395 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5396 |
msgid "TU"
|
5397 |
msgstr "DI"
|
5398 |
|
5399 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5400 |
msgid "WE"
|
5401 |
msgstr "MI"
|
5402 |
|
5403 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5404 |
msgid "TH"
|
5405 |
msgstr "DO"
|
5406 |
|
5407 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5408 |
msgid "FR"
|
5409 |
msgstr "FR"
|
5410 |
|
5411 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5412 |
msgid "SA"
|
5413 |
msgstr "SA"
|
5414 |
|
@@ -5593,95 +5593,95 @@ msgstr "Eine Veranstaltung wurde gebucht."
|
|
5593 |
msgid "%s booked %s event."
|
5594 |
msgstr "%s gebuchtes %s Event"
|
5595 |
|
5596 |
-
#: app/libraries/main.php:
|
5597 |
msgid "Taxonomies"
|
5598 |
msgstr "Klassifizierung "
|
5599 |
|
5600 |
-
#: app/libraries/main.php:
|
5601 |
msgid "Category Plural Label"
|
5602 |
msgstr "Kategorien"
|
5603 |
|
5604 |
-
#: app/libraries/main.php:
|
5605 |
msgid "Category Singular Label"
|
5606 |
msgstr "Kategorie"
|
5607 |
|
5608 |
-
#: app/libraries/main.php:
|
5609 |
msgid "Label Plural Label"
|
5610 |
msgstr "Labels"
|
5611 |
|
5612 |
-
#: app/libraries/main.php:
|
5613 |
msgid "Label Singular Label"
|
5614 |
msgstr "Label"
|
5615 |
|
5616 |
-
#: app/libraries/main.php:
|
5617 |
msgid "label"
|
5618 |
msgstr "label"
|
5619 |
|
5620 |
-
#: app/libraries/main.php:
|
5621 |
msgid "Location Plural Label"
|
5622 |
msgstr "Veranstaltungsorte"
|
5623 |
|
5624 |
-
#: app/libraries/main.php:
|
5625 |
msgid "Location Singular Label"
|
5626 |
msgstr "Veranstaltungsort"
|
5627 |
|
5628 |
-
#: app/libraries/main.php:
|
5629 |
msgid "Organizer Plural Label"
|
5630 |
msgstr "Veranstalter"
|
5631 |
|
5632 |
-
#: app/libraries/main.php:
|
5633 |
msgid "Organizer Singular Label"
|
5634 |
msgstr "Veranstalter"
|
5635 |
|
5636 |
-
#: app/libraries/main.php:
|
5637 |
#, fuzzy
|
5638 |
#| msgid "Label Plural Label"
|
5639 |
msgid "Speaker Plural Label"
|
5640 |
msgstr "Labels"
|
5641 |
|
5642 |
-
#: app/libraries/main.php:
|
5643 |
#, fuzzy
|
5644 |
#| msgid "Label Singular Label"
|
5645 |
msgid "Speaker Singular Label"
|
5646 |
msgstr "Label"
|
5647 |
|
5648 |
-
#: app/libraries/main.php:
|
5649 |
msgid "Sunday abbreviation"
|
5650 |
msgstr "Sonntag Abkürzung"
|
5651 |
|
5652 |
-
#: app/libraries/main.php:
|
5653 |
msgid "Monday abbreviation"
|
5654 |
msgstr "Montag Abkürzung"
|
5655 |
|
5656 |
-
#: app/libraries/main.php:
|
5657 |
msgid "Tuesday abbreviation"
|
5658 |
msgstr "Dienstag Abkürzung"
|
5659 |
|
5660 |
-
#: app/libraries/main.php:
|
5661 |
msgid "Wednesday abbreviation"
|
5662 |
msgstr "Mittwoch Abkürzung"
|
5663 |
|
5664 |
-
#: app/libraries/main.php:
|
5665 |
msgid "Thursday abbreviation"
|
5666 |
msgstr "Donnerstag Abkürzung"
|
5667 |
|
5668 |
-
#: app/libraries/main.php:
|
5669 |
msgid "Friday abbreviation"
|
5670 |
msgstr "Freitag Abkürzung"
|
5671 |
|
5672 |
-
#: app/libraries/main.php:
|
5673 |
msgid "Saturday abbreviation"
|
5674 |
msgstr "Samstag Abkürzung "
|
5675 |
|
5676 |
-
#: app/libraries/main.php:
|
5677 |
msgid "Others"
|
5678 |
msgstr "Andere"
|
5679 |
|
5680 |
-
#: app/libraries/main.php:
|
5681 |
msgid "Booking Success Message"
|
5682 |
msgstr "Buchung erfolgreich Mitteilung"
|
5683 |
|
5684 |
-
#: app/libraries/main.php:
|
5685 |
msgid ""
|
5686 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5687 |
"needed, please check your email."
|
@@ -5689,90 +5689,90 @@ msgstr ""
|
|
5689 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
5690 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
5691 |
|
5692 |
-
#: app/libraries/main.php:
|
5693 |
msgid "Register Button"
|
5694 |
msgstr "Register Button"
|
5695 |
|
5696 |
-
#: app/libraries/main.php:
|
5697 |
-
#: app/skins/carousel/render.php:
|
5698 |
-
#: app/skins/grid/render.php:
|
5699 |
-
#: app/skins/grid/render.php:
|
5700 |
-
#: app/skins/list/render.php:
|
5701 |
-
#: app/skins/masonry/render.php:
|
5702 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5703 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5704 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5705 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5706 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5707 |
-
#: app/skins/slider/render.php:
|
5708 |
-
#: app/skins/slider/render.php:
|
5709 |
msgid "REGISTER"
|
5710 |
msgstr "ANMELDEN"
|
5711 |
|
5712 |
-
#: app/libraries/main.php:
|
5713 |
msgid "View Detail Button"
|
5714 |
msgstr "Ansicht Detail Button"
|
5715 |
|
5716 |
-
#: app/libraries/main.php:
|
5717 |
-
#: app/skins/carousel/render.php:
|
5718 |
-
#: app/skins/grid/render.php:
|
5719 |
-
#: app/skins/grid/render.php:
|
5720 |
-
#: app/skins/list/render.php:
|
5721 |
-
#: app/skins/slider/render.php:
|
5722 |
-
#: app/skins/slider/render.php:
|
5723 |
-
#: app/skins/slider/render.php:
|
5724 |
msgid "View Detail"
|
5725 |
msgstr "Details "
|
5726 |
|
5727 |
-
#: app/libraries/main.php:
|
5728 |
msgid "Event Detail Button"
|
5729 |
msgstr "Event Detail Button"
|
5730 |
|
5731 |
-
#: app/libraries/main.php:
|
5732 |
msgid "Event Detail"
|
5733 |
msgstr "Veranstaltungsdetails"
|
5734 |
|
5735 |
-
#: app/libraries/main.php:
|
5736 |
msgid "More Info Link"
|
5737 |
msgstr "Link Mehr Informationen"
|
5738 |
|
5739 |
-
#: app/libraries/main.php:
|
5740 |
msgid "Ticket (Singular)"
|
5741 |
msgstr "Ticket"
|
5742 |
|
5743 |
-
#: app/libraries/main.php:
|
5744 |
msgid "Tickets (Plural)"
|
5745 |
msgstr "Tickets"
|
5746 |
|
5747 |
-
#: app/libraries/main.php:
|
5748 |
msgid "EventON"
|
5749 |
msgstr "EventON"
|
5750 |
|
5751 |
-
#: app/libraries/main.php:
|
5752 |
msgid "The Events Calendar"
|
5753 |
msgstr "The Events Calendar"
|
5754 |
|
5755 |
-
#: app/libraries/main.php:
|
5756 |
msgid "Events Schedule WP Plugin"
|
5757 |
msgstr "Event Zeitplan WP-Plugin"
|
5758 |
|
5759 |
-
#: app/libraries/main.php:
|
5760 |
msgid "Calendarize It"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: app/libraries/main.php:
|
5764 |
msgid "Confirmed"
|
5765 |
msgstr "Bestätigt"
|
5766 |
|
5767 |
-
#: app/libraries/main.php:
|
5768 |
msgid "Rejected"
|
5769 |
msgstr "Abgelehnt"
|
5770 |
|
5771 |
-
#: app/libraries/main.php:
|
5772 |
msgid "Pending"
|
5773 |
msgstr "Ausstehend"
|
5774 |
|
5775 |
-
#: app/libraries/main.php:
|
5776 |
msgid "Waiting"
|
5777 |
msgstr "in Bearbeitung"
|
5778 |
|
@@ -5792,27 +5792,27 @@ msgstr "Ihre Buchung wurde bestätigt."
|
|
5792 |
msgid "A new booking is received."
|
5793 |
msgstr "Eine neue Buchung ist eingegangen."
|
5794 |
|
5795 |
-
#: app/libraries/notifications.php:
|
5796 |
msgid "A new event is added."
|
5797 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
5798 |
|
5799 |
-
#: app/libraries/notifications.php:
|
5800 |
msgid "to"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#: app/libraries/notifications.php:
|
5804 |
msgid "+ Add to Google Calendar"
|
5805 |
msgstr "+ zum Google Calendar hinzufügen"
|
5806 |
|
5807 |
-
#: app/libraries/notifications.php:
|
5808 |
msgid "+ iCal export"
|
5809 |
msgstr "+ zu iCal exportieren"
|
5810 |
|
5811 |
-
#: app/libraries/notifications.php:
|
5812 |
msgid "Yes"
|
5813 |
msgstr "Ja"
|
5814 |
|
5815 |
-
#: app/libraries/notifications.php:
|
5816 |
msgid "No"
|
5817 |
msgstr "Nein"
|
5818 |
|
@@ -5827,7 +5827,7 @@ msgstr "Skin contoller existiert nicht."
|
|
5827 |
msgid "All of the day"
|
5828 |
msgstr "Den ganzen Tag"
|
5829 |
|
5830 |
-
#: app/libraries/skins.php:
|
5831 |
msgid "Ignore month and years"
|
5832 |
msgstr "Monat und Jahre ignorieren"
|
5833 |
|
@@ -5872,8 +5872,8 @@ msgstr ""
|
|
5872 |
"Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
|
5873 |
|
5874 |
#: app/modules/booking/steps/form.php:162
|
5875 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5876 |
-
#: app/skins/countdown/tpl.php:
|
5877 |
msgid "Next"
|
5878 |
msgstr "Weiter"
|
5879 |
|
@@ -5999,11 +5999,11 @@ msgid "No event found!"
|
|
5999 |
msgstr "Keine Veranstaltung gefunden"
|
6000 |
|
6001 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
6002 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
6003 |
msgid "Load More"
|
6004 |
msgstr "Weitere anzeigen"
|
6005 |
|
6006 |
-
#: app/skins/available_spot/tpl.php:
|
6007 |
msgid "Available Spot(s):"
|
6008 |
msgstr "Verfügbare Spot (s):"
|
6009 |
|
@@ -6013,23 +6013,23 @@ msgstr "Verfügbare Spot (s):"
|
|
6013 |
msgid "View All"
|
6014 |
msgstr "Ansicht %s"
|
6015 |
|
6016 |
-
#: app/skins/carousel/render.php:
|
6017 |
-
#: app/skins/countdown/tpl.php:
|
6018 |
-
#: app/skins/list/render.php:
|
6019 |
msgid "EVENT DETAIL"
|
6020 |
msgstr "VERANSTALTUNGSDETAILS"
|
6021 |
|
6022 |
-
#: app/skins/countdown/tpl.php:
|
6023 |
-
#: app/skins/countdown/tpl.php:
|
6024 |
#, php-format
|
6025 |
msgid "%s Upcoming Event"
|
6026 |
msgstr "%s Kommendes Event"
|
6027 |
|
6028 |
-
#: app/skins/cover/tpl.php:
|
6029 |
msgid "featured event"
|
6030 |
msgstr "Ausgewählte Veranstaltung"
|
6031 |
|
6032 |
-
#: app/skins/daily_view/render.php:
|
6033 |
msgid "No event"
|
6034 |
msgstr "Keine Veranstaltung"
|
6035 |
|
@@ -6042,16 +6042,16 @@ msgid "All"
|
|
6042 |
msgstr "Alle"
|
6043 |
|
6044 |
#: app/skins/monthly_view/calendar.php:66
|
6045 |
-
#: app/skins/monthly_view/calendar.php:
|
6046 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6047 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
6048 |
#, php-format
|
6049 |
msgid "Events for %s"
|
6050 |
msgstr "Veranstaltungen für %s"
|
6051 |
|
6052 |
-
#: app/skins/monthly_view/calendar.php:
|
6053 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
6054 |
-
#: app/skins/timetable/render.php:
|
6055 |
msgid "No Events"
|
6056 |
msgstr "Keine Veranstaltungen"
|
6057 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ME Calender\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-05-08 11:41+0430\n"
|
6 |
+
"PO-Revision-Date: 2019-05-08 11:41+0430\n"
|
7 |
"Last-Translator: Jogon <koenig@kafinanz.de>\n"
|
8 |
"Language-Team: German\n"
|
9 |
"Language: de_DE\n"
|
27 |
msgid "Content"
|
28 |
msgstr "Inhalt"
|
29 |
|
30 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
31 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
32 |
msgid "Shortcode"
|
33 |
msgstr "Shortcode"
|
34 |
|
59 |
msgid "Event Color"
|
60 |
msgstr "Farbe der Veranstaltung"
|
61 |
|
62 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
63 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
64 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
65 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
288 |
msgid "Event"
|
289 |
msgstr "Veranstaltung"
|
290 |
|
291 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
292 |
msgid "Add Event"
|
293 |
msgstr "Veranstaltung hinzufügen"
|
294 |
|
328 |
#: app/features/mec/meta_boxes/search_form.php:362
|
329 |
#: app/features/mec/meta_boxes/search_form.php:416
|
330 |
#: app/features/mec/meta_boxes/search_form.php:477
|
331 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
332 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
333 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
334 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
335 |
msgid "Category"
|
336 |
msgstr "Kategorie"
|
337 |
|
338 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
339 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
340 |
+
#: app/libraries/main.php:4363
|
341 |
msgid "Categories"
|
342 |
msgstr "Kategorien"
|
343 |
|
412 |
#: app/features/events.php:296 app/features/events.php:2053
|
413 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
414 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
415 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
416 |
#: app/widgets/single.php:103
|
417 |
msgid "Event Cost"
|
418 |
msgstr ""
|
419 |
"Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
|
420 |
|
421 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
422 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
423 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
424 |
#: app/skins/single/modern.php:184
|
425 |
msgid "Cost"
|
436 |
#: app/features/events.php:380 app/features/events.php:1237
|
437 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
438 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
439 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
440 |
#: app/modules/booking/steps/form.php:35
|
441 |
msgid "Name"
|
442 |
msgstr "Name"
|
448 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
449 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
450 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
451 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
452 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
453 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
454 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
777 |
|
778 |
#: app/features/events.php:683 app/features/events.php:703
|
779 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
780 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
781 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
782 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
783 |
msgid "Speakers"
|
784 |
msgstr ""
|
785 |
|
795 |
msgstr "Veranstaltungslinks"
|
796 |
|
797 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
798 |
+
#: app/libraries/main.php:4394
|
799 |
msgid "Event Link"
|
800 |
msgstr "Veranstaltungslink"
|
801 |
|
814 |
"einschließlich http(s)://"
|
815 |
|
816 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
817 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
818 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
819 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
820 |
#: app/widgets/single.php:107
|
851 |
#: app/features/events.php:818 app/features/events.php:910
|
852 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
853 |
#: app/modules/booking/steps/tickets.php:40
|
854 |
+
#: app/skins/available_spot/tpl.php:138
|
855 |
msgid "Unlimited"
|
856 |
msgstr "Unlimitiert"
|
857 |
|
860 |
msgstr "z.B. 100"
|
861 |
|
862 |
#: app/features/events.php:838 app/libraries/book.php:60
|
863 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
864 |
msgid "Tickets"
|
865 |
msgstr "Tickets"
|
866 |
|
928 |
#: app/features/mec/meta_boxes/search_form.php:397
|
929 |
#: app/features/mec/meta_boxes/search_form.php:451
|
930 |
#: app/features/mec/meta_boxes/search_form.php:512
|
931 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
932 |
msgid "Label"
|
933 |
msgstr "Label"
|
934 |
|
1155 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1156 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1157 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1158 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1159 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1160 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1161 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1176 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1177 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1178 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1179 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1180 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1181 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1182 |
#: app/skins/single/modern.php:21
|
1321 |
msgstr "Bild entfernen"
|
1322 |
|
1323 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1324 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1325 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1326 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1327 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1328 |
msgid "Labels"
|
1329 |
msgstr "Labels"
|
1330 |
|
1331 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1332 |
#: app/features/mec/meta_boxes/filter.php:138
|
1333 |
msgid "Tags"
|
1334 |
msgstr "Schlagworte"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2060 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
2061 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2062 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
2063 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2064 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2065 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2066 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
2067 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2068 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
2069 |
#, fuzzy
|
2070 |
#| msgid "Featured Image"
|
2071 |
msgid "Featured"
|
2072 |
msgstr "Ausgewähltes Bild"
|
2073 |
|
2074 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2075 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
2076 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2077 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2078 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2079 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2080 |
#: app/skins/monthly_view/calendar.php:84
|
2081 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2082 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
2083 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2084 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
2085 |
msgid "Canceled"
|
2086 |
msgstr "Abgesagt"
|
2087 |
|
2105 |
msgid "Event %s"
|
2106 |
msgstr "Event %s"
|
2107 |
|
2108 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2109 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2110 |
+
#: app/libraries/main.php:4367
|
2111 |
msgid "Locations"
|
2112 |
msgstr "Orte"
|
2113 |
|
2214 |
msgid "Don't show map in single event page"
|
2215 |
msgstr "Karte in Einzelansicht nicht anzeigen"
|
2216 |
|
2217 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2218 |
#, fuzzy
|
2219 |
#| msgid "Locations"
|
2220 |
msgid "Other Locations"
|
2230 |
"Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
|
2231 |
"auswählen, wenn Sie möchten."
|
2232 |
|
2233 |
+
#: app/features/mec.php:144
|
2234 |
msgid ""
|
2235 |
"Activation faild. Please check your purchase code or license type."
|
2236 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: app/features/mec.php:144
|
2240 |
msgid "Troubleshooting"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: app/features/mec.php:179
|
2244 |
msgid ""
|
2245 |
"Your options is not in JSON format. Please insert correct options in this "
|
2246 |
"field and try again."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: app/features/mec.php:183
|
2250 |
#, fuzzy
|
2251 |
#| msgid "Your booking cannot verify!"
|
2252 |
msgid "Your options field can not be empty!"
|
2253 |
msgstr "Ihre Buchung kann nicht verifiziert werden!"
|
2254 |
|
2255 |
+
#: app/features/mec.php:187
|
2256 |
#, fuzzy
|
2257 |
#| msgid "Your booking successfully verified."
|
2258 |
msgid "Your options imported successfuly."
|
2259 |
msgstr "Ihre Buchung wurde erfolgreich verifiziert."
|
2260 |
|
2261 |
+
#: app/features/mec.php:274
|
2262 |
#, fuzzy
|
2263 |
#| msgid "Support"
|
2264 |
msgid "MEC - Support"
|
2265 |
msgstr "Support"
|
2266 |
|
2267 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2268 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2269 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2270 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2273 |
msgid "Support"
|
2274 |
msgstr "Support"
|
2275 |
|
2276 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2277 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2278 |
+
#: app/libraries/main.php:4369
|
2279 |
msgid "Organizers"
|
2280 |
msgstr "Veranstalter"
|
2281 |
|
2282 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2283 |
#: app/features/mec/dashboard.php:164
|
2284 |
msgid "Shortcodes"
|
2285 |
msgstr "Shortcodes"
|
2286 |
|
2287 |
+
#: app/features/mec.php:303
|
2288 |
msgid "MEC - Settings"
|
2289 |
msgstr "MEC - Einstellungen"
|
2290 |
|
2291 |
+
#: app/features/mec.php:304
|
2292 |
#, fuzzy
|
2293 |
#| msgid "MEC - Settings"
|
2294 |
msgid "MEC - Addons"
|
2295 |
msgstr "MEC - Einstellungen"
|
2296 |
|
2297 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2298 |
msgid "Addons"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: app/features/mec.php:321
|
2302 |
msgid "Add Shortcode"
|
2303 |
msgstr "Shortcode hinzufügen"
|
2304 |
|
2305 |
+
#: app/features/mec.php:322
|
2306 |
msgid "Add New Shortcode"
|
2307 |
msgstr "Neuen Shortcode hinzufügen"
|
2308 |
|
2309 |
+
#: app/features/mec.php:323
|
2310 |
msgid "No shortcodes found!"
|
2311 |
msgstr "Keine Shortcodes gefunden!"
|
2312 |
|
2313 |
+
#: app/features/mec.php:324
|
2314 |
msgid "All Shortcodes"
|
2315 |
msgstr "Alle Shortcodes"
|
2316 |
|
2317 |
+
#: app/features/mec.php:325
|
2318 |
msgid "Edit shortcodes"
|
2319 |
msgstr "Shortcode ändern"
|
2320 |
|
2321 |
+
#: app/features/mec.php:326
|
2322 |
msgid "No shortcodes found in Trash!"
|
2323 |
msgstr "Keine Shortcodes im Papierkorb gefunden!"
|
2324 |
|
2325 |
+
#: app/features/mec.php:373
|
2326 |
msgid "Display Options"
|
2327 |
msgstr "Darstellungsoptionen"
|
2328 |
|
2329 |
+
#: app/features/mec.php:374
|
2330 |
msgid "Filter Options"
|
2331 |
msgstr "Filteroptionen"
|
2332 |
|
2333 |
+
#: app/features/mec.php:376
|
2334 |
msgid "Search Form"
|
2335 |
msgstr "Suche Formular"
|
2336 |
|
2338 |
msgid "Display content's images as Popup"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: app/features/mec.php:764
|
2342 |
msgid "Single Event Display Method"
|
2343 |
msgstr "Single Event Anzeigemethode"
|
2344 |
|
2345 |
+
#: app/features/mec.php:769
|
2346 |
msgid "Separate Window"
|
2347 |
msgstr "Separates Fenster"
|
2348 |
|
2349 |
+
#: app/features/mec.php:770
|
2350 |
msgid "Modal 1"
|
2351 |
msgstr "Modal 1"
|
2352 |
|
3310 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3311 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3312 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3313 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3314 |
+
#: app/libraries/skins.php:829
|
3315 |
msgid "Speaker"
|
3316 |
msgstr ""
|
3317 |
|
3323 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3324 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3325 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3326 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3327 |
#, fuzzy
|
3328 |
#| msgid "Tags"
|
3329 |
msgid "Tag"
|
3849 |
msgid "Remove suffix from calendars"
|
3850 |
msgstr "Suffix aus den Kalendern entfernen"
|
3851 |
|
3852 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3853 |
msgid "Weekdays"
|
3854 |
msgstr "Wochentage"
|
3855 |
|
4563 |
msgstr ""
|
4564 |
|
4565 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4566 |
+
#: app/libraries/main.php:4558
|
4567 |
msgid "Verified"
|
4568 |
msgstr "Verifiziert"
|
4569 |
|
5128 |
msgid "eg. https://webnus.net"
|
5129 |
msgstr "http://webnus.net"
|
5130 |
|
5131 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
5132 |
#: app/skins/single.php:194
|
5133 |
msgid "Other Organizers"
|
5134 |
msgstr "Andere Veranstalter"
|
5170 |
msgstr ""
|
5171 |
|
5172 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5173 |
+
#: app/libraries/main.php:4398
|
5174 |
msgid "Ticket"
|
5175 |
msgstr "Ticket"
|
5176 |
|
5249 |
msgid "Discount"
|
5250 |
msgstr "Rabatt"
|
5251 |
|
5252 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5253 |
+
#: app/modules/booking/default.php:381
|
5254 |
msgid "Download Invoice"
|
5255 |
msgstr "Download Rechnung"
|
5256 |
|
5280 |
msgstr "Tag"
|
5281 |
|
5282 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5283 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5284 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5285 |
msgid "days"
|
5286 |
msgstr "Tage"
|
5287 |
|
5290 |
msgstr "Stunde"
|
5291 |
|
5292 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5293 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5294 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5295 |
msgid "hours"
|
5296 |
msgstr "Stunden"
|
5297 |
|
5300 |
msgstr "Minute"
|
5301 |
|
5302 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5303 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5304 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5305 |
msgid "minutes"
|
5306 |
msgstr "Minuten"
|
5307 |
|
5310 |
msgstr "Sekunde"
|
5311 |
|
5312 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5313 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5314 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5315 |
msgid "seconds"
|
5316 |
msgstr "Sekunden"
|
5317 |
|
5323 |
msgid "Custom sidebar for single and modal page of MEC."
|
5324 |
msgstr "Custom sidebar for single and modal page of MEC."
|
5325 |
|
5326 |
+
#: app/libraries/feed.php:83
|
5327 |
msgid "There is no excerpt because this is a protected post."
|
5328 |
msgstr ""
|
5329 |
"Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
|
5384 |
msgid "Slider View"
|
5385 |
msgstr "Slideransicht"
|
5386 |
|
5387 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5388 |
msgid "SU"
|
5389 |
msgstr "SO"
|
5390 |
|
5391 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5392 |
msgid "MO"
|
5393 |
msgstr "MO"
|
5394 |
|
5395 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5396 |
msgid "TU"
|
5397 |
msgstr "DI"
|
5398 |
|
5399 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5400 |
msgid "WE"
|
5401 |
msgstr "MI"
|
5402 |
|
5403 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5404 |
msgid "TH"
|
5405 |
msgstr "DO"
|
5406 |
|
5407 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5408 |
msgid "FR"
|
5409 |
msgstr "FR"
|
5410 |
|
5411 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5412 |
msgid "SA"
|
5413 |
msgstr "SA"
|
5414 |
|
5593 |
msgid "%s booked %s event."
|
5594 |
msgstr "%s gebuchtes %s Event"
|
5595 |
|
5596 |
+
#: app/libraries/main.php:4361
|
5597 |
msgid "Taxonomies"
|
5598 |
msgstr "Klassifizierung "
|
5599 |
|
5600 |
+
#: app/libraries/main.php:4363
|
5601 |
msgid "Category Plural Label"
|
5602 |
msgstr "Kategorien"
|
5603 |
|
5604 |
+
#: app/libraries/main.php:4364
|
5605 |
msgid "Category Singular Label"
|
5606 |
msgstr "Kategorie"
|
5607 |
|
5608 |
+
#: app/libraries/main.php:4365
|
5609 |
msgid "Label Plural Label"
|
5610 |
msgstr "Labels"
|
5611 |
|
5612 |
+
#: app/libraries/main.php:4366
|
5613 |
msgid "Label Singular Label"
|
5614 |
msgstr "Label"
|
5615 |
|
5616 |
+
#: app/libraries/main.php:4366
|
5617 |
msgid "label"
|
5618 |
msgstr "label"
|
5619 |
|
5620 |
+
#: app/libraries/main.php:4367
|
5621 |
msgid "Location Plural Label"
|
5622 |
msgstr "Veranstaltungsorte"
|
5623 |
|
5624 |
+
#: app/libraries/main.php:4368
|
5625 |
msgid "Location Singular Label"
|
5626 |
msgstr "Veranstaltungsort"
|
5627 |
|
5628 |
+
#: app/libraries/main.php:4369
|
5629 |
msgid "Organizer Plural Label"
|
5630 |
msgstr "Veranstalter"
|
5631 |
|
5632 |
+
#: app/libraries/main.php:4370
|
5633 |
msgid "Organizer Singular Label"
|
5634 |
msgstr "Veranstalter"
|
5635 |
|
5636 |
+
#: app/libraries/main.php:4371
|
5637 |
#, fuzzy
|
5638 |
#| msgid "Label Plural Label"
|
5639 |
msgid "Speaker Plural Label"
|
5640 |
msgstr "Labels"
|
5641 |
|
5642 |
+
#: app/libraries/main.php:4372
|
5643 |
#, fuzzy
|
5644 |
#| msgid "Label Singular Label"
|
5645 |
msgid "Speaker Singular Label"
|
5646 |
msgstr "Label"
|
5647 |
|
5648 |
+
#: app/libraries/main.php:4378
|
5649 |
msgid "Sunday abbreviation"
|
5650 |
msgstr "Sonntag Abkürzung"
|
5651 |
|
5652 |
+
#: app/libraries/main.php:4379
|
5653 |
msgid "Monday abbreviation"
|
5654 |
msgstr "Montag Abkürzung"
|
5655 |
|
5656 |
+
#: app/libraries/main.php:4380
|
5657 |
msgid "Tuesday abbreviation"
|
5658 |
msgstr "Dienstag Abkürzung"
|
5659 |
|
5660 |
+
#: app/libraries/main.php:4381
|
5661 |
msgid "Wednesday abbreviation"
|
5662 |
msgstr "Mittwoch Abkürzung"
|
5663 |
|
5664 |
+
#: app/libraries/main.php:4382
|
5665 |
msgid "Thursday abbreviation"
|
5666 |
msgstr "Donnerstag Abkürzung"
|
5667 |
|
5668 |
+
#: app/libraries/main.php:4383
|
5669 |
msgid "Friday abbreviation"
|
5670 |
msgstr "Freitag Abkürzung"
|
5671 |
|
5672 |
+
#: app/libraries/main.php:4384
|
5673 |
msgid "Saturday abbreviation"
|
5674 |
msgstr "Samstag Abkürzung "
|
5675 |
|
5676 |
+
#: app/libraries/main.php:4388
|
5677 |
msgid "Others"
|
5678 |
msgstr "Andere"
|
5679 |
|
5680 |
+
#: app/libraries/main.php:4390
|
5681 |
msgid "Booking Success Message"
|
5682 |
msgstr "Buchung erfolgreich Mitteilung"
|
5683 |
|
5684 |
+
#: app/libraries/main.php:4390
|
5685 |
msgid ""
|
5686 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5687 |
"needed, please check your email."
|
5689 |
"Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
|
5690 |
"Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
|
5691 |
|
5692 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5693 |
msgid "Register Button"
|
5694 |
msgstr "Register Button"
|
5695 |
|
5696 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5697 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5698 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5699 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5700 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5701 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5702 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5703 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5704 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5705 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5706 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5707 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5708 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5709 |
msgid "REGISTER"
|
5710 |
msgstr "ANMELDEN"
|
5711 |
|
5712 |
+
#: app/libraries/main.php:4392
|
5713 |
msgid "View Detail Button"
|
5714 |
msgstr "Ansicht Detail Button"
|
5715 |
|
5716 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5717 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5718 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5719 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5720 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5721 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5722 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5723 |
+
#: app/skins/slider/render.php:305
|
5724 |
msgid "View Detail"
|
5725 |
msgstr "Details "
|
5726 |
|
5727 |
+
#: app/libraries/main.php:4393
|
5728 |
msgid "Event Detail Button"
|
5729 |
msgstr "Event Detail Button"
|
5730 |
|
5731 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5732 |
msgid "Event Detail"
|
5733 |
msgstr "Veranstaltungsdetails"
|
5734 |
|
5735 |
+
#: app/libraries/main.php:4395
|
5736 |
msgid "More Info Link"
|
5737 |
msgstr "Link Mehr Informationen"
|
5738 |
|
5739 |
+
#: app/libraries/main.php:4398
|
5740 |
msgid "Ticket (Singular)"
|
5741 |
msgstr "Ticket"
|
5742 |
|
5743 |
+
#: app/libraries/main.php:4399
|
5744 |
msgid "Tickets (Plural)"
|
5745 |
msgstr "Tickets"
|
5746 |
|
5747 |
+
#: app/libraries/main.php:4466
|
5748 |
msgid "EventON"
|
5749 |
msgstr "EventON"
|
5750 |
|
5751 |
+
#: app/libraries/main.php:4467
|
5752 |
msgid "The Events Calendar"
|
5753 |
msgstr "The Events Calendar"
|
5754 |
|
5755 |
+
#: app/libraries/main.php:4468
|
5756 |
msgid "Events Schedule WP Plugin"
|
5757 |
msgstr "Event Zeitplan WP-Plugin"
|
5758 |
|
5759 |
+
#: app/libraries/main.php:4469
|
5760 |
msgid "Calendarize It"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
+
#: app/libraries/main.php:4543
|
5764 |
msgid "Confirmed"
|
5765 |
msgstr "Bestätigt"
|
5766 |
|
5767 |
+
#: app/libraries/main.php:4544
|
5768 |
msgid "Rejected"
|
5769 |
msgstr "Abgelehnt"
|
5770 |
|
5771 |
+
#: app/libraries/main.php:4545
|
5772 |
msgid "Pending"
|
5773 |
msgstr "Ausstehend"
|
5774 |
|
5775 |
+
#: app/libraries/main.php:4560
|
5776 |
msgid "Waiting"
|
5777 |
msgstr "in Bearbeitung"
|
5778 |
|
5792 |
msgid "A new booking is received."
|
5793 |
msgstr "Eine neue Buchung ist eingegangen."
|
5794 |
|
5795 |
+
#: app/libraries/notifications.php:338
|
5796 |
msgid "A new event is added."
|
5797 |
msgstr "Eine neue Veranstaltung wurde hinzugefügt."
|
5798 |
|
5799 |
+
#: app/libraries/notifications.php:509
|
5800 |
msgid "to"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5804 |
msgid "+ Add to Google Calendar"
|
5805 |
msgstr "+ zum Google Calendar hinzufügen"
|
5806 |
|
5807 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5808 |
msgid "+ iCal export"
|
5809 |
msgstr "+ zu iCal exportieren"
|
5810 |
|
5811 |
+
#: app/libraries/notifications.php:582
|
5812 |
msgid "Yes"
|
5813 |
msgstr "Ja"
|
5814 |
|
5815 |
+
#: app/libraries/notifications.php:582
|
5816 |
msgid "No"
|
5817 |
msgstr "Nein"
|
5818 |
|
5827 |
msgid "All of the day"
|
5828 |
msgstr "Den ganzen Tag"
|
5829 |
|
5830 |
+
#: app/libraries/skins.php:902
|
5831 |
msgid "Ignore month and years"
|
5832 |
msgstr "Monat und Jahre ignorieren"
|
5833 |
|
5872 |
"Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
|
5873 |
|
5874 |
#: app/modules/booking/steps/form.php:162
|
5875 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5876 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5877 |
msgid "Next"
|
5878 |
msgstr "Weiter"
|
5879 |
|
5999 |
msgstr "Keine Veranstaltung gefunden"
|
6000 |
|
6001 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
6002 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
6003 |
msgid "Load More"
|
6004 |
msgstr "Weitere anzeigen"
|
6005 |
|
6006 |
+
#: app/skins/available_spot/tpl.php:138
|
6007 |
msgid "Available Spot(s):"
|
6008 |
msgstr "Verfügbare Spot (s):"
|
6009 |
|
6013 |
msgid "View All"
|
6014 |
msgstr "Ansicht %s"
|
6015 |
|
6016 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
6017 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
6018 |
+
#: app/skins/list/render.php:119
|
6019 |
msgid "EVENT DETAIL"
|
6020 |
msgstr "VERANSTALTUNGSDETAILS"
|
6021 |
|
6022 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
6023 |
+
#: app/skins/countdown/tpl.php:206
|
6024 |
#, php-format
|
6025 |
msgid "%s Upcoming Event"
|
6026 |
msgstr "%s Kommendes Event"
|
6027 |
|
6028 |
+
#: app/skins/cover/tpl.php:81
|
6029 |
msgid "featured event"
|
6030 |
msgstr "Ausgewählte Veranstaltung"
|
6031 |
|
6032 |
+
#: app/skins/daily_view/render.php:78
|
6033 |
msgid "No event"
|
6034 |
msgstr "Keine Veranstaltung"
|
6035 |
|
6042 |
msgstr "Alle"
|
6043 |
|
6044 |
#: app/skins/monthly_view/calendar.php:66
|
6045 |
+
#: app/skins/monthly_view/calendar.php:152
|
6046 |
#: app/skins/monthly_view/calendar_clean.php:67
|
6047 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
6048 |
#, php-format
|
6049 |
msgid "Events for %s"
|
6050 |
msgstr "Veranstaltungen für %s"
|
6051 |
|
6052 |
+
#: app/skins/monthly_view/calendar.php:154
|
6053 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
6054 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
6055 |
msgid "No Events"
|
6056 |
msgstr "Keine Veranstaltungen"
|
6057 |
|
languages/modern-events-calendar-lite-en_US.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-en_US.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
@@ -25,8 +25,8 @@ msgstr ""
|
|
25 |
msgid "Content"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
29 |
-
#: app/features/mec.php:
|
30 |
msgid "Shortcode"
|
31 |
msgstr ""
|
32 |
|
@@ -51,7 +51,7 @@ msgstr ""
|
|
51 |
msgid "Event Color"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
55 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
56 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
57 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -256,7 +256,7 @@ msgstr ""
|
|
256 |
msgid "Event"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: app/features/events.php:134 app/features/mec.php:
|
260 |
msgid "Add Event"
|
261 |
msgstr ""
|
262 |
|
@@ -296,16 +296,16 @@ msgstr ""
|
|
296 |
#: app/features/mec/meta_boxes/search_form.php:362
|
297 |
#: app/features/mec/meta_boxes/search_form.php:416
|
298 |
#: app/features/mec/meta_boxes/search_form.php:477
|
299 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
300 |
-
#: app/libraries/skins.php:
|
301 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
302 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
303 |
msgid "Category"
|
304 |
msgstr ""
|
305 |
|
306 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
307 |
-
#: app/features/mec.php:
|
308 |
-
#: app/libraries/main.php:
|
309 |
msgid "Categories"
|
310 |
msgstr ""
|
311 |
|
@@ -380,13 +380,13 @@ msgstr ""
|
|
380 |
#: app/features/events.php:296 app/features/events.php:2053
|
381 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
382 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
383 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
384 |
#: app/widgets/single.php:103
|
385 |
msgid "Event Cost"
|
386 |
msgstr ""
|
387 |
|
388 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
389 |
-
#: app/libraries/main.php:
|
390 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
391 |
#: app/skins/single/modern.php:184
|
392 |
msgid "Cost"
|
@@ -403,7 +403,7 @@ msgstr ""
|
|
403 |
#: app/features/events.php:380 app/features/events.php:1237
|
404 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
405 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
406 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
407 |
#: app/modules/booking/steps/form.php:35
|
408 |
msgid "Name"
|
409 |
msgstr ""
|
@@ -415,7 +415,7 @@ msgstr ""
|
|
415 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
416 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
417 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
418 |
-
#: app/libraries/notifications.php:
|
419 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
420 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
421 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -732,9 +732,9 @@ msgstr ""
|
|
732 |
|
733 |
#: app/features/events.php:683 app/features/events.php:703
|
734 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
735 |
-
#: app/features/mec.php:
|
736 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
737 |
-
#: app/libraries/main.php:
|
738 |
msgid "Speakers"
|
739 |
msgstr ""
|
740 |
|
@@ -748,7 +748,7 @@ msgid "Event Links"
|
|
748 |
msgstr ""
|
749 |
|
750 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
751 |
-
#: app/libraries/main.php:
|
752 |
msgid "Event Link"
|
753 |
msgstr ""
|
754 |
|
@@ -764,7 +764,7 @@ msgid ""
|
|
764 |
msgstr ""
|
765 |
|
766 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
767 |
-
#: app/libraries/main.php:
|
768 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
769 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
770 |
#: app/widgets/single.php:107
|
@@ -796,7 +796,7 @@ msgstr ""
|
|
796 |
#: app/features/events.php:818 app/features/events.php:910
|
797 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
798 |
#: app/modules/booking/steps/tickets.php:40
|
799 |
-
#: app/skins/available_spot/tpl.php:
|
800 |
msgid "Unlimited"
|
801 |
msgstr ""
|
802 |
|
@@ -805,7 +805,7 @@ msgid "100"
|
|
805 |
msgstr ""
|
806 |
|
807 |
#: app/features/events.php:838 app/libraries/book.php:60
|
808 |
-
#: app/libraries/main.php:
|
809 |
msgid "Tickets"
|
810 |
msgstr ""
|
811 |
|
@@ -871,7 +871,7 @@ msgstr ""
|
|
871 |
#: app/features/mec/meta_boxes/search_form.php:397
|
872 |
#: app/features/mec/meta_boxes/search_form.php:451
|
873 |
#: app/features/mec/meta_boxes/search_form.php:512
|
874 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
875 |
msgid "Label"
|
876 |
msgstr ""
|
877 |
|
@@ -1088,7 +1088,7 @@ msgstr ""
|
|
1088 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1089 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1090 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1091 |
-
#: app/libraries/main.php:
|
1092 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1093 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1094 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1109,7 +1109,7 @@ msgstr ""
|
|
1109 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1110 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1111 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1112 |
-
#: app/libraries/main.php:
|
1113 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1114 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1115 |
#: app/skins/single/modern.php:21
|
@@ -1249,14 +1249,14 @@ msgid "Remove Image"
|
|
1249 |
msgstr ""
|
1250 |
|
1251 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1252 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1253 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1254 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1255 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1256 |
msgid "Labels"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1260 |
#: app/features/mec/meta_boxes/filter.php:138
|
1261 |
msgid "Tags"
|
1262 |
msgstr ""
|
@@ -1904,29 +1904,29 @@ msgid "Normal"
|
|
1904 |
msgstr ""
|
1905 |
|
1906 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1907 |
-
#: app/skins/agenda/render.php:
|
1908 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1909 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
1910 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1911 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1912 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1913 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
1914 |
-
#: app/skins/timetable/render.php:
|
1915 |
-
#: app/skins/weekly_view/render.php:
|
1916 |
msgid "Featured"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1920 |
-
#: app/libraries/main.php:
|
1921 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1922 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1923 |
-
#: app/skins/daily_view/render.php:
|
1924 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1925 |
#: app/skins/monthly_view/calendar.php:84
|
1926 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1927 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
1928 |
-
#: app/skins/timetable/render.php:
|
1929 |
-
#: app/skins/weekly_view/render.php:
|
1930 |
msgid "Canceled"
|
1931 |
msgstr ""
|
1932 |
|
@@ -1950,9 +1950,9 @@ msgstr ""
|
|
1950 |
msgid "Event %s"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
1954 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
1955 |
-
#: app/libraries/main.php:
|
1956 |
msgid "Locations"
|
1957 |
msgstr ""
|
1958 |
|
@@ -2046,7 +2046,7 @@ msgstr ""
|
|
2046 |
msgid "Don't show map in single event page"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2050 |
msgid "Other Locations"
|
2051 |
msgstr ""
|
2052 |
|
@@ -2055,35 +2055,35 @@ msgid ""
|
|
2055 |
"You can select extra locations in addition to main location if you like."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: app/features/mec.php:
|
2059 |
msgid ""
|
2060 |
"Activation faild. Please check your purchase code or license type."
|
2061 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: app/features/mec.php:
|
2065 |
msgid "Troubleshooting"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: app/features/mec.php:
|
2069 |
msgid ""
|
2070 |
"Your options is not in JSON format. Please insert correct options in this "
|
2071 |
"field and try again."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: app/features/mec.php:
|
2075 |
msgid "Your options field can not be empty!"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: app/features/mec.php:
|
2079 |
msgid "Your options imported successfuly."
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: app/features/mec.php:
|
2083 |
msgid "MEC - Support"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: app/features/mec.php:
|
2087 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2088 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2089 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2092,62 +2092,62 @@ msgstr ""
|
|
2092 |
msgid "Support"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: app/features/mec.php:
|
2096 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2097 |
-
#: app/libraries/main.php:
|
2098 |
msgid "Organizers"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: app/features/mec.php:
|
2102 |
#: app/features/mec/dashboard.php:164
|
2103 |
msgid "Shortcodes"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: app/features/mec.php:
|
2107 |
msgid "MEC - Settings"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: app/features/mec.php:
|
2111 |
msgid "MEC - Addons"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: app/features/mec.php:
|
2115 |
msgid "Addons"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: app/features/mec.php:
|
2119 |
msgid "Add Shortcode"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: app/features/mec.php:
|
2123 |
msgid "Add New Shortcode"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: app/features/mec.php:
|
2127 |
msgid "No shortcodes found!"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: app/features/mec.php:
|
2131 |
msgid "All Shortcodes"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: app/features/mec.php:
|
2135 |
msgid "Edit shortcodes"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: app/features/mec.php:
|
2139 |
msgid "No shortcodes found in Trash!"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: app/features/mec.php:
|
2143 |
msgid "Display Options"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: app/features/mec.php:
|
2147 |
msgid "Filter Options"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: app/features/mec.php:
|
2151 |
msgid "Search Form"
|
2152 |
msgstr ""
|
2153 |
|
@@ -2155,15 +2155,15 @@ msgstr ""
|
|
2155 |
msgid "Display content's images as Popup"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: app/features/mec.php:
|
2159 |
msgid "Single Event Display Method"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: app/features/mec.php:
|
2163 |
msgid "Separate Window"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: app/features/mec.php:
|
2167 |
msgid "Modal 1"
|
2168 |
msgstr ""
|
2169 |
|
@@ -3094,8 +3094,8 @@ msgstr ""
|
|
3094 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3095 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3096 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3097 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3098 |
-
#: app/libraries/skins.php:
|
3099 |
msgid "Speaker"
|
3100 |
msgstr ""
|
3101 |
|
@@ -3107,7 +3107,7 @@ msgstr ""
|
|
3107 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3108 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3109 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3110 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3111 |
msgid "Tag"
|
3112 |
msgstr ""
|
3113 |
|
@@ -3595,7 +3595,7 @@ msgstr ""
|
|
3595 |
msgid "Remove suffix from calendars"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3599 |
msgid "Weekdays"
|
3600 |
msgstr ""
|
3601 |
|
@@ -4226,7 +4226,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4226 |
msgstr ""
|
4227 |
|
4228 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4229 |
-
#: app/libraries/main.php:
|
4230 |
msgid "Verified"
|
4231 |
msgstr ""
|
4232 |
|
@@ -4712,7 +4712,7 @@ msgstr ""
|
|
4712 |
msgid "eg. https://webnus.net"
|
4713 |
msgstr ""
|
4714 |
|
4715 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
4716 |
#: app/skins/single.php:194
|
4717 |
msgid "Other Organizers"
|
4718 |
msgstr ""
|
@@ -4749,7 +4749,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
4749 |
msgstr ""
|
4750 |
|
4751 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4752 |
-
#: app/libraries/main.php:
|
4753 |
msgid "Ticket"
|
4754 |
msgstr ""
|
4755 |
|
@@ -4812,8 +4812,8 @@ msgstr ""
|
|
4812 |
msgid "Discount"
|
4813 |
msgstr ""
|
4814 |
|
4815 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
4816 |
-
#: app/modules/booking/default.php:
|
4817 |
msgid "Download Invoice"
|
4818 |
msgstr ""
|
4819 |
|
@@ -4841,8 +4841,8 @@ msgid "day"
|
|
4841 |
msgstr ""
|
4842 |
|
4843 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
4844 |
-
#: app/skins/available_spot/tpl.php:
|
4845 |
-
#: app/skins/countdown/tpl.php:
|
4846 |
msgid "days"
|
4847 |
msgstr ""
|
4848 |
|
@@ -4851,8 +4851,8 @@ msgid "hour"
|
|
4851 |
msgstr ""
|
4852 |
|
4853 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
4854 |
-
#: app/skins/available_spot/tpl.php:
|
4855 |
-
#: app/skins/countdown/tpl.php:
|
4856 |
msgid "hours"
|
4857 |
msgstr ""
|
4858 |
|
@@ -4861,8 +4861,8 @@ msgid "minute"
|
|
4861 |
msgstr ""
|
4862 |
|
4863 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
4864 |
-
#: app/skins/available_spot/tpl.php:
|
4865 |
-
#: app/skins/countdown/tpl.php:
|
4866 |
msgid "minutes"
|
4867 |
msgstr ""
|
4868 |
|
@@ -4871,8 +4871,8 @@ msgid "second"
|
|
4871 |
msgstr ""
|
4872 |
|
4873 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
4874 |
-
#: app/skins/available_spot/tpl.php:
|
4875 |
-
#: app/skins/countdown/tpl.php:
|
4876 |
msgid "seconds"
|
4877 |
msgstr ""
|
4878 |
|
@@ -4884,7 +4884,7 @@ msgstr ""
|
|
4884 |
msgid "Custom sidebar for single and modal page of MEC."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#: app/libraries/feed.php:
|
4888 |
msgid "There is no excerpt because this is a protected post."
|
4889 |
msgstr ""
|
4890 |
|
@@ -4943,31 +4943,31 @@ msgstr ""
|
|
4943 |
msgid "Slider View"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
4947 |
msgid "SU"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
4951 |
msgid "MO"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
4955 |
msgid "TU"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
4959 |
msgid "WE"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
4963 |
msgid "TH"
|
4964 |
msgstr ""
|
4965 |
|
4966 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
4967 |
msgid "FR"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
4971 |
msgid "SA"
|
4972 |
msgstr ""
|
4973 |
|
@@ -5148,180 +5148,180 @@ msgstr ""
|
|
5148 |
msgid "%s booked %s event."
|
5149 |
msgstr ""
|
5150 |
|
5151 |
-
#: app/libraries/main.php:
|
5152 |
msgid "Taxonomies"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#: app/libraries/main.php:
|
5156 |
msgid "Category Plural Label"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
-
#: app/libraries/main.php:
|
5160 |
msgid "Category Singular Label"
|
5161 |
msgstr ""
|
5162 |
|
5163 |
-
#: app/libraries/main.php:
|
5164 |
msgid "Label Plural Label"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#: app/libraries/main.php:
|
5168 |
msgid "Label Singular Label"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: app/libraries/main.php:
|
5172 |
msgid "label"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: app/libraries/main.php:
|
5176 |
msgid "Location Plural Label"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: app/libraries/main.php:
|
5180 |
msgid "Location Singular Label"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
-
#: app/libraries/main.php:
|
5184 |
msgid "Organizer Plural Label"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
-
#: app/libraries/main.php:
|
5188 |
msgid "Organizer Singular Label"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
-
#: app/libraries/main.php:
|
5192 |
msgid "Speaker Plural Label"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
-
#: app/libraries/main.php:
|
5196 |
msgid "Speaker Singular Label"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
-
#: app/libraries/main.php:
|
5200 |
msgid "Sunday abbreviation"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
-
#: app/libraries/main.php:
|
5204 |
msgid "Monday abbreviation"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: app/libraries/main.php:
|
5208 |
msgid "Tuesday abbreviation"
|
5209 |
msgstr ""
|
5210 |
|
5211 |
-
#: app/libraries/main.php:
|
5212 |
msgid "Wednesday abbreviation"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
-
#: app/libraries/main.php:
|
5216 |
msgid "Thursday abbreviation"
|
5217 |
msgstr ""
|
5218 |
|
5219 |
-
#: app/libraries/main.php:
|
5220 |
msgid "Friday abbreviation"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
#: app/libraries/main.php:
|
5224 |
msgid "Saturday abbreviation"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
-
#: app/libraries/main.php:
|
5228 |
msgid "Others"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
-
#: app/libraries/main.php:
|
5232 |
msgid "Booking Success Message"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#: app/libraries/main.php:
|
5236 |
msgid ""
|
5237 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5238 |
"needed, please check your email."
|
5239 |
msgstr ""
|
5240 |
|
5241 |
-
#: app/libraries/main.php:
|
5242 |
msgid "Register Button"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: app/libraries/main.php:
|
5246 |
-
#: app/skins/carousel/render.php:
|
5247 |
-
#: app/skins/grid/render.php:
|
5248 |
-
#: app/skins/grid/render.php:
|
5249 |
-
#: app/skins/list/render.php:
|
5250 |
-
#: app/skins/masonry/render.php:
|
5251 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5252 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5253 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5254 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5255 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5256 |
-
#: app/skins/slider/render.php:
|
5257 |
-
#: app/skins/slider/render.php:
|
5258 |
msgid "REGISTER"
|
5259 |
msgstr ""
|
5260 |
|
5261 |
-
#: app/libraries/main.php:
|
5262 |
msgid "View Detail Button"
|
5263 |
msgstr ""
|
5264 |
|
5265 |
-
#: app/libraries/main.php:
|
5266 |
-
#: app/skins/carousel/render.php:
|
5267 |
-
#: app/skins/grid/render.php:
|
5268 |
-
#: app/skins/grid/render.php:
|
5269 |
-
#: app/skins/list/render.php:
|
5270 |
-
#: app/skins/slider/render.php:
|
5271 |
-
#: app/skins/slider/render.php:
|
5272 |
-
#: app/skins/slider/render.php:
|
5273 |
msgid "View Detail"
|
5274 |
msgstr ""
|
5275 |
|
5276 |
-
#: app/libraries/main.php:
|
5277 |
msgid "Event Detail Button"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: app/libraries/main.php:
|
5281 |
msgid "Event Detail"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: app/libraries/main.php:
|
5285 |
msgid "More Info Link"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: app/libraries/main.php:
|
5289 |
msgid "Ticket (Singular)"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#: app/libraries/main.php:
|
5293 |
msgid "Tickets (Plural)"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#: app/libraries/main.php:
|
5297 |
msgid "EventON"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#: app/libraries/main.php:
|
5301 |
msgid "The Events Calendar"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: app/libraries/main.php:
|
5305 |
msgid "Events Schedule WP Plugin"
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#: app/libraries/main.php:
|
5309 |
msgid "Calendarize It"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: app/libraries/main.php:
|
5313 |
msgid "Confirmed"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: app/libraries/main.php:
|
5317 |
msgid "Rejected"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: app/libraries/main.php:
|
5321 |
msgid "Pending"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: app/libraries/main.php:
|
5325 |
msgid "Waiting"
|
5326 |
msgstr ""
|
5327 |
|
@@ -5341,27 +5341,27 @@ msgstr ""
|
|
5341 |
msgid "A new booking is received."
|
5342 |
msgstr ""
|
5343 |
|
5344 |
-
#: app/libraries/notifications.php:
|
5345 |
msgid "A new event is added."
|
5346 |
msgstr ""
|
5347 |
|
5348 |
-
#: app/libraries/notifications.php:
|
5349 |
msgid "to"
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: app/libraries/notifications.php:
|
5353 |
msgid "+ Add to Google Calendar"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: app/libraries/notifications.php:
|
5357 |
msgid "+ iCal export"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
-
#: app/libraries/notifications.php:
|
5361 |
msgid "Yes"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: app/libraries/notifications.php:
|
5365 |
msgid "No"
|
5366 |
msgstr ""
|
5367 |
|
@@ -5376,7 +5376,7 @@ msgstr ""
|
|
5376 |
msgid "All of the day"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#: app/libraries/skins.php:
|
5380 |
msgid "Ignore month and years"
|
5381 |
msgstr ""
|
5382 |
|
@@ -5418,8 +5418,8 @@ msgid "Fill other attendees information like the first form."
|
|
5418 |
msgstr ""
|
5419 |
|
5420 |
#: app/modules/booking/steps/form.php:162
|
5421 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5422 |
-
#: app/skins/countdown/tpl.php:
|
5423 |
msgid "Next"
|
5424 |
msgstr ""
|
5425 |
|
@@ -5543,11 +5543,11 @@ msgid "No event found!"
|
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5546 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5547 |
msgid "Load More"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: app/skins/available_spot/tpl.php:
|
5551 |
msgid "Available Spot(s):"
|
5552 |
msgstr ""
|
5553 |
|
@@ -5555,23 +5555,23 @@ msgstr ""
|
|
5555 |
msgid "View All"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: app/skins/carousel/render.php:
|
5559 |
-
#: app/skins/countdown/tpl.php:
|
5560 |
-
#: app/skins/list/render.php:
|
5561 |
msgid "EVENT DETAIL"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
-
#: app/skins/countdown/tpl.php:
|
5565 |
-
#: app/skins/countdown/tpl.php:
|
5566 |
#, php-format
|
5567 |
msgid "%s Upcoming Event"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: app/skins/cover/tpl.php:
|
5571 |
msgid "featured event"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
-
#: app/skins/daily_view/render.php:
|
5575 |
msgid "No event"
|
5576 |
msgstr ""
|
5577 |
|
@@ -5584,16 +5584,16 @@ msgid "All"
|
|
5584 |
msgstr ""
|
5585 |
|
5586 |
#: app/skins/monthly_view/calendar.php:66
|
5587 |
-
#: app/skins/monthly_view/calendar.php:
|
5588 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5589 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5590 |
#, php-format
|
5591 |
msgid "Events for %s"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: app/skins/monthly_view/calendar.php:
|
5595 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5596 |
-
#: app/skins/timetable/render.php:
|
5597 |
msgid "No Events"
|
5598 |
msgstr ""
|
5599 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: modern-events-calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:42+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
25 |
msgid "Content"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
29 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
30 |
msgid "Shortcode"
|
31 |
msgstr ""
|
32 |
|
51 |
msgid "Event Color"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
55 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
56 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
57 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
256 |
msgid "Event"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
260 |
msgid "Add Event"
|
261 |
msgstr ""
|
262 |
|
296 |
#: app/features/mec/meta_boxes/search_form.php:362
|
297 |
#: app/features/mec/meta_boxes/search_form.php:416
|
298 |
#: app/features/mec/meta_boxes/search_form.php:477
|
299 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
300 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
301 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
302 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
303 |
msgid "Category"
|
304 |
msgstr ""
|
305 |
|
306 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
307 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
308 |
+
#: app/libraries/main.php:4363
|
309 |
msgid "Categories"
|
310 |
msgstr ""
|
311 |
|
380 |
#: app/features/events.php:296 app/features/events.php:2053
|
381 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
382 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
383 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
384 |
#: app/widgets/single.php:103
|
385 |
msgid "Event Cost"
|
386 |
msgstr ""
|
387 |
|
388 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
389 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
390 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
391 |
#: app/skins/single/modern.php:184
|
392 |
msgid "Cost"
|
403 |
#: app/features/events.php:380 app/features/events.php:1237
|
404 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
405 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
406 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
407 |
#: app/modules/booking/steps/form.php:35
|
408 |
msgid "Name"
|
409 |
msgstr ""
|
415 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
416 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
417 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
418 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
419 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
420 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
421 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
732 |
|
733 |
#: app/features/events.php:683 app/features/events.php:703
|
734 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
735 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
736 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
737 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
738 |
msgid "Speakers"
|
739 |
msgstr ""
|
740 |
|
748 |
msgstr ""
|
749 |
|
750 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
751 |
+
#: app/libraries/main.php:4394
|
752 |
msgid "Event Link"
|
753 |
msgstr ""
|
754 |
|
764 |
msgstr ""
|
765 |
|
766 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
767 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
768 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
769 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
770 |
#: app/widgets/single.php:107
|
796 |
#: app/features/events.php:818 app/features/events.php:910
|
797 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
798 |
#: app/modules/booking/steps/tickets.php:40
|
799 |
+
#: app/skins/available_spot/tpl.php:138
|
800 |
msgid "Unlimited"
|
801 |
msgstr ""
|
802 |
|
805 |
msgstr ""
|
806 |
|
807 |
#: app/features/events.php:838 app/libraries/book.php:60
|
808 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
809 |
msgid "Tickets"
|
810 |
msgstr ""
|
811 |
|
871 |
#: app/features/mec/meta_boxes/search_form.php:397
|
872 |
#: app/features/mec/meta_boxes/search_form.php:451
|
873 |
#: app/features/mec/meta_boxes/search_form.php:512
|
874 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
875 |
msgid "Label"
|
876 |
msgstr ""
|
877 |
|
1088 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1089 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1090 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1091 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1092 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1093 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1094 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1109 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1110 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1111 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1112 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1113 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1114 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1115 |
#: app/skins/single/modern.php:21
|
1249 |
msgstr ""
|
1250 |
|
1251 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1252 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1253 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1254 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1255 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1256 |
msgid "Labels"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1260 |
#: app/features/mec/meta_boxes/filter.php:138
|
1261 |
msgid "Tags"
|
1262 |
msgstr ""
|
1904 |
msgstr ""
|
1905 |
|
1906 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1907 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
1908 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1909 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
1910 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1911 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1912 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1913 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
1914 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
1915 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
1916 |
msgid "Featured"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1920 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
1921 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1922 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1923 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
1924 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1925 |
#: app/skins/monthly_view/calendar.php:84
|
1926 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1927 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
1928 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
1929 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
1930 |
msgid "Canceled"
|
1931 |
msgstr ""
|
1932 |
|
1950 |
msgid "Event %s"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
1954 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
1955 |
+
#: app/libraries/main.php:4367
|
1956 |
msgid "Locations"
|
1957 |
msgstr ""
|
1958 |
|
2046 |
msgid "Don't show map in single event page"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2050 |
msgid "Other Locations"
|
2051 |
msgstr ""
|
2052 |
|
2055 |
"You can select extra locations in addition to main location if you like."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: app/features/mec.php:144
|
2059 |
msgid ""
|
2060 |
"Activation faild. Please check your purchase code or license type."
|
2061 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: app/features/mec.php:144
|
2065 |
msgid "Troubleshooting"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: app/features/mec.php:179
|
2069 |
msgid ""
|
2070 |
"Your options is not in JSON format. Please insert correct options in this "
|
2071 |
"field and try again."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: app/features/mec.php:183
|
2075 |
msgid "Your options field can not be empty!"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: app/features/mec.php:187
|
2079 |
msgid "Your options imported successfuly."
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: app/features/mec.php:274
|
2083 |
msgid "MEC - Support"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2087 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2088 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2089 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2092 |
msgid "Support"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2096 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2097 |
+
#: app/libraries/main.php:4369
|
2098 |
msgid "Organizers"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2102 |
#: app/features/mec/dashboard.php:164
|
2103 |
msgid "Shortcodes"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: app/features/mec.php:303
|
2107 |
msgid "MEC - Settings"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: app/features/mec.php:304
|
2111 |
msgid "MEC - Addons"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2115 |
msgid "Addons"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: app/features/mec.php:321
|
2119 |
msgid "Add Shortcode"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: app/features/mec.php:322
|
2123 |
msgid "Add New Shortcode"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: app/features/mec.php:323
|
2127 |
msgid "No shortcodes found!"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: app/features/mec.php:324
|
2131 |
msgid "All Shortcodes"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: app/features/mec.php:325
|
2135 |
msgid "Edit shortcodes"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: app/features/mec.php:326
|
2139 |
msgid "No shortcodes found in Trash!"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/features/mec.php:373
|
2143 |
msgid "Display Options"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/features/mec.php:374
|
2147 |
msgid "Filter Options"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: app/features/mec.php:376
|
2151 |
msgid "Search Form"
|
2152 |
msgstr ""
|
2153 |
|
2155 |
msgid "Display content's images as Popup"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: app/features/mec.php:764
|
2159 |
msgid "Single Event Display Method"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: app/features/mec.php:769
|
2163 |
msgid "Separate Window"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: app/features/mec.php:770
|
2167 |
msgid "Modal 1"
|
2168 |
msgstr ""
|
2169 |
|
3094 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3095 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3096 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3097 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3098 |
+
#: app/libraries/skins.php:829
|
3099 |
msgid "Speaker"
|
3100 |
msgstr ""
|
3101 |
|
3107 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3108 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3109 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3110 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3111 |
msgid "Tag"
|
3112 |
msgstr ""
|
3113 |
|
3595 |
msgid "Remove suffix from calendars"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3599 |
msgid "Weekdays"
|
3600 |
msgstr ""
|
3601 |
|
4226 |
msgstr ""
|
4227 |
|
4228 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4229 |
+
#: app/libraries/main.php:4558
|
4230 |
msgid "Verified"
|
4231 |
msgstr ""
|
4232 |
|
4712 |
msgid "eg. https://webnus.net"
|
4713 |
msgstr ""
|
4714 |
|
4715 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
4716 |
#: app/skins/single.php:194
|
4717 |
msgid "Other Organizers"
|
4718 |
msgstr ""
|
4749 |
msgstr ""
|
4750 |
|
4751 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4752 |
+
#: app/libraries/main.php:4398
|
4753 |
msgid "Ticket"
|
4754 |
msgstr ""
|
4755 |
|
4812 |
msgid "Discount"
|
4813 |
msgstr ""
|
4814 |
|
4815 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
4816 |
+
#: app/modules/booking/default.php:381
|
4817 |
msgid "Download Invoice"
|
4818 |
msgstr ""
|
4819 |
|
4841 |
msgstr ""
|
4842 |
|
4843 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
4844 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
4845 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
4846 |
msgid "days"
|
4847 |
msgstr ""
|
4848 |
|
4851 |
msgstr ""
|
4852 |
|
4853 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
4854 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
4855 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
4856 |
msgid "hours"
|
4857 |
msgstr ""
|
4858 |
|
4861 |
msgstr ""
|
4862 |
|
4863 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
4864 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
4865 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
4866 |
msgid "minutes"
|
4867 |
msgstr ""
|
4868 |
|
4871 |
msgstr ""
|
4872 |
|
4873 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
4874 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
4875 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
4876 |
msgid "seconds"
|
4877 |
msgstr ""
|
4878 |
|
4884 |
msgid "Custom sidebar for single and modal page of MEC."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: app/libraries/feed.php:83
|
4888 |
msgid "There is no excerpt because this is a protected post."
|
4889 |
msgstr ""
|
4890 |
|
4943 |
msgid "Slider View"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
4947 |
msgid "SU"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
4951 |
msgid "MO"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
4955 |
msgid "TU"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
4959 |
msgid "WE"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
4963 |
msgid "TH"
|
4964 |
msgstr ""
|
4965 |
|
4966 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
4967 |
msgid "FR"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
4971 |
msgid "SA"
|
4972 |
msgstr ""
|
4973 |
|
5148 |
msgid "%s booked %s event."
|
5149 |
msgstr ""
|
5150 |
|
5151 |
+
#: app/libraries/main.php:4361
|
5152 |
msgid "Taxonomies"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
+
#: app/libraries/main.php:4363
|
5156 |
msgid "Category Plural Label"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
+
#: app/libraries/main.php:4364
|
5160 |
msgid "Category Singular Label"
|
5161 |
msgstr ""
|
5162 |
|
5163 |
+
#: app/libraries/main.php:4365
|
5164 |
msgid "Label Plural Label"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
+
#: app/libraries/main.php:4366
|
5168 |
msgid "Label Singular Label"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
+
#: app/libraries/main.php:4366
|
5172 |
msgid "label"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: app/libraries/main.php:4367
|
5176 |
msgid "Location Plural Label"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: app/libraries/main.php:4368
|
5180 |
msgid "Location Singular Label"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
+
#: app/libraries/main.php:4369
|
5184 |
msgid "Organizer Plural Label"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
+
#: app/libraries/main.php:4370
|
5188 |
msgid "Organizer Singular Label"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
+
#: app/libraries/main.php:4371
|
5192 |
msgid "Speaker Plural Label"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
+
#: app/libraries/main.php:4372
|
5196 |
msgid "Speaker Singular Label"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
+
#: app/libraries/main.php:4378
|
5200 |
msgid "Sunday abbreviation"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
+
#: app/libraries/main.php:4379
|
5204 |
msgid "Monday abbreviation"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
+
#: app/libraries/main.php:4380
|
5208 |
msgid "Tuesday abbreviation"
|
5209 |
msgstr ""
|
5210 |
|
5211 |
+
#: app/libraries/main.php:4381
|
5212 |
msgid "Wednesday abbreviation"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
+
#: app/libraries/main.php:4382
|
5216 |
msgid "Thursday abbreviation"
|
5217 |
msgstr ""
|
5218 |
|
5219 |
+
#: app/libraries/main.php:4383
|
5220 |
msgid "Friday abbreviation"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
+
#: app/libraries/main.php:4384
|
5224 |
msgid "Saturday abbreviation"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
+
#: app/libraries/main.php:4388
|
5228 |
msgid "Others"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
+
#: app/libraries/main.php:4390
|
5232 |
msgid "Booking Success Message"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
+
#: app/libraries/main.php:4390
|
5236 |
msgid ""
|
5237 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5238 |
"needed, please check your email."
|
5239 |
msgstr ""
|
5240 |
|
5241 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5242 |
msgid "Register Button"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5246 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5247 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5248 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5249 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5250 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5251 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5252 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5253 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5254 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5255 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5256 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5257 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5258 |
msgid "REGISTER"
|
5259 |
msgstr ""
|
5260 |
|
5261 |
+
#: app/libraries/main.php:4392
|
5262 |
msgid "View Detail Button"
|
5263 |
msgstr ""
|
5264 |
|
5265 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5266 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5267 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5268 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5269 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5270 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5271 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5272 |
+
#: app/skins/slider/render.php:305
|
5273 |
msgid "View Detail"
|
5274 |
msgstr ""
|
5275 |
|
5276 |
+
#: app/libraries/main.php:4393
|
5277 |
msgid "Event Detail Button"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5281 |
msgid "Event Detail"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: app/libraries/main.php:4395
|
5285 |
msgid "More Info Link"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: app/libraries/main.php:4398
|
5289 |
msgid "Ticket (Singular)"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
+
#: app/libraries/main.php:4399
|
5293 |
msgid "Tickets (Plural)"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
+
#: app/libraries/main.php:4466
|
5297 |
msgid "EventON"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
+
#: app/libraries/main.php:4467
|
5301 |
msgid "The Events Calendar"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
+
#: app/libraries/main.php:4468
|
5305 |
msgid "Events Schedule WP Plugin"
|
5306 |
msgstr ""
|
5307 |
|
5308 |
+
#: app/libraries/main.php:4469
|
5309 |
msgid "Calendarize It"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
+
#: app/libraries/main.php:4543
|
5313 |
msgid "Confirmed"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
+
#: app/libraries/main.php:4544
|
5317 |
msgid "Rejected"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
+
#: app/libraries/main.php:4545
|
5321 |
msgid "Pending"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
+
#: app/libraries/main.php:4560
|
5325 |
msgid "Waiting"
|
5326 |
msgstr ""
|
5327 |
|
5341 |
msgid "A new booking is received."
|
5342 |
msgstr ""
|
5343 |
|
5344 |
+
#: app/libraries/notifications.php:338
|
5345 |
msgid "A new event is added."
|
5346 |
msgstr ""
|
5347 |
|
5348 |
+
#: app/libraries/notifications.php:509
|
5349 |
msgid "to"
|
5350 |
msgstr ""
|
5351 |
|
5352 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5353 |
msgid "+ Add to Google Calendar"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5357 |
msgid "+ iCal export"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
+
#: app/libraries/notifications.php:582
|
5361 |
msgid "Yes"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
+
#: app/libraries/notifications.php:582
|
5365 |
msgid "No"
|
5366 |
msgstr ""
|
5367 |
|
5376 |
msgid "All of the day"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: app/libraries/skins.php:902
|
5380 |
msgid "Ignore month and years"
|
5381 |
msgstr ""
|
5382 |
|
5418 |
msgstr ""
|
5419 |
|
5420 |
#: app/modules/booking/steps/form.php:162
|
5421 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5422 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5423 |
msgid "Next"
|
5424 |
msgstr ""
|
5425 |
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5546 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5547 |
msgid "Load More"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: app/skins/available_spot/tpl.php:138
|
5551 |
msgid "Available Spot(s):"
|
5552 |
msgstr ""
|
5553 |
|
5555 |
msgid "View All"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5559 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5560 |
+
#: app/skins/list/render.php:119
|
5561 |
msgid "EVENT DETAIL"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5565 |
+
#: app/skins/countdown/tpl.php:206
|
5566 |
#, php-format
|
5567 |
msgid "%s Upcoming Event"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: app/skins/cover/tpl.php:81
|
5571 |
msgid "featured event"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: app/skins/daily_view/render.php:78
|
5575 |
msgid "No event"
|
5576 |
msgstr ""
|
5577 |
|
5584 |
msgstr ""
|
5585 |
|
5586 |
#: app/skins/monthly_view/calendar.php:66
|
5587 |
+
#: app/skins/monthly_view/calendar.php:152
|
5588 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5589 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5590 |
#, php-format
|
5591 |
msgid "Events for %s"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: app/skins/monthly_view/calendar.php:154
|
5595 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5596 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5597 |
msgid "No Events"
|
5598 |
msgstr ""
|
5599 |
|
languages/modern-events-calendar-lite-es_ES.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-es_ES.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
-
"POT-Creation-Date: 2019-
|
8 |
-
"PO-Revision-Date: 2019-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
@@ -25,8 +25,8 @@ msgstr "Modern Events Calendar"
|
|
25 |
msgid "Content"
|
26 |
msgstr "Contenido"
|
27 |
|
28 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
29 |
-
#: app/features/mec.php:
|
30 |
msgid "Shortcode"
|
31 |
msgstr "Shortcode"
|
32 |
|
@@ -51,7 +51,7 @@ msgstr "Seleccionar tipo"
|
|
51 |
msgid "Event Color"
|
52 |
msgstr "Color del evento"
|
53 |
|
54 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
55 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
56 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
57 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -281,7 +281,7 @@ msgstr "Eventos"
|
|
281 |
msgid "Event"
|
282 |
msgstr "Evento"
|
283 |
|
284 |
-
#: app/features/events.php:134 app/features/mec.php:
|
285 |
msgid "Add Event"
|
286 |
msgstr "Nuevo evento"
|
287 |
|
@@ -321,16 +321,16 @@ msgstr "No hay eventos en la papelera"
|
|
321 |
#: app/features/mec/meta_boxes/search_form.php:362
|
322 |
#: app/features/mec/meta_boxes/search_form.php:416
|
323 |
#: app/features/mec/meta_boxes/search_form.php:477
|
324 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
325 |
-
#: app/libraries/skins.php:
|
326 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
327 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
328 |
msgid "Category"
|
329 |
msgstr "Categoría"
|
330 |
|
331 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
332 |
-
#: app/features/mec.php:
|
333 |
-
#: app/libraries/main.php:
|
334 |
msgid "Categories"
|
335 |
msgstr "Categorías"
|
336 |
|
@@ -405,13 +405,13 @@ msgstr "Detalle de evento"
|
|
405 |
#: app/features/events.php:296 app/features/events.php:2053
|
406 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
407 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
408 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
409 |
#: app/widgets/single.php:103
|
410 |
msgid "Event Cost"
|
411 |
msgstr "Coste del evento"
|
412 |
|
413 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
414 |
-
#: app/libraries/main.php:
|
415 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
416 |
#: app/skins/single/modern.php:184
|
417 |
msgid "Cost"
|
@@ -428,7 +428,7 @@ msgstr "Datos del invitado"
|
|
428 |
#: app/features/events.php:380 app/features/events.php:1237
|
429 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
430 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
431 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
432 |
#: app/modules/booking/steps/form.php:35
|
433 |
msgid "Name"
|
434 |
msgstr "Nombre"
|
@@ -440,7 +440,7 @@ msgstr "Nombre"
|
|
440 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
441 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
442 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
443 |
-
#: app/libraries/notifications.php:
|
444 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
445 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
446 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -765,9 +765,9 @@ msgstr "Descripción"
|
|
765 |
|
766 |
#: app/features/events.php:683 app/features/events.php:703
|
767 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
768 |
-
#: app/features/mec.php:
|
769 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
770 |
-
#: app/libraries/main.php:
|
771 |
msgid "Speakers"
|
772 |
msgstr ""
|
773 |
|
@@ -783,7 +783,7 @@ msgid "Event Links"
|
|
783 |
msgstr "Enlaces de eventos"
|
784 |
|
785 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
786 |
-
#: app/libraries/main.php:
|
787 |
msgid "Event Link"
|
788 |
msgstr "Enlace del evento"
|
789 |
|
@@ -801,7 +801,7 @@ msgstr ""
|
|
801 |
"defecto. Inserta todo el enlace incluyendo http(s)://"
|
802 |
|
803 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
804 |
-
#: app/libraries/main.php:
|
805 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
806 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
807 |
#: app/widgets/single.php:107
|
@@ -835,7 +835,7 @@ msgstr "Límite total de reservas"
|
|
835 |
#: app/features/events.php:818 app/features/events.php:910
|
836 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
837 |
#: app/modules/booking/steps/tickets.php:40
|
838 |
-
#: app/skins/available_spot/tpl.php:
|
839 |
msgid "Unlimited"
|
840 |
msgstr "Ilimitado"
|
841 |
|
@@ -844,7 +844,7 @@ msgid "100"
|
|
844 |
msgstr "100"
|
845 |
|
846 |
#: app/features/events.php:838 app/libraries/book.php:60
|
847 |
-
#: app/libraries/main.php:
|
848 |
msgid "Tickets"
|
849 |
msgstr "Tickets"
|
850 |
|
@@ -914,7 +914,7 @@ msgstr ""
|
|
914 |
#: app/features/mec/meta_boxes/search_form.php:397
|
915 |
#: app/features/mec/meta_boxes/search_form.php:451
|
916 |
#: app/features/mec/meta_boxes/search_form.php:512
|
917 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
918 |
msgid "Label"
|
919 |
msgstr "Etiqueta"
|
920 |
|
@@ -1137,7 +1137,7 @@ msgstr "organizadores"
|
|
1137 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1138 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1139 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1140 |
-
#: app/libraries/main.php:
|
1141 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1142 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1143 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1158,7 +1158,7 @@ msgstr "Localización"
|
|
1158 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1159 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1160 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1161 |
-
#: app/libraries/main.php:
|
1162 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1163 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1164 |
#: app/skins/single/modern.php:21
|
@@ -1298,14 +1298,14 @@ msgid "Remove Image"
|
|
1298 |
msgstr "Eliminar imagen"
|
1299 |
|
1300 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1301 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1302 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1303 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1304 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1305 |
msgid "Labels"
|
1306 |
msgstr "Etiquetas"
|
1307 |
|
1308 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1309 |
#: app/features/mec/meta_boxes/filter.php:138
|
1310 |
msgid "Tags"
|
1311 |
msgstr "Tags"
|
@@ -1989,29 +1989,29 @@ msgid "Normal"
|
|
1989 |
msgstr ""
|
1990 |
|
1991 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1992 |
-
#: app/skins/agenda/render.php:
|
1993 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1994 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
1995 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1996 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1997 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1998 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
1999 |
-
#: app/skins/timetable/render.php:
|
2000 |
-
#: app/skins/weekly_view/render.php:
|
2001 |
msgid "Featured"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2005 |
-
#: app/libraries/main.php:
|
2006 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2007 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2008 |
-
#: app/skins/daily_view/render.php:
|
2009 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2010 |
#: app/skins/monthly_view/calendar.php:84
|
2011 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2012 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2013 |
-
#: app/skins/timetable/render.php:
|
2014 |
-
#: app/skins/weekly_view/render.php:
|
2015 |
msgid "Canceled"
|
2016 |
msgstr ""
|
2017 |
|
@@ -2035,9 +2035,9 @@ msgstr "Slug"
|
|
2035 |
msgid "Event %s"
|
2036 |
msgstr "Evento %s"
|
2037 |
|
2038 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2039 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2040 |
-
#: app/libraries/main.php:
|
2041 |
msgid "Locations"
|
2042 |
msgstr "Lugar"
|
2043 |
|
@@ -2133,7 +2133,7 @@ msgstr "Elegir imagen"
|
|
2133 |
msgid "Don't show map in single event page"
|
2134 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
2135 |
|
2136 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2137 |
#, fuzzy
|
2138 |
#| msgid "Locations"
|
2139 |
msgid "Other Locations"
|
@@ -2149,37 +2149,37 @@ msgstr ""
|
|
2149 |
"Si quieres, puedes seleccionar organizadores adicionales además del "
|
2150 |
"organizador principal."
|
2151 |
|
2152 |
-
#: app/features/mec.php:
|
2153 |
msgid ""
|
2154 |
"Activation faild. Please check your purchase code or license type."
|
2155 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: app/features/mec.php:
|
2159 |
msgid "Troubleshooting"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: app/features/mec.php:
|
2163 |
msgid ""
|
2164 |
"Your options is not in JSON format. Please insert correct options in this "
|
2165 |
"field and try again."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: app/features/mec.php:
|
2169 |
msgid "Your options field can not be empty!"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: app/features/mec.php:
|
2173 |
msgid "Your options imported successfuly."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: app/features/mec.php:
|
2177 |
#, fuzzy
|
2178 |
#| msgid "Support"
|
2179 |
msgid "MEC - Support"
|
2180 |
msgstr "Soporte"
|
2181 |
|
2182 |
-
#: app/features/mec.php:
|
2183 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2184 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2185 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2188,64 +2188,64 @@ msgstr "Soporte"
|
|
2188 |
msgid "Support"
|
2189 |
msgstr "Soporte"
|
2190 |
|
2191 |
-
#: app/features/mec.php:
|
2192 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2193 |
-
#: app/libraries/main.php:
|
2194 |
msgid "Organizers"
|
2195 |
msgstr "Organizadores"
|
2196 |
|
2197 |
-
#: app/features/mec.php:
|
2198 |
#: app/features/mec/dashboard.php:164
|
2199 |
msgid "Shortcodes"
|
2200 |
msgstr "Shortcodes"
|
2201 |
|
2202 |
-
#: app/features/mec.php:
|
2203 |
msgid "MEC - Settings"
|
2204 |
msgstr "Ajustes MEC"
|
2205 |
|
2206 |
-
#: app/features/mec.php:
|
2207 |
#, fuzzy
|
2208 |
#| msgid "MEC - Settings"
|
2209 |
msgid "MEC - Addons"
|
2210 |
msgstr "Ajustes MEC"
|
2211 |
|
2212 |
-
#: app/features/mec.php:
|
2213 |
msgid "Addons"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: app/features/mec.php:
|
2217 |
msgid "Add Shortcode"
|
2218 |
msgstr "Nuevo Shortcode"
|
2219 |
|
2220 |
-
#: app/features/mec.php:
|
2221 |
msgid "Add New Shortcode"
|
2222 |
msgstr "Añadir nuevo Shortcode"
|
2223 |
|
2224 |
-
#: app/features/mec.php:
|
2225 |
msgid "No shortcodes found!"
|
2226 |
msgstr "No hay shortcodes"
|
2227 |
|
2228 |
-
#: app/features/mec.php:
|
2229 |
msgid "All Shortcodes"
|
2230 |
msgstr "Todos los Shortcodes"
|
2231 |
|
2232 |
-
#: app/features/mec.php:
|
2233 |
msgid "Edit shortcodes"
|
2234 |
msgstr "Editar Shortcodes"
|
2235 |
|
2236 |
-
#: app/features/mec.php:
|
2237 |
msgid "No shortcodes found in Trash!"
|
2238 |
msgstr "No hay shortcodes en la papelera"
|
2239 |
|
2240 |
-
#: app/features/mec.php:
|
2241 |
msgid "Display Options"
|
2242 |
msgstr "Opciones de pantalla"
|
2243 |
|
2244 |
-
#: app/features/mec.php:
|
2245 |
msgid "Filter Options"
|
2246 |
msgstr "Opciones de filtros"
|
2247 |
|
2248 |
-
#: app/features/mec.php:
|
2249 |
msgid "Search Form"
|
2250 |
msgstr "Formulario de Búsqueda"
|
2251 |
|
@@ -2253,15 +2253,15 @@ msgstr "Formulario de Búsqueda"
|
|
2253 |
msgid "Display content's images as Popup"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: app/features/mec.php:
|
2257 |
msgid "Single Event Display Method"
|
2258 |
msgstr "Método de vista para página del evento"
|
2259 |
|
2260 |
-
#: app/features/mec.php:
|
2261 |
msgid "Separate Window"
|
2262 |
msgstr "Ventana aparte"
|
2263 |
|
2264 |
-
#: app/features/mec.php:
|
2265 |
msgid "Modal 1"
|
2266 |
msgstr "Modal 1"
|
2267 |
|
@@ -3216,8 +3216,8 @@ msgstr "Desactivado"
|
|
3216 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3217 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3218 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3219 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3220 |
-
#: app/libraries/skins.php:
|
3221 |
msgid "Speaker"
|
3222 |
msgstr ""
|
3223 |
|
@@ -3229,7 +3229,7 @@ msgstr ""
|
|
3229 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3230 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3231 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3232 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3233 |
#, fuzzy
|
3234 |
#| msgid "Tags"
|
3235 |
msgid "Tag"
|
@@ -3746,7 +3746,7 @@ msgstr "Excluir sufijo de la fecha"
|
|
3746 |
msgid "Remove suffix from calendars"
|
3747 |
msgstr "Elimina el sufijo de los calendarios."
|
3748 |
|
3749 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3750 |
msgid "Weekdays"
|
3751 |
msgstr "Días de la semana"
|
3752 |
|
@@ -4435,7 +4435,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4435 |
msgstr ""
|
4436 |
|
4437 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4438 |
-
#: app/libraries/main.php:
|
4439 |
msgid "Verified"
|
4440 |
msgstr "Verificado"
|
4441 |
|
@@ -4989,7 +4989,7 @@ msgstr "ej. user@yoursite.com"
|
|
4989 |
msgid "eg. https://webnus.net"
|
4990 |
msgstr "ej. https://webnus.net"
|
4991 |
|
4992 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
4993 |
#: app/skins/single.php:194
|
4994 |
msgid "Other Organizers"
|
4995 |
msgstr "En común"
|
@@ -5028,7 +5028,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5028 |
msgstr ""
|
5029 |
|
5030 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5031 |
-
#: app/libraries/main.php:
|
5032 |
msgid "Ticket"
|
5033 |
msgstr "Ticket"
|
5034 |
|
@@ -5091,8 +5091,8 @@ msgstr "%s Precio"
|
|
5091 |
msgid "Discount"
|
5092 |
msgstr "Descuento"
|
5093 |
|
5094 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5095 |
-
#: app/modules/booking/default.php:
|
5096 |
msgid "Download Invoice"
|
5097 |
msgstr "Descargar factura"
|
5098 |
|
@@ -5120,8 +5120,8 @@ msgid "day"
|
|
5120 |
msgstr "día "
|
5121 |
|
5122 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5123 |
-
#: app/skins/available_spot/tpl.php:
|
5124 |
-
#: app/skins/countdown/tpl.php:
|
5125 |
msgid "days"
|
5126 |
msgstr "días"
|
5127 |
|
@@ -5130,8 +5130,8 @@ msgid "hour"
|
|
5130 |
msgstr "hora"
|
5131 |
|
5132 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5133 |
-
#: app/skins/available_spot/tpl.php:
|
5134 |
-
#: app/skins/countdown/tpl.php:
|
5135 |
msgid "hours"
|
5136 |
msgstr "horas"
|
5137 |
|
@@ -5140,8 +5140,8 @@ msgid "minute"
|
|
5140 |
msgstr "minuto"
|
5141 |
|
5142 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5143 |
-
#: app/skins/available_spot/tpl.php:
|
5144 |
-
#: app/skins/countdown/tpl.php:
|
5145 |
msgid "minutes"
|
5146 |
msgstr "minutos"
|
5147 |
|
@@ -5150,8 +5150,8 @@ msgid "second"
|
|
5150 |
msgstr "segundo"
|
5151 |
|
5152 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5153 |
-
#: app/skins/available_spot/tpl.php:
|
5154 |
-
#: app/skins/countdown/tpl.php:
|
5155 |
msgid "seconds"
|
5156 |
msgstr "segundos"
|
5157 |
|
@@ -5163,7 +5163,7 @@ msgstr "barra lateral MEC"
|
|
5163 |
msgid "Custom sidebar for single and modal page of MEC."
|
5164 |
msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
|
5165 |
|
5166 |
-
#: app/libraries/feed.php:
|
5167 |
msgid "There is no excerpt because this is a protected post."
|
5168 |
msgstr "No hay extracto porque es una entrada protegida."
|
5169 |
|
@@ -5222,31 +5222,31 @@ msgstr "Vista carrusel"
|
|
5222 |
msgid "Slider View"
|
5223 |
msgstr "Vista del rotativo"
|
5224 |
|
5225 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5226 |
msgid "SU"
|
5227 |
msgstr "DO"
|
5228 |
|
5229 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5230 |
msgid "MO"
|
5231 |
msgstr "LU"
|
5232 |
|
5233 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5234 |
msgid "TU"
|
5235 |
msgstr "MA"
|
5236 |
|
5237 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5238 |
msgid "WE"
|
5239 |
msgstr "MI"
|
5240 |
|
5241 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5242 |
msgid "TH"
|
5243 |
msgstr "JU"
|
5244 |
|
5245 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5246 |
msgid "FR"
|
5247 |
msgstr "VI"
|
5248 |
|
5249 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5250 |
msgid "SA"
|
5251 |
msgstr "SA"
|
5252 |
|
@@ -5429,91 +5429,91 @@ msgstr "Has reservado para un evento."
|
|
5429 |
msgid "%s booked %s event."
|
5430 |
msgstr "%s reservado %s evento."
|
5431 |
|
5432 |
-
#: app/libraries/main.php:
|
5433 |
msgid "Taxonomies"
|
5434 |
msgstr "Taxonomías"
|
5435 |
|
5436 |
-
#: app/libraries/main.php:
|
5437 |
msgid "Category Plural Label"
|
5438 |
msgstr "Categoría Etiqueta plural"
|
5439 |
|
5440 |
-
#: app/libraries/main.php:
|
5441 |
msgid "Category Singular Label"
|
5442 |
msgstr "Categoría Etiqueta Singular"
|
5443 |
|
5444 |
-
#: app/libraries/main.php:
|
5445 |
msgid "Label Plural Label"
|
5446 |
msgstr "Etiqueta plural"
|
5447 |
|
5448 |
-
#: app/libraries/main.php:
|
5449 |
msgid "Label Singular Label"
|
5450 |
msgstr "Etiqueta singular de la etiqueta"
|
5451 |
|
5452 |
-
#: app/libraries/main.php:
|
5453 |
msgid "label"
|
5454 |
msgstr "etiqueta"
|
5455 |
|
5456 |
-
#: app/libraries/main.php:
|
5457 |
msgid "Location Plural Label"
|
5458 |
msgstr "Ubicación Etiqueta plural"
|
5459 |
|
5460 |
-
#: app/libraries/main.php:
|
5461 |
msgid "Location Singular Label"
|
5462 |
msgstr "Etiqueta de ubicación en singular"
|
5463 |
|
5464 |
-
#: app/libraries/main.php:
|
5465 |
msgid "Organizer Plural Label"
|
5466 |
msgstr "Etiqueta del organizador en plural"
|
5467 |
|
5468 |
-
#: app/libraries/main.php:
|
5469 |
msgid "Organizer Singular Label"
|
5470 |
msgstr "Etiqueta Singular del Organizador"
|
5471 |
|
5472 |
-
#: app/libraries/main.php:
|
5473 |
msgid "Speaker Plural Label"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: app/libraries/main.php:
|
5477 |
msgid "Speaker Singular Label"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
-
#: app/libraries/main.php:
|
5481 |
msgid "Sunday abbreviation"
|
5482 |
msgstr "Abreviatura de Domingo"
|
5483 |
|
5484 |
-
#: app/libraries/main.php:
|
5485 |
msgid "Monday abbreviation"
|
5486 |
msgstr "Abreviatura de Lunes"
|
5487 |
|
5488 |
-
#: app/libraries/main.php:
|
5489 |
msgid "Tuesday abbreviation"
|
5490 |
msgstr "Abreviatura de Martes"
|
5491 |
|
5492 |
-
#: app/libraries/main.php:
|
5493 |
msgid "Wednesday abbreviation"
|
5494 |
msgstr "Abreviatura de Miércoles "
|
5495 |
|
5496 |
-
#: app/libraries/main.php:
|
5497 |
msgid "Thursday abbreviation"
|
5498 |
msgstr "Abreviatura de Jueves"
|
5499 |
|
5500 |
-
#: app/libraries/main.php:
|
5501 |
msgid "Friday abbreviation"
|
5502 |
msgstr "Abreviatura de Viernes"
|
5503 |
|
5504 |
-
#: app/libraries/main.php:
|
5505 |
msgid "Saturday abbreviation"
|
5506 |
msgstr "Abreviatura de Sábado "
|
5507 |
|
5508 |
-
#: app/libraries/main.php:
|
5509 |
msgid "Others"
|
5510 |
msgstr "Otros"
|
5511 |
|
5512 |
-
#: app/libraries/main.php:
|
5513 |
msgid "Booking Success Message"
|
5514 |
msgstr "Mensaje de reserva correcta"
|
5515 |
|
5516 |
-
#: app/libraries/main.php:
|
5517 |
msgid ""
|
5518 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5519 |
"needed, please check your email."
|
@@ -5521,90 +5521,90 @@ msgstr ""
|
|
5521 |
"Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
|
5522 |
"una verificación, por favor consulta tu correo."
|
5523 |
|
5524 |
-
#: app/libraries/main.php:
|
5525 |
msgid "Register Button"
|
5526 |
msgstr "Botón de registro"
|
5527 |
|
5528 |
-
#: app/libraries/main.php:
|
5529 |
-
#: app/skins/carousel/render.php:
|
5530 |
-
#: app/skins/grid/render.php:
|
5531 |
-
#: app/skins/grid/render.php:
|
5532 |
-
#: app/skins/list/render.php:
|
5533 |
-
#: app/skins/masonry/render.php:
|
5534 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5535 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5536 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5537 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5538 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5539 |
-
#: app/skins/slider/render.php:
|
5540 |
-
#: app/skins/slider/render.php:
|
5541 |
msgid "REGISTER"
|
5542 |
msgstr "REGISTRO"
|
5543 |
|
5544 |
-
#: app/libraries/main.php:
|
5545 |
msgid "View Detail Button"
|
5546 |
msgstr "Ver detalle del botón"
|
5547 |
|
5548 |
-
#: app/libraries/main.php:
|
5549 |
-
#: app/skins/carousel/render.php:
|
5550 |
-
#: app/skins/grid/render.php:
|
5551 |
-
#: app/skins/grid/render.php:
|
5552 |
-
#: app/skins/list/render.php:
|
5553 |
-
#: app/skins/slider/render.php:
|
5554 |
-
#: app/skins/slider/render.php:
|
5555 |
-
#: app/skins/slider/render.php:
|
5556 |
msgid "View Detail"
|
5557 |
msgstr "Ver detalle"
|
5558 |
|
5559 |
-
#: app/libraries/main.php:
|
5560 |
msgid "Event Detail Button"
|
5561 |
msgstr "Botón de detalle del evento"
|
5562 |
|
5563 |
-
#: app/libraries/main.php:
|
5564 |
msgid "Event Detail"
|
5565 |
msgstr "Detalle del evento"
|
5566 |
|
5567 |
-
#: app/libraries/main.php:
|
5568 |
msgid "More Info Link"
|
5569 |
msgstr "Enlace a Más Información"
|
5570 |
|
5571 |
-
#: app/libraries/main.php:
|
5572 |
msgid "Ticket (Singular)"
|
5573 |
msgstr "Entrada (Singular)"
|
5574 |
|
5575 |
-
#: app/libraries/main.php:
|
5576 |
msgid "Tickets (Plural)"
|
5577 |
msgstr "Entradas (Plural)"
|
5578 |
|
5579 |
-
#: app/libraries/main.php:
|
5580 |
msgid "EventON"
|
5581 |
msgstr "EventON"
|
5582 |
|
5583 |
-
#: app/libraries/main.php:
|
5584 |
msgid "The Events Calendar"
|
5585 |
msgstr "The Events Calendar"
|
5586 |
|
5587 |
-
#: app/libraries/main.php:
|
5588 |
msgid "Events Schedule WP Plugin"
|
5589 |
msgstr "Events Schedule WP Plugin"
|
5590 |
|
5591 |
-
#: app/libraries/main.php:
|
5592 |
msgid "Calendarize It"
|
5593 |
msgstr "Ponlo al calendario"
|
5594 |
|
5595 |
-
#: app/libraries/main.php:
|
5596 |
msgid "Confirmed"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: app/libraries/main.php:
|
5600 |
msgid "Rejected"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: app/libraries/main.php:
|
5604 |
msgid "Pending"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
-
#: app/libraries/main.php:
|
5608 |
msgid "Waiting"
|
5609 |
msgstr ""
|
5610 |
|
@@ -5624,27 +5624,27 @@ msgstr "Tu reserva ha sido confirmada."
|
|
5624 |
msgid "A new booking is received."
|
5625 |
msgstr "Nueva reserva recibida."
|
5626 |
|
5627 |
-
#: app/libraries/notifications.php:
|
5628 |
msgid "A new event is added."
|
5629 |
msgstr "Se ha añadido un nuevo evento."
|
5630 |
|
5631 |
-
#: app/libraries/notifications.php:
|
5632 |
msgid "to"
|
5633 |
msgstr "a"
|
5634 |
|
5635 |
-
#: app/libraries/notifications.php:
|
5636 |
msgid "+ Add to Google Calendar"
|
5637 |
msgstr "+ Añadir Google Calendar"
|
5638 |
|
5639 |
-
#: app/libraries/notifications.php:
|
5640 |
msgid "+ iCal export"
|
5641 |
msgstr "Exportación + iCal"
|
5642 |
|
5643 |
-
#: app/libraries/notifications.php:
|
5644 |
msgid "Yes"
|
5645 |
msgstr "Sí"
|
5646 |
|
5647 |
-
#: app/libraries/notifications.php:
|
5648 |
msgid "No"
|
5649 |
msgstr "No"
|
5650 |
|
@@ -5659,7 +5659,7 @@ msgstr "No existe skin controller."
|
|
5659 |
msgid "All of the day"
|
5660 |
msgstr "Todo el día"
|
5661 |
|
5662 |
-
#: app/libraries/skins.php:
|
5663 |
msgid "Ignore month and years"
|
5664 |
msgstr "Ignorar meses y años"
|
5665 |
|
@@ -5703,8 +5703,8 @@ msgstr ""
|
|
5703 |
"formulario."
|
5704 |
|
5705 |
#: app/modules/booking/steps/form.php:162
|
5706 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5707 |
-
#: app/skins/countdown/tpl.php:
|
5708 |
msgid "Next"
|
5709 |
msgstr "Siguiente"
|
5710 |
|
@@ -5830,11 +5830,11 @@ msgid "No event found!"
|
|
5830 |
msgstr "¡No hay eventos!"
|
5831 |
|
5832 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5833 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5834 |
msgid "Load More"
|
5835 |
msgstr "Cargar más"
|
5836 |
|
5837 |
-
#: app/skins/available_spot/tpl.php:
|
5838 |
msgid "Available Spot(s):"
|
5839 |
msgstr "Sitio(s) disponible(s):"
|
5840 |
|
@@ -5844,23 +5844,23 @@ msgstr "Sitio(s) disponible(s):"
|
|
5844 |
msgid "View All"
|
5845 |
msgstr "Ver %s"
|
5846 |
|
5847 |
-
#: app/skins/carousel/render.php:
|
5848 |
-
#: app/skins/countdown/tpl.php:
|
5849 |
-
#: app/skins/list/render.php:
|
5850 |
msgid "EVENT DETAIL"
|
5851 |
msgstr "DETALLE DEL EVENTO"
|
5852 |
|
5853 |
-
#: app/skins/countdown/tpl.php:
|
5854 |
-
#: app/skins/countdown/tpl.php:
|
5855 |
#, php-format
|
5856 |
msgid "%s Upcoming Event"
|
5857 |
msgstr "%s Próximo evento"
|
5858 |
|
5859 |
-
#: app/skins/cover/tpl.php:
|
5860 |
msgid "featured event"
|
5861 |
msgstr "evento destacado"
|
5862 |
|
5863 |
-
#: app/skins/daily_view/render.php:
|
5864 |
msgid "No event"
|
5865 |
msgstr "Sin eventos"
|
5866 |
|
@@ -5873,16 +5873,16 @@ msgid "All"
|
|
5873 |
msgstr "Todo"
|
5874 |
|
5875 |
#: app/skins/monthly_view/calendar.php:66
|
5876 |
-
#: app/skins/monthly_view/calendar.php:
|
5877 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5878 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5879 |
#, php-format
|
5880 |
msgid "Events for %s"
|
5881 |
msgstr "Eventos %s"
|
5882 |
|
5883 |
-
#: app/skins/monthly_view/calendar.php:
|
5884 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5885 |
-
#: app/skins/timetable/render.php:
|
5886 |
msgid "No Events"
|
5887 |
msgstr "Sin eventos"
|
5888 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
|
6 |
"release)\n"
|
7 |
+
"POT-Creation-Date: 2019-05-08 11:42+0430\n"
|
8 |
+
"PO-Revision-Date: 2019-05-08 11:42+0430\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es\n"
|
25 |
msgid "Content"
|
26 |
msgstr "Contenido"
|
27 |
|
28 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
29 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
30 |
msgid "Shortcode"
|
31 |
msgstr "Shortcode"
|
32 |
|
51 |
msgid "Event Color"
|
52 |
msgstr "Color del evento"
|
53 |
|
54 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
55 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
56 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
57 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
281 |
msgid "Event"
|
282 |
msgstr "Evento"
|
283 |
|
284 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
285 |
msgid "Add Event"
|
286 |
msgstr "Nuevo evento"
|
287 |
|
321 |
#: app/features/mec/meta_boxes/search_form.php:362
|
322 |
#: app/features/mec/meta_boxes/search_form.php:416
|
323 |
#: app/features/mec/meta_boxes/search_form.php:477
|
324 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
325 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
326 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
327 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
328 |
msgid "Category"
|
329 |
msgstr "Categoría"
|
330 |
|
331 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
332 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
333 |
+
#: app/libraries/main.php:4363
|
334 |
msgid "Categories"
|
335 |
msgstr "Categorías"
|
336 |
|
405 |
#: app/features/events.php:296 app/features/events.php:2053
|
406 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
407 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
408 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
409 |
#: app/widgets/single.php:103
|
410 |
msgid "Event Cost"
|
411 |
msgstr "Coste del evento"
|
412 |
|
413 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
414 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
415 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
416 |
#: app/skins/single/modern.php:184
|
417 |
msgid "Cost"
|
428 |
#: app/features/events.php:380 app/features/events.php:1237
|
429 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
430 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
431 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
432 |
#: app/modules/booking/steps/form.php:35
|
433 |
msgid "Name"
|
434 |
msgstr "Nombre"
|
440 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
441 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
442 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
443 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
444 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
445 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
446 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
765 |
|
766 |
#: app/features/events.php:683 app/features/events.php:703
|
767 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
768 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
769 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
770 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
771 |
msgid "Speakers"
|
772 |
msgstr ""
|
773 |
|
783 |
msgstr "Enlaces de eventos"
|
784 |
|
785 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
786 |
+
#: app/libraries/main.php:4394
|
787 |
msgid "Event Link"
|
788 |
msgstr "Enlace del evento"
|
789 |
|
801 |
"defecto. Inserta todo el enlace incluyendo http(s)://"
|
802 |
|
803 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
804 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
805 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
806 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
807 |
#: app/widgets/single.php:107
|
835 |
#: app/features/events.php:818 app/features/events.php:910
|
836 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
837 |
#: app/modules/booking/steps/tickets.php:40
|
838 |
+
#: app/skins/available_spot/tpl.php:138
|
839 |
msgid "Unlimited"
|
840 |
msgstr "Ilimitado"
|
841 |
|
844 |
msgstr "100"
|
845 |
|
846 |
#: app/features/events.php:838 app/libraries/book.php:60
|
847 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
848 |
msgid "Tickets"
|
849 |
msgstr "Tickets"
|
850 |
|
914 |
#: app/features/mec/meta_boxes/search_form.php:397
|
915 |
#: app/features/mec/meta_boxes/search_form.php:451
|
916 |
#: app/features/mec/meta_boxes/search_form.php:512
|
917 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
918 |
msgid "Label"
|
919 |
msgstr "Etiqueta"
|
920 |
|
1137 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1138 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1139 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1140 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1141 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1142 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1143 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1158 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1159 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1160 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1161 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1162 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1163 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1164 |
#: app/skins/single/modern.php:21
|
1298 |
msgstr "Eliminar imagen"
|
1299 |
|
1300 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1301 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1302 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1303 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1304 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1305 |
msgid "Labels"
|
1306 |
msgstr "Etiquetas"
|
1307 |
|
1308 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1309 |
#: app/features/mec/meta_boxes/filter.php:138
|
1310 |
msgid "Tags"
|
1311 |
msgstr "Tags"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1992 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
1993 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1994 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
1995 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1996 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1997 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1998 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
1999 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2000 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
2001 |
msgid "Featured"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2005 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
2006 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2007 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2008 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2009 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2010 |
#: app/skins/monthly_view/calendar.php:84
|
2011 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2012 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
2013 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2014 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
2015 |
msgid "Canceled"
|
2016 |
msgstr ""
|
2017 |
|
2035 |
msgid "Event %s"
|
2036 |
msgstr "Evento %s"
|
2037 |
|
2038 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2039 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2040 |
+
#: app/libraries/main.php:4367
|
2041 |
msgid "Locations"
|
2042 |
msgstr "Lugar"
|
2043 |
|
2133 |
msgid "Don't show map in single event page"
|
2134 |
msgstr "No mostrar el mapa en la página del detalle del evento"
|
2135 |
|
2136 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2137 |
#, fuzzy
|
2138 |
#| msgid "Locations"
|
2139 |
msgid "Other Locations"
|
2149 |
"Si quieres, puedes seleccionar organizadores adicionales además del "
|
2150 |
"organizador principal."
|
2151 |
|
2152 |
+
#: app/features/mec.php:144
|
2153 |
msgid ""
|
2154 |
"Activation faild. Please check your purchase code or license type."
|
2155 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: app/features/mec.php:144
|
2159 |
msgid "Troubleshooting"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: app/features/mec.php:179
|
2163 |
msgid ""
|
2164 |
"Your options is not in JSON format. Please insert correct options in this "
|
2165 |
"field and try again."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: app/features/mec.php:183
|
2169 |
msgid "Your options field can not be empty!"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: app/features/mec.php:187
|
2173 |
msgid "Your options imported successfuly."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: app/features/mec.php:274
|
2177 |
#, fuzzy
|
2178 |
#| msgid "Support"
|
2179 |
msgid "MEC - Support"
|
2180 |
msgstr "Soporte"
|
2181 |
|
2182 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2183 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2184 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2185 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2188 |
msgid "Support"
|
2189 |
msgstr "Soporte"
|
2190 |
|
2191 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2192 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2193 |
+
#: app/libraries/main.php:4369
|
2194 |
msgid "Organizers"
|
2195 |
msgstr "Organizadores"
|
2196 |
|
2197 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2198 |
#: app/features/mec/dashboard.php:164
|
2199 |
msgid "Shortcodes"
|
2200 |
msgstr "Shortcodes"
|
2201 |
|
2202 |
+
#: app/features/mec.php:303
|
2203 |
msgid "MEC - Settings"
|
2204 |
msgstr "Ajustes MEC"
|
2205 |
|
2206 |
+
#: app/features/mec.php:304
|
2207 |
#, fuzzy
|
2208 |
#| msgid "MEC - Settings"
|
2209 |
msgid "MEC - Addons"
|
2210 |
msgstr "Ajustes MEC"
|
2211 |
|
2212 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2213 |
msgid "Addons"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: app/features/mec.php:321
|
2217 |
msgid "Add Shortcode"
|
2218 |
msgstr "Nuevo Shortcode"
|
2219 |
|
2220 |
+
#: app/features/mec.php:322
|
2221 |
msgid "Add New Shortcode"
|
2222 |
msgstr "Añadir nuevo Shortcode"
|
2223 |
|
2224 |
+
#: app/features/mec.php:323
|
2225 |
msgid "No shortcodes found!"
|
2226 |
msgstr "No hay shortcodes"
|
2227 |
|
2228 |
+
#: app/features/mec.php:324
|
2229 |
msgid "All Shortcodes"
|
2230 |
msgstr "Todos los Shortcodes"
|
2231 |
|
2232 |
+
#: app/features/mec.php:325
|
2233 |
msgid "Edit shortcodes"
|
2234 |
msgstr "Editar Shortcodes"
|
2235 |
|
2236 |
+
#: app/features/mec.php:326
|
2237 |
msgid "No shortcodes found in Trash!"
|
2238 |
msgstr "No hay shortcodes en la papelera"
|
2239 |
|
2240 |
+
#: app/features/mec.php:373
|
2241 |
msgid "Display Options"
|
2242 |
msgstr "Opciones de pantalla"
|
2243 |
|
2244 |
+
#: app/features/mec.php:374
|
2245 |
msgid "Filter Options"
|
2246 |
msgstr "Opciones de filtros"
|
2247 |
|
2248 |
+
#: app/features/mec.php:376
|
2249 |
msgid "Search Form"
|
2250 |
msgstr "Formulario de Búsqueda"
|
2251 |
|
2253 |
msgid "Display content's images as Popup"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: app/features/mec.php:764
|
2257 |
msgid "Single Event Display Method"
|
2258 |
msgstr "Método de vista para página del evento"
|
2259 |
|
2260 |
+
#: app/features/mec.php:769
|
2261 |
msgid "Separate Window"
|
2262 |
msgstr "Ventana aparte"
|
2263 |
|
2264 |
+
#: app/features/mec.php:770
|
2265 |
msgid "Modal 1"
|
2266 |
msgstr "Modal 1"
|
2267 |
|
3216 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3217 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3218 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3219 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3220 |
+
#: app/libraries/skins.php:829
|
3221 |
msgid "Speaker"
|
3222 |
msgstr ""
|
3223 |
|
3229 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3230 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3231 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3232 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3233 |
#, fuzzy
|
3234 |
#| msgid "Tags"
|
3235 |
msgid "Tag"
|
3746 |
msgid "Remove suffix from calendars"
|
3747 |
msgstr "Elimina el sufijo de los calendarios."
|
3748 |
|
3749 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3750 |
msgid "Weekdays"
|
3751 |
msgstr "Días de la semana"
|
3752 |
|
4435 |
msgstr ""
|
4436 |
|
4437 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4438 |
+
#: app/libraries/main.php:4558
|
4439 |
msgid "Verified"
|
4440 |
msgstr "Verificado"
|
4441 |
|
4989 |
msgid "eg. https://webnus.net"
|
4990 |
msgstr "ej. https://webnus.net"
|
4991 |
|
4992 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
4993 |
#: app/skins/single.php:194
|
4994 |
msgid "Other Organizers"
|
4995 |
msgstr "En común"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5031 |
+
#: app/libraries/main.php:4398
|
5032 |
msgid "Ticket"
|
5033 |
msgstr "Ticket"
|
5034 |
|
5091 |
msgid "Discount"
|
5092 |
msgstr "Descuento"
|
5093 |
|
5094 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5095 |
+
#: app/modules/booking/default.php:381
|
5096 |
msgid "Download Invoice"
|
5097 |
msgstr "Descargar factura"
|
5098 |
|
5120 |
msgstr "día "
|
5121 |
|
5122 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5123 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5124 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5125 |
msgid "days"
|
5126 |
msgstr "días"
|
5127 |
|
5130 |
msgstr "hora"
|
5131 |
|
5132 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5133 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5134 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5135 |
msgid "hours"
|
5136 |
msgstr "horas"
|
5137 |
|
5140 |
msgstr "minuto"
|
5141 |
|
5142 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5143 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5144 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5145 |
msgid "minutes"
|
5146 |
msgstr "minutos"
|
5147 |
|
5150 |
msgstr "segundo"
|
5151 |
|
5152 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5153 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5154 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5155 |
msgid "seconds"
|
5156 |
msgstr "segundos"
|
5157 |
|
5163 |
msgid "Custom sidebar for single and modal page of MEC."
|
5164 |
msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
|
5165 |
|
5166 |
+
#: app/libraries/feed.php:83
|
5167 |
msgid "There is no excerpt because this is a protected post."
|
5168 |
msgstr "No hay extracto porque es una entrada protegida."
|
5169 |
|
5222 |
msgid "Slider View"
|
5223 |
msgstr "Vista del rotativo"
|
5224 |
|
5225 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5226 |
msgid "SU"
|
5227 |
msgstr "DO"
|
5228 |
|
5229 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5230 |
msgid "MO"
|
5231 |
msgstr "LU"
|
5232 |
|
5233 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5234 |
msgid "TU"
|
5235 |
msgstr "MA"
|
5236 |
|
5237 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5238 |
msgid "WE"
|
5239 |
msgstr "MI"
|
5240 |
|
5241 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5242 |
msgid "TH"
|
5243 |
msgstr "JU"
|
5244 |
|
5245 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5246 |
msgid "FR"
|
5247 |
msgstr "VI"
|
5248 |
|
5249 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5250 |
msgid "SA"
|
5251 |
msgstr "SA"
|
5252 |
|
5429 |
msgid "%s booked %s event."
|
5430 |
msgstr "%s reservado %s evento."
|
5431 |
|
5432 |
+
#: app/libraries/main.php:4361
|
5433 |
msgid "Taxonomies"
|
5434 |
msgstr "Taxonomías"
|
5435 |
|
5436 |
+
#: app/libraries/main.php:4363
|
5437 |
msgid "Category Plural Label"
|
5438 |
msgstr "Categoría Etiqueta plural"
|
5439 |
|
5440 |
+
#: app/libraries/main.php:4364
|
5441 |
msgid "Category Singular Label"
|
5442 |
msgstr "Categoría Etiqueta Singular"
|
5443 |
|
5444 |
+
#: app/libraries/main.php:4365
|
5445 |
msgid "Label Plural Label"
|
5446 |
msgstr "Etiqueta plural"
|
5447 |
|
5448 |
+
#: app/libraries/main.php:4366
|
5449 |
msgid "Label Singular Label"
|
5450 |
msgstr "Etiqueta singular de la etiqueta"
|
5451 |
|
5452 |
+
#: app/libraries/main.php:4366
|
5453 |
msgid "label"
|
5454 |
msgstr "etiqueta"
|
5455 |
|
5456 |
+
#: app/libraries/main.php:4367
|
5457 |
msgid "Location Plural Label"
|
5458 |
msgstr "Ubicación Etiqueta plural"
|
5459 |
|
5460 |
+
#: app/libraries/main.php:4368
|
5461 |
msgid "Location Singular Label"
|
5462 |
msgstr "Etiqueta de ubicación en singular"
|
5463 |
|
5464 |
+
#: app/libraries/main.php:4369
|
5465 |
msgid "Organizer Plural Label"
|
5466 |
msgstr "Etiqueta del organizador en plural"
|
5467 |
|
5468 |
+
#: app/libraries/main.php:4370
|
5469 |
msgid "Organizer Singular Label"
|
5470 |
msgstr "Etiqueta Singular del Organizador"
|
5471 |
|
5472 |
+
#: app/libraries/main.php:4371
|
5473 |
msgid "Speaker Plural Label"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: app/libraries/main.php:4372
|
5477 |
msgid "Speaker Singular Label"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
+
#: app/libraries/main.php:4378
|
5481 |
msgid "Sunday abbreviation"
|
5482 |
msgstr "Abreviatura de Domingo"
|
5483 |
|
5484 |
+
#: app/libraries/main.php:4379
|
5485 |
msgid "Monday abbreviation"
|
5486 |
msgstr "Abreviatura de Lunes"
|
5487 |
|
5488 |
+
#: app/libraries/main.php:4380
|
5489 |
msgid "Tuesday abbreviation"
|
5490 |
msgstr "Abreviatura de Martes"
|
5491 |
|
5492 |
+
#: app/libraries/main.php:4381
|
5493 |
msgid "Wednesday abbreviation"
|
5494 |
msgstr "Abreviatura de Miércoles "
|
5495 |
|
5496 |
+
#: app/libraries/main.php:4382
|
5497 |
msgid "Thursday abbreviation"
|
5498 |
msgstr "Abreviatura de Jueves"
|
5499 |
|
5500 |
+
#: app/libraries/main.php:4383
|
5501 |
msgid "Friday abbreviation"
|
5502 |
msgstr "Abreviatura de Viernes"
|
5503 |
|
5504 |
+
#: app/libraries/main.php:4384
|
5505 |
msgid "Saturday abbreviation"
|
5506 |
msgstr "Abreviatura de Sábado "
|
5507 |
|
5508 |
+
#: app/libraries/main.php:4388
|
5509 |
msgid "Others"
|
5510 |
msgstr "Otros"
|
5511 |
|
5512 |
+
#: app/libraries/main.php:4390
|
5513 |
msgid "Booking Success Message"
|
5514 |
msgstr "Mensaje de reserva correcta"
|
5515 |
|
5516 |
+
#: app/libraries/main.php:4390
|
5517 |
msgid ""
|
5518 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5519 |
"needed, please check your email."
|
5521 |
"Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
|
5522 |
"una verificación, por favor consulta tu correo."
|
5523 |
|
5524 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5525 |
msgid "Register Button"
|
5526 |
msgstr "Botón de registro"
|
5527 |
|
5528 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5529 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5530 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5531 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5532 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5533 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5534 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5535 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5536 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5537 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5538 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5539 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5540 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5541 |
msgid "REGISTER"
|
5542 |
msgstr "REGISTRO"
|
5543 |
|
5544 |
+
#: app/libraries/main.php:4392
|
5545 |
msgid "View Detail Button"
|
5546 |
msgstr "Ver detalle del botón"
|
5547 |
|
5548 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5549 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5550 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5551 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5552 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5553 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5554 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5555 |
+
#: app/skins/slider/render.php:305
|
5556 |
msgid "View Detail"
|
5557 |
msgstr "Ver detalle"
|
5558 |
|
5559 |
+
#: app/libraries/main.php:4393
|
5560 |
msgid "Event Detail Button"
|
5561 |
msgstr "Botón de detalle del evento"
|
5562 |
|
5563 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5564 |
msgid "Event Detail"
|
5565 |
msgstr "Detalle del evento"
|
5566 |
|
5567 |
+
#: app/libraries/main.php:4395
|
5568 |
msgid "More Info Link"
|
5569 |
msgstr "Enlace a Más Información"
|
5570 |
|
5571 |
+
#: app/libraries/main.php:4398
|
5572 |
msgid "Ticket (Singular)"
|
5573 |
msgstr "Entrada (Singular)"
|
5574 |
|
5575 |
+
#: app/libraries/main.php:4399
|
5576 |
msgid "Tickets (Plural)"
|
5577 |
msgstr "Entradas (Plural)"
|
5578 |
|
5579 |
+
#: app/libraries/main.php:4466
|
5580 |
msgid "EventON"
|
5581 |
msgstr "EventON"
|
5582 |
|
5583 |
+
#: app/libraries/main.php:4467
|
5584 |
msgid "The Events Calendar"
|
5585 |
msgstr "The Events Calendar"
|
5586 |
|
5587 |
+
#: app/libraries/main.php:4468
|
5588 |
msgid "Events Schedule WP Plugin"
|
5589 |
msgstr "Events Schedule WP Plugin"
|
5590 |
|
5591 |
+
#: app/libraries/main.php:4469
|
5592 |
msgid "Calendarize It"
|
5593 |
msgstr "Ponlo al calendario"
|
5594 |
|
5595 |
+
#: app/libraries/main.php:4543
|
5596 |
msgid "Confirmed"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: app/libraries/main.php:4544
|
5600 |
msgid "Rejected"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: app/libraries/main.php:4545
|
5604 |
msgid "Pending"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: app/libraries/main.php:4560
|
5608 |
msgid "Waiting"
|
5609 |
msgstr ""
|
5610 |
|
5624 |
msgid "A new booking is received."
|
5625 |
msgstr "Nueva reserva recibida."
|
5626 |
|
5627 |
+
#: app/libraries/notifications.php:338
|
5628 |
msgid "A new event is added."
|
5629 |
msgstr "Se ha añadido un nuevo evento."
|
5630 |
|
5631 |
+
#: app/libraries/notifications.php:509
|
5632 |
msgid "to"
|
5633 |
msgstr "a"
|
5634 |
|
5635 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5636 |
msgid "+ Add to Google Calendar"
|
5637 |
msgstr "+ Añadir Google Calendar"
|
5638 |
|
5639 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5640 |
msgid "+ iCal export"
|
5641 |
msgstr "Exportación + iCal"
|
5642 |
|
5643 |
+
#: app/libraries/notifications.php:582
|
5644 |
msgid "Yes"
|
5645 |
msgstr "Sí"
|
5646 |
|
5647 |
+
#: app/libraries/notifications.php:582
|
5648 |
msgid "No"
|
5649 |
msgstr "No"
|
5650 |
|
5659 |
msgid "All of the day"
|
5660 |
msgstr "Todo el día"
|
5661 |
|
5662 |
+
#: app/libraries/skins.php:902
|
5663 |
msgid "Ignore month and years"
|
5664 |
msgstr "Ignorar meses y años"
|
5665 |
|
5703 |
"formulario."
|
5704 |
|
5705 |
#: app/modules/booking/steps/form.php:162
|
5706 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5707 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5708 |
msgid "Next"
|
5709 |
msgstr "Siguiente"
|
5710 |
|
5830 |
msgstr "¡No hay eventos!"
|
5831 |
|
5832 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5833 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5834 |
msgid "Load More"
|
5835 |
msgstr "Cargar más"
|
5836 |
|
5837 |
+
#: app/skins/available_spot/tpl.php:138
|
5838 |
msgid "Available Spot(s):"
|
5839 |
msgstr "Sitio(s) disponible(s):"
|
5840 |
|
5844 |
msgid "View All"
|
5845 |
msgstr "Ver %s"
|
5846 |
|
5847 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5848 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5849 |
+
#: app/skins/list/render.php:119
|
5850 |
msgid "EVENT DETAIL"
|
5851 |
msgstr "DETALLE DEL EVENTO"
|
5852 |
|
5853 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5854 |
+
#: app/skins/countdown/tpl.php:206
|
5855 |
#, php-format
|
5856 |
msgid "%s Upcoming Event"
|
5857 |
msgstr "%s Próximo evento"
|
5858 |
|
5859 |
+
#: app/skins/cover/tpl.php:81
|
5860 |
msgid "featured event"
|
5861 |
msgstr "evento destacado"
|
5862 |
|
5863 |
+
#: app/skins/daily_view/render.php:78
|
5864 |
msgid "No event"
|
5865 |
msgstr "Sin eventos"
|
5866 |
|
5873 |
msgstr "Todo"
|
5874 |
|
5875 |
#: app/skins/monthly_view/calendar.php:66
|
5876 |
+
#: app/skins/monthly_view/calendar.php:152
|
5877 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5878 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5879 |
#, php-format
|
5880 |
msgid "Events for %s"
|
5881 |
msgstr "Eventos %s"
|
5882 |
|
5883 |
+
#: app/skins/monthly_view/calendar.php:154
|
5884 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5885 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5886 |
msgid "No Events"
|
5887 |
msgstr "Sin eventos"
|
5888 |
|
languages/modern-events-calendar-lite-fr_FR.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-fr_FR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
@@ -30,8 +30,8 @@ msgstr "Modern Events Calendar"
|
|
30 |
msgid "Content"
|
31 |
msgstr "Contenu"
|
32 |
|
33 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
34 |
-
#: app/features/mec.php:
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Shortcode"
|
37 |
|
@@ -62,7 +62,7 @@ msgstr "Tout sélectionner"
|
|
62 |
msgid "Event Color"
|
63 |
msgstr "Couleur de l'événement"
|
64 |
|
65 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
66 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
67 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
68 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -267,7 +267,7 @@ msgstr "Évenements"
|
|
267 |
msgid "Event"
|
268 |
msgstr "Événement"
|
269 |
|
270 |
-
#: app/features/events.php:134 app/features/mec.php:
|
271 |
msgid "Add Event"
|
272 |
msgstr "Ajouter un événement"
|
273 |
|
@@ -307,16 +307,16 @@ msgstr "Aucun événement trouvé dans la corbeille !"
|
|
307 |
#: app/features/mec/meta_boxes/search_form.php:362
|
308 |
#: app/features/mec/meta_boxes/search_form.php:416
|
309 |
#: app/features/mec/meta_boxes/search_form.php:477
|
310 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
311 |
-
#: app/libraries/skins.php:
|
312 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
313 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
314 |
msgid "Category"
|
315 |
msgstr "Catégorie"
|
316 |
|
317 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
318 |
-
#: app/features/mec.php:
|
319 |
-
#: app/libraries/main.php:
|
320 |
msgid "Categories"
|
321 |
msgstr "Catégories"
|
322 |
|
@@ -391,13 +391,13 @@ msgstr "Détails"
|
|
391 |
#: app/features/events.php:296 app/features/events.php:2053
|
392 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
393 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
394 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
395 |
#: app/widgets/single.php:103
|
396 |
msgid "Event Cost"
|
397 |
msgstr "Tarif de l'événement"
|
398 |
|
399 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
400 |
-
#: app/libraries/main.php:
|
401 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
402 |
#: app/skins/single/modern.php:184
|
403 |
msgid "Cost"
|
@@ -414,7 +414,7 @@ msgstr "Coordonnées de l'Invité"
|
|
414 |
#: app/features/events.php:380 app/features/events.php:1237
|
415 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
417 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
418 |
#: app/modules/booking/steps/form.php:35
|
419 |
msgid "Name"
|
420 |
msgstr "Nom"
|
@@ -426,7 +426,7 @@ msgstr "Nom"
|
|
426 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
427 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
428 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
429 |
-
#: app/libraries/notifications.php:
|
430 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
431 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -754,9 +754,9 @@ msgstr "Description"
|
|
754 |
|
755 |
#: app/features/events.php:683 app/features/events.php:703
|
756 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
757 |
-
#: app/features/mec.php:
|
758 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
759 |
-
#: app/libraries/main.php:
|
760 |
msgid "Speakers"
|
761 |
msgstr ""
|
762 |
|
@@ -772,7 +772,7 @@ msgid "Event Links"
|
|
772 |
msgstr "Liens de l'évenements"
|
773 |
|
774 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
775 |
-
#: app/libraries/main.php:
|
776 |
msgid "Event Link"
|
777 |
msgstr "Lien de l'événement"
|
778 |
|
@@ -788,7 +788,7 @@ msgid ""
|
|
788 |
msgstr "Lien principal. Affiché sur la page de l'événement"
|
789 |
|
790 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
791 |
-
#: app/libraries/main.php:
|
792 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
793 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
794 |
#: app/widgets/single.php:107
|
@@ -820,7 +820,7 @@ msgstr "Nombre limite de réservation"
|
|
820 |
#: app/features/events.php:818 app/features/events.php:910
|
821 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
822 |
#: app/modules/booking/steps/tickets.php:40
|
823 |
-
#: app/skins/available_spot/tpl.php:
|
824 |
msgid "Unlimited"
|
825 |
msgstr "Illimité"
|
826 |
|
@@ -829,7 +829,7 @@ msgid "100"
|
|
829 |
msgstr "100"
|
830 |
|
831 |
#: app/features/events.php:838 app/libraries/book.php:60
|
832 |
-
#: app/libraries/main.php:
|
833 |
msgid "Tickets"
|
834 |
msgstr "Billets"
|
835 |
|
@@ -897,7 +897,7 @@ msgstr "Libellé du prix"
|
|
897 |
#: app/features/mec/meta_boxes/search_form.php:397
|
898 |
#: app/features/mec/meta_boxes/search_form.php:451
|
899 |
#: app/features/mec/meta_boxes/search_form.php:512
|
900 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
901 |
msgid "Label"
|
902 |
msgstr "Label"
|
903 |
|
@@ -1124,7 +1124,7 @@ msgstr "organisateurs"
|
|
1124 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1125 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1126 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1127 |
-
#: app/libraries/main.php:
|
1128 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1129 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1130 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1145,7 +1145,7 @@ msgstr "Lieu"
|
|
1145 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1146 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1147 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1148 |
-
#: app/libraries/main.php:
|
1149 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1150 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1151 |
#: app/skins/single/modern.php:21
|
@@ -1285,14 +1285,14 @@ msgid "Remove Image"
|
|
1285 |
msgstr "Supprimer l'image"
|
1286 |
|
1287 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1288 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1289 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1290 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1291 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1292 |
msgid "Labels"
|
1293 |
msgstr "Labels"
|
1294 |
|
1295 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1296 |
#: app/features/mec/meta_boxes/filter.php:138
|
1297 |
msgid "Tags"
|
1298 |
msgstr "Étiquettes"
|
@@ -2008,31 +2008,31 @@ msgid "Normal"
|
|
2008 |
msgstr ""
|
2009 |
|
2010 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2011 |
-
#: app/skins/agenda/render.php:
|
2012 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2013 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
2014 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2015 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2016 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2017 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2018 |
-
#: app/skins/timetable/render.php:
|
2019 |
-
#: app/skins/weekly_view/render.php:
|
2020 |
#, fuzzy
|
2021 |
#| msgid "Featured Image"
|
2022 |
msgid "Featured"
|
2023 |
msgstr "Image Principale"
|
2024 |
|
2025 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2026 |
-
#: app/libraries/main.php:
|
2027 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2028 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2029 |
-
#: app/skins/daily_view/render.php:
|
2030 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2031 |
#: app/skins/monthly_view/calendar.php:84
|
2032 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2033 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2034 |
-
#: app/skins/timetable/render.php:
|
2035 |
-
#: app/skins/weekly_view/render.php:
|
2036 |
msgid "Canceled"
|
2037 |
msgstr "Annulé"
|
2038 |
|
@@ -2056,9 +2056,9 @@ msgstr "Identifiant de la catégorie."
|
|
2056 |
msgid "Event %s"
|
2057 |
msgstr "%s événement"
|
2058 |
|
2059 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2060 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2061 |
-
#: app/libraries/main.php:
|
2062 |
msgid "Locations"
|
2063 |
msgstr "Lieux"
|
2064 |
|
@@ -2154,7 +2154,7 @@ msgstr "Choisir une image"
|
|
2154 |
msgid "Don't show map in single event page"
|
2155 |
msgstr "Ne pas afficher de carte pour cet événement"
|
2156 |
|
2157 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2158 |
#, fuzzy
|
2159 |
#| msgid "Search Locations"
|
2160 |
msgid "Other Locations"
|
@@ -2170,41 +2170,41 @@ msgstr ""
|
|
2170 |
"Vous pouvez sélectionner des organisateurs supplémentaires en plus de "
|
2171 |
"l'organisateur principal si vous le souhaitez."
|
2172 |
|
2173 |
-
#: app/features/mec.php:
|
2174 |
msgid ""
|
2175 |
"Activation faild. Please check your purchase code or license type."
|
2176 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: app/features/mec.php:
|
2180 |
msgid "Troubleshooting"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: app/features/mec.php:
|
2184 |
msgid ""
|
2185 |
"Your options is not in JSON format. Please insert correct options in this "
|
2186 |
"field and try again."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: app/features/mec.php:
|
2190 |
#, fuzzy
|
2191 |
#| msgid "Your booking cannot verify!"
|
2192 |
msgid "Your options field can not be empty!"
|
2193 |
msgstr "Votre réservation ne peut pas être vérifiée!"
|
2194 |
|
2195 |
-
#: app/features/mec.php:
|
2196 |
#, fuzzy
|
2197 |
#| msgid "Your booking successfully verified."
|
2198 |
msgid "Your options imported successfuly."
|
2199 |
msgstr "Votre réservation est vérifiée avec succès."
|
2200 |
|
2201 |
-
#: app/features/mec.php:
|
2202 |
#, fuzzy
|
2203 |
#| msgid "Support"
|
2204 |
msgid "MEC - Support"
|
2205 |
msgstr "Aide"
|
2206 |
|
2207 |
-
#: app/features/mec.php:
|
2208 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2209 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2210 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2213,64 +2213,64 @@ msgstr "Aide"
|
|
2213 |
msgid "Support"
|
2214 |
msgstr "Aide"
|
2215 |
|
2216 |
-
#: app/features/mec.php:
|
2217 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2218 |
-
#: app/libraries/main.php:
|
2219 |
msgid "Organizers"
|
2220 |
msgstr "Organisateurs"
|
2221 |
|
2222 |
-
#: app/features/mec.php:
|
2223 |
#: app/features/mec/dashboard.php:164
|
2224 |
msgid "Shortcodes"
|
2225 |
msgstr "Shortcodes"
|
2226 |
|
2227 |
-
#: app/features/mec.php:
|
2228 |
msgid "MEC - Settings"
|
2229 |
msgstr "Agenda - Paramètres"
|
2230 |
|
2231 |
-
#: app/features/mec.php:
|
2232 |
#, fuzzy
|
2233 |
#| msgid "MEC - Settings"
|
2234 |
msgid "MEC - Addons"
|
2235 |
msgstr "Agenda - Paramètres"
|
2236 |
|
2237 |
-
#: app/features/mec.php:
|
2238 |
msgid "Addons"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: app/features/mec.php:
|
2242 |
msgid "Add Shortcode"
|
2243 |
msgstr "Ajouter un Shortcode"
|
2244 |
|
2245 |
-
#: app/features/mec.php:
|
2246 |
msgid "Add New Shortcode"
|
2247 |
msgstr "Ajouter un nouveau Shortcode"
|
2248 |
|
2249 |
-
#: app/features/mec.php:
|
2250 |
msgid "No shortcodes found!"
|
2251 |
msgstr "Aucun shortcode trouvé !"
|
2252 |
|
2253 |
-
#: app/features/mec.php:
|
2254 |
msgid "All Shortcodes"
|
2255 |
msgstr "Tous les Shortcode"
|
2256 |
|
2257 |
-
#: app/features/mec.php:
|
2258 |
msgid "Edit shortcodes"
|
2259 |
msgstr "Modifier les shortcodes"
|
2260 |
|
2261 |
-
#: app/features/mec.php:
|
2262 |
msgid "No shortcodes found in Trash!"
|
2263 |
msgstr "Pas de shortcode dans la corbeille"
|
2264 |
|
2265 |
-
#: app/features/mec.php:
|
2266 |
msgid "Display Options"
|
2267 |
msgstr "Options d'affichage"
|
2268 |
|
2269 |
-
#: app/features/mec.php:
|
2270 |
msgid "Filter Options"
|
2271 |
msgstr "Options des filtres"
|
2272 |
|
2273 |
-
#: app/features/mec.php:
|
2274 |
msgid "Search Form"
|
2275 |
msgstr "Formulaire de Recherche"
|
2276 |
|
@@ -2278,15 +2278,15 @@ msgstr "Formulaire de Recherche"
|
|
2278 |
msgid "Display content's images as Popup"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: app/features/mec.php:
|
2282 |
msgid "Single Event Display Method"
|
2283 |
msgstr "Méthode d'affichage"
|
2284 |
|
2285 |
-
#: app/features/mec.php:
|
2286 |
msgid "Separate Window"
|
2287 |
msgstr "Page séparé"
|
2288 |
|
2289 |
-
#: app/features/mec.php:
|
2290 |
msgid "Modal 1"
|
2291 |
msgstr "Pop-up"
|
2292 |
|
@@ -3249,8 +3249,8 @@ msgstr "Désactivé"
|
|
3249 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3250 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3251 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3252 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3253 |
-
#: app/libraries/skins.php:
|
3254 |
msgid "Speaker"
|
3255 |
msgstr ""
|
3256 |
|
@@ -3262,7 +3262,7 @@ msgstr ""
|
|
3262 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3263 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3264 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3265 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3266 |
#, fuzzy
|
3267 |
#| msgid "Tags"
|
3268 |
msgid "Tag"
|
@@ -3780,7 +3780,7 @@ msgstr "Retiré les suffixes de dates "
|
|
3780 |
msgid "Remove suffix from calendars"
|
3781 |
msgstr "Retirer les suffixes de date des Calendriers"
|
3782 |
|
3783 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3784 |
msgid "Weekdays"
|
3785 |
msgstr "Jours de la Semaine"
|
3786 |
|
@@ -4481,7 +4481,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4481 |
msgstr ""
|
4482 |
|
4483 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4484 |
-
#: app/libraries/main.php:
|
4485 |
msgid "Verified"
|
4486 |
msgstr "Vérifié"
|
4487 |
|
@@ -5052,7 +5052,7 @@ msgstr "ex : votre@surnom.com"
|
|
5052 |
msgid "eg. https://webnus.net"
|
5053 |
msgstr "http://webnus.biz"
|
5054 |
|
5055 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
5056 |
#: app/skins/single.php:194
|
5057 |
msgid "Other Organizers"
|
5058 |
msgstr "Autres organisateurs"
|
@@ -5094,7 +5094,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5094 |
msgstr ""
|
5095 |
|
5096 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5097 |
-
#: app/libraries/main.php:
|
5098 |
msgid "Ticket"
|
5099 |
msgstr "Billets"
|
5100 |
|
@@ -5173,8 +5173,8 @@ msgstr ""
|
|
5173 |
msgid "Discount"
|
5174 |
msgstr "Réduction"
|
5175 |
|
5176 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5177 |
-
#: app/modules/booking/default.php:
|
5178 |
msgid "Download Invoice"
|
5179 |
msgstr ""
|
5180 |
|
@@ -5202,8 +5202,8 @@ msgid "day"
|
|
5202 |
msgstr "jour"
|
5203 |
|
5204 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5205 |
-
#: app/skins/available_spot/tpl.php:
|
5206 |
-
#: app/skins/countdown/tpl.php:
|
5207 |
msgid "days"
|
5208 |
msgstr "jours"
|
5209 |
|
@@ -5212,8 +5212,8 @@ msgid "hour"
|
|
5212 |
msgstr "heure"
|
5213 |
|
5214 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5215 |
-
#: app/skins/available_spot/tpl.php:
|
5216 |
-
#: app/skins/countdown/tpl.php:
|
5217 |
msgid "hours"
|
5218 |
msgstr "heures"
|
5219 |
|
@@ -5222,8 +5222,8 @@ msgid "minute"
|
|
5222 |
msgstr "minute"
|
5223 |
|
5224 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5225 |
-
#: app/skins/available_spot/tpl.php:
|
5226 |
-
#: app/skins/countdown/tpl.php:
|
5227 |
msgid "minutes"
|
5228 |
msgstr "minutes"
|
5229 |
|
@@ -5232,8 +5232,8 @@ msgid "second"
|
|
5232 |
msgstr "seconde"
|
5233 |
|
5234 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5235 |
-
#: app/skins/available_spot/tpl.php:
|
5236 |
-
#: app/skins/countdown/tpl.php:
|
5237 |
msgid "seconds"
|
5238 |
msgstr "secondes"
|
5239 |
|
@@ -5247,7 +5247,7 @@ msgstr ""
|
|
5247 |
"Barre latérale personnalisée pour les pages d'événement et les pop-ups "
|
5248 |
"modales de M.E.C. ."
|
5249 |
|
5250 |
-
#: app/libraries/feed.php:
|
5251 |
msgid "There is no excerpt because this is a protected post."
|
5252 |
msgstr "Il n’y a aucun extrait car ce post est protégé."
|
5253 |
|
@@ -5306,31 +5306,31 @@ msgstr "Vue Caroussel"
|
|
5306 |
msgid "Slider View"
|
5307 |
msgstr "Vue sur Slider"
|
5308 |
|
5309 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5310 |
msgid "SU"
|
5311 |
msgstr "DIM."
|
5312 |
|
5313 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5314 |
msgid "MO"
|
5315 |
msgstr "LUN."
|
5316 |
|
5317 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5318 |
msgid "TU"
|
5319 |
msgstr "MAR."
|
5320 |
|
5321 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5322 |
msgid "WE"
|
5323 |
msgstr "MER."
|
5324 |
|
5325 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5326 |
msgid "TH"
|
5327 |
msgstr "JEU."
|
5328 |
|
5329 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5330 |
msgid "FR"
|
5331 |
msgstr "VEN."
|
5332 |
|
5333 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5334 |
msgid "SA"
|
5335 |
msgstr "SAM."
|
5336 |
|
@@ -5515,95 +5515,95 @@ msgstr "Réserver un Évènements"
|
|
5515 |
msgid "%s booked %s event."
|
5516 |
msgstr "%s réservé %s événement"
|
5517 |
|
5518 |
-
#: app/libraries/main.php:
|
5519 |
msgid "Taxonomies"
|
5520 |
msgstr "Taxonomies"
|
5521 |
|
5522 |
-
#: app/libraries/main.php:
|
5523 |
msgid "Category Plural Label"
|
5524 |
msgstr "Catégorie au pluriel"
|
5525 |
|
5526 |
-
#: app/libraries/main.php:
|
5527 |
msgid "Category Singular Label"
|
5528 |
msgstr "Catégorie au singulier"
|
5529 |
|
5530 |
-
#: app/libraries/main.php:
|
5531 |
msgid "Label Plural Label"
|
5532 |
msgstr "Étiquettes au pluriel"
|
5533 |
|
5534 |
-
#: app/libraries/main.php:
|
5535 |
msgid "Label Singular Label"
|
5536 |
msgstr "Étiquettes au singulier"
|
5537 |
|
5538 |
-
#: app/libraries/main.php:
|
5539 |
msgid "label"
|
5540 |
msgstr "texte"
|
5541 |
|
5542 |
-
#: app/libraries/main.php:
|
5543 |
msgid "Location Plural Label"
|
5544 |
msgstr "Lieu au pluriel"
|
5545 |
|
5546 |
-
#: app/libraries/main.php:
|
5547 |
msgid "Location Singular Label"
|
5548 |
msgstr "Lieu au singulier"
|
5549 |
|
5550 |
-
#: app/libraries/main.php:
|
5551 |
msgid "Organizer Plural Label"
|
5552 |
msgstr "Organisateur au pluriel"
|
5553 |
|
5554 |
-
#: app/libraries/main.php:
|
5555 |
msgid "Organizer Singular Label"
|
5556 |
msgstr "Organisateur au singulier"
|
5557 |
|
5558 |
-
#: app/libraries/main.php:
|
5559 |
#, fuzzy
|
5560 |
#| msgid "Label Plural Label"
|
5561 |
msgid "Speaker Plural Label"
|
5562 |
msgstr "Étiquettes au pluriel"
|
5563 |
|
5564 |
-
#: app/libraries/main.php:
|
5565 |
#, fuzzy
|
5566 |
#| msgid "Label Singular Label"
|
5567 |
msgid "Speaker Singular Label"
|
5568 |
msgstr "Étiquettes au singulier"
|
5569 |
|
5570 |
-
#: app/libraries/main.php:
|
5571 |
msgid "Sunday abbreviation"
|
5572 |
msgstr "Abréviation de Dimanche"
|
5573 |
|
5574 |
-
#: app/libraries/main.php:
|
5575 |
msgid "Monday abbreviation"
|
5576 |
msgstr "Abréviation de Lundi"
|
5577 |
|
5578 |
-
#: app/libraries/main.php:
|
5579 |
msgid "Tuesday abbreviation"
|
5580 |
msgstr "Abréviation de Mardi"
|
5581 |
|
5582 |
-
#: app/libraries/main.php:
|
5583 |
msgid "Wednesday abbreviation"
|
5584 |
msgstr "Abréviation de Mercredi"
|
5585 |
|
5586 |
-
#: app/libraries/main.php:
|
5587 |
msgid "Thursday abbreviation"
|
5588 |
msgstr "Abréviation de Jeudi"
|
5589 |
|
5590 |
-
#: app/libraries/main.php:
|
5591 |
msgid "Friday abbreviation"
|
5592 |
msgstr "Abréviation de Vendredi"
|
5593 |
|
5594 |
-
#: app/libraries/main.php:
|
5595 |
msgid "Saturday abbreviation"
|
5596 |
msgstr "Abréviation de Samedi"
|
5597 |
|
5598 |
-
#: app/libraries/main.php:
|
5599 |
msgid "Others"
|
5600 |
msgstr "Autres"
|
5601 |
|
5602 |
-
#: app/libraries/main.php:
|
5603 |
msgid "Booking Success Message"
|
5604 |
msgstr "Message de succès de réservation"
|
5605 |
|
5606 |
-
#: app/libraries/main.php:
|
5607 |
msgid ""
|
5608 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5609 |
"needed, please check your email."
|
@@ -5611,90 +5611,90 @@ msgstr ""
|
|
5611 |
"Merci pour votre réservation. Vos billets sont réservés, cependant une "
|
5612 |
"vérification peut être nécessaires, contrôlez votre boite mail."
|
5613 |
|
5614 |
-
#: app/libraries/main.php:
|
5615 |
msgid "Register Button"
|
5616 |
msgstr "Boutons d'inscription"
|
5617 |
|
5618 |
-
#: app/libraries/main.php:
|
5619 |
-
#: app/skins/carousel/render.php:
|
5620 |
-
#: app/skins/grid/render.php:
|
5621 |
-
#: app/skins/grid/render.php:
|
5622 |
-
#: app/skins/list/render.php:
|
5623 |
-
#: app/skins/masonry/render.php:
|
5624 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5625 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5626 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5627 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5628 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5629 |
-
#: app/skins/slider/render.php:
|
5630 |
-
#: app/skins/slider/render.php:
|
5631 |
msgid "REGISTER"
|
5632 |
msgstr "S'INSCRIRE"
|
5633 |
|
5634 |
-
#: app/libraries/main.php:
|
5635 |
msgid "View Detail Button"
|
5636 |
msgstr "Afficher le boutons de détail"
|
5637 |
|
5638 |
-
#: app/libraries/main.php:
|
5639 |
-
#: app/skins/carousel/render.php:
|
5640 |
-
#: app/skins/grid/render.php:
|
5641 |
-
#: app/skins/grid/render.php:
|
5642 |
-
#: app/skins/list/render.php:
|
5643 |
-
#: app/skins/slider/render.php:
|
5644 |
-
#: app/skins/slider/render.php:
|
5645 |
-
#: app/skins/slider/render.php:
|
5646 |
msgid "View Detail"
|
5647 |
msgstr "En savoir plus"
|
5648 |
|
5649 |
-
#: app/libraries/main.php:
|
5650 |
msgid "Event Detail Button"
|
5651 |
msgstr "Bouton de détail de l'événement"
|
5652 |
|
5653 |
-
#: app/libraries/main.php:
|
5654 |
msgid "Event Detail"
|
5655 |
msgstr "Détails"
|
5656 |
|
5657 |
-
#: app/libraries/main.php:
|
5658 |
msgid "More Info Link"
|
5659 |
msgstr "Plus de lien d'info"
|
5660 |
|
5661 |
-
#: app/libraries/main.php:
|
5662 |
msgid "Ticket (Singular)"
|
5663 |
msgstr ""
|
5664 |
|
5665 |
-
#: app/libraries/main.php:
|
5666 |
msgid "Tickets (Plural)"
|
5667 |
msgstr ""
|
5668 |
|
5669 |
-
#: app/libraries/main.php:
|
5670 |
msgid "EventON"
|
5671 |
msgstr ""
|
5672 |
|
5673 |
-
#: app/libraries/main.php:
|
5674 |
msgid "The Events Calendar"
|
5675 |
msgstr ""
|
5676 |
|
5677 |
-
#: app/libraries/main.php:
|
5678 |
msgid "Events Schedule WP Plugin"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: app/libraries/main.php:
|
5682 |
msgid "Calendarize It"
|
5683 |
msgstr ""
|
5684 |
|
5685 |
-
#: app/libraries/main.php:
|
5686 |
msgid "Confirmed"
|
5687 |
msgstr "Confirmé"
|
5688 |
|
5689 |
-
#: app/libraries/main.php:
|
5690 |
msgid "Rejected"
|
5691 |
msgstr "Rejeté"
|
5692 |
|
5693 |
-
#: app/libraries/main.php:
|
5694 |
msgid "Pending"
|
5695 |
msgstr "En attente"
|
5696 |
|
5697 |
-
#: app/libraries/main.php:
|
5698 |
msgid "Waiting"
|
5699 |
msgstr "En attente"
|
5700 |
|
@@ -5714,27 +5714,27 @@ msgstr "Votre réservation est confirmée."
|
|
5714 |
msgid "A new booking is received."
|
5715 |
msgstr "Une nouvelle réservation est enregistrée."
|
5716 |
|
5717 |
-
#: app/libraries/notifications.php:
|
5718 |
msgid "A new event is added."
|
5719 |
msgstr "Un nouvel événement est ajouté."
|
5720 |
|
5721 |
-
#: app/libraries/notifications.php:
|
5722 |
msgid "to"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
-
#: app/libraries/notifications.php:
|
5726 |
msgid "+ Add to Google Calendar"
|
5727 |
msgstr "+ Ajouter à mon Agenda Google"
|
5728 |
|
5729 |
-
#: app/libraries/notifications.php:
|
5730 |
msgid "+ iCal export"
|
5731 |
msgstr "+ Exporter vers iCal"
|
5732 |
|
5733 |
-
#: app/libraries/notifications.php:
|
5734 |
msgid "Yes"
|
5735 |
msgstr "Oui"
|
5736 |
|
5737 |
-
#: app/libraries/notifications.php:
|
5738 |
msgid "No"
|
5739 |
msgstr "Non"
|
5740 |
|
@@ -5749,7 +5749,7 @@ msgstr "Le contrôleur de Skin n'existe pas."
|
|
5749 |
msgid "All of the day"
|
5750 |
msgstr "Toute la journée"
|
5751 |
|
5752 |
-
#: app/libraries/skins.php:
|
5753 |
msgid "Ignore month and years"
|
5754 |
msgstr "Ignorer les mois et années"
|
5755 |
|
@@ -5793,8 +5793,8 @@ msgid "Fill other attendees information like the first form."
|
|
5793 |
msgstr ""
|
5794 |
|
5795 |
#: app/modules/booking/steps/form.php:162
|
5796 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5797 |
-
#: app/skins/countdown/tpl.php:
|
5798 |
msgid "Next"
|
5799 |
msgstr "Prochain"
|
5800 |
|
@@ -5920,11 +5920,11 @@ msgid "No event found!"
|
|
5920 |
msgstr "Aucun événement trouvé !"
|
5921 |
|
5922 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5923 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5924 |
msgid "Load More"
|
5925 |
msgstr "Afficher plus"
|
5926 |
|
5927 |
-
#: app/skins/available_spot/tpl.php:
|
5928 |
msgid "Available Spot(s):"
|
5929 |
msgstr ""
|
5930 |
|
@@ -5934,23 +5934,23 @@ msgstr ""
|
|
5934 |
msgid "View All"
|
5935 |
msgstr "Voir %s"
|
5936 |
|
5937 |
-
#: app/skins/carousel/render.php:
|
5938 |
-
#: app/skins/countdown/tpl.php:
|
5939 |
-
#: app/skins/list/render.php:
|
5940 |
msgid "EVENT DETAIL"
|
5941 |
msgstr "VOIR"
|
5942 |
|
5943 |
-
#: app/skins/countdown/tpl.php:
|
5944 |
-
#: app/skins/countdown/tpl.php:
|
5945 |
#, php-format
|
5946 |
msgid "%s Upcoming Event"
|
5947 |
msgstr "%s Événement à Venir"
|
5948 |
|
5949 |
-
#: app/skins/cover/tpl.php:
|
5950 |
msgid "featured event"
|
5951 |
msgstr "événement à la une"
|
5952 |
|
5953 |
-
#: app/skins/daily_view/render.php:
|
5954 |
msgid "No event"
|
5955 |
msgstr "Aucun événement"
|
5956 |
|
@@ -5963,16 +5963,16 @@ msgid "All"
|
|
5963 |
msgstr "Tout"
|
5964 |
|
5965 |
#: app/skins/monthly_view/calendar.php:66
|
5966 |
-
#: app/skins/monthly_view/calendar.php:
|
5967 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5968 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5969 |
#, php-format
|
5970 |
msgid "Events for %s"
|
5971 |
msgstr "Événements pour %s"
|
5972 |
|
5973 |
-
#: app/skins/monthly_view/calendar.php:
|
5974 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5975 |
-
#: app/skins/timetable/render.php:
|
5976 |
msgid "No Events"
|
5977 |
msgstr "Aucun événement"
|
5978 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:42+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
30 |
msgid "Content"
|
31 |
msgstr "Contenu"
|
32 |
|
33 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
34 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Shortcode"
|
37 |
|
62 |
msgid "Event Color"
|
63 |
msgstr "Couleur de l'événement"
|
64 |
|
65 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
66 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
67 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
68 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
267 |
msgid "Event"
|
268 |
msgstr "Événement"
|
269 |
|
270 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
271 |
msgid "Add Event"
|
272 |
msgstr "Ajouter un événement"
|
273 |
|
307 |
#: app/features/mec/meta_boxes/search_form.php:362
|
308 |
#: app/features/mec/meta_boxes/search_form.php:416
|
309 |
#: app/features/mec/meta_boxes/search_form.php:477
|
310 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
311 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
312 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
313 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
314 |
msgid "Category"
|
315 |
msgstr "Catégorie"
|
316 |
|
317 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
318 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
319 |
+
#: app/libraries/main.php:4363
|
320 |
msgid "Categories"
|
321 |
msgstr "Catégories"
|
322 |
|
391 |
#: app/features/events.php:296 app/features/events.php:2053
|
392 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
393 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
394 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
395 |
#: app/widgets/single.php:103
|
396 |
msgid "Event Cost"
|
397 |
msgstr "Tarif de l'événement"
|
398 |
|
399 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
400 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
401 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
402 |
#: app/skins/single/modern.php:184
|
403 |
msgid "Cost"
|
414 |
#: app/features/events.php:380 app/features/events.php:1237
|
415 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
417 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
418 |
#: app/modules/booking/steps/form.php:35
|
419 |
msgid "Name"
|
420 |
msgstr "Nom"
|
426 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
427 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
428 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
429 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
430 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
431 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
754 |
|
755 |
#: app/features/events.php:683 app/features/events.php:703
|
756 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
757 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
758 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
759 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
760 |
msgid "Speakers"
|
761 |
msgstr ""
|
762 |
|
772 |
msgstr "Liens de l'évenements"
|
773 |
|
774 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
775 |
+
#: app/libraries/main.php:4394
|
776 |
msgid "Event Link"
|
777 |
msgstr "Lien de l'événement"
|
778 |
|
788 |
msgstr "Lien principal. Affiché sur la page de l'événement"
|
789 |
|
790 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
791 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
792 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
793 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
794 |
#: app/widgets/single.php:107
|
820 |
#: app/features/events.php:818 app/features/events.php:910
|
821 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
822 |
#: app/modules/booking/steps/tickets.php:40
|
823 |
+
#: app/skins/available_spot/tpl.php:138
|
824 |
msgid "Unlimited"
|
825 |
msgstr "Illimité"
|
826 |
|
829 |
msgstr "100"
|
830 |
|
831 |
#: app/features/events.php:838 app/libraries/book.php:60
|
832 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
833 |
msgid "Tickets"
|
834 |
msgstr "Billets"
|
835 |
|
897 |
#: app/features/mec/meta_boxes/search_form.php:397
|
898 |
#: app/features/mec/meta_boxes/search_form.php:451
|
899 |
#: app/features/mec/meta_boxes/search_form.php:512
|
900 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
901 |
msgid "Label"
|
902 |
msgstr "Label"
|
903 |
|
1124 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1125 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1126 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1127 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1128 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1129 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1130 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1145 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1146 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1147 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1148 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1149 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1150 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1151 |
#: app/skins/single/modern.php:21
|
1285 |
msgstr "Supprimer l'image"
|
1286 |
|
1287 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1288 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1289 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1290 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1291 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1292 |
msgid "Labels"
|
1293 |
msgstr "Labels"
|
1294 |
|
1295 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1296 |
#: app/features/mec/meta_boxes/filter.php:138
|
1297 |
msgid "Tags"
|
1298 |
msgstr "Étiquettes"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2011 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
2012 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2013 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
2014 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2015 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2016 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2017 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
2018 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2019 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
2020 |
#, fuzzy
|
2021 |
#| msgid "Featured Image"
|
2022 |
msgid "Featured"
|
2023 |
msgstr "Image Principale"
|
2024 |
|
2025 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2026 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
2027 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2028 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2029 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2030 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2031 |
#: app/skins/monthly_view/calendar.php:84
|
2032 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2033 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
2034 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2035 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
2036 |
msgid "Canceled"
|
2037 |
msgstr "Annulé"
|
2038 |
|
2056 |
msgid "Event %s"
|
2057 |
msgstr "%s événement"
|
2058 |
|
2059 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2060 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2061 |
+
#: app/libraries/main.php:4367
|
2062 |
msgid "Locations"
|
2063 |
msgstr "Lieux"
|
2064 |
|
2154 |
msgid "Don't show map in single event page"
|
2155 |
msgstr "Ne pas afficher de carte pour cet événement"
|
2156 |
|
2157 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2158 |
#, fuzzy
|
2159 |
#| msgid "Search Locations"
|
2160 |
msgid "Other Locations"
|
2170 |
"Vous pouvez sélectionner des organisateurs supplémentaires en plus de "
|
2171 |
"l'organisateur principal si vous le souhaitez."
|
2172 |
|
2173 |
+
#: app/features/mec.php:144
|
2174 |
msgid ""
|
2175 |
"Activation faild. Please check your purchase code or license type."
|
2176 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: app/features/mec.php:144
|
2180 |
msgid "Troubleshooting"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: app/features/mec.php:179
|
2184 |
msgid ""
|
2185 |
"Your options is not in JSON format. Please insert correct options in this "
|
2186 |
"field and try again."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: app/features/mec.php:183
|
2190 |
#, fuzzy
|
2191 |
#| msgid "Your booking cannot verify!"
|
2192 |
msgid "Your options field can not be empty!"
|
2193 |
msgstr "Votre réservation ne peut pas être vérifiée!"
|
2194 |
|
2195 |
+
#: app/features/mec.php:187
|
2196 |
#, fuzzy
|
2197 |
#| msgid "Your booking successfully verified."
|
2198 |
msgid "Your options imported successfuly."
|
2199 |
msgstr "Votre réservation est vérifiée avec succès."
|
2200 |
|
2201 |
+
#: app/features/mec.php:274
|
2202 |
#, fuzzy
|
2203 |
#| msgid "Support"
|
2204 |
msgid "MEC - Support"
|
2205 |
msgstr "Aide"
|
2206 |
|
2207 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2208 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2209 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2210 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2213 |
msgid "Support"
|
2214 |
msgstr "Aide"
|
2215 |
|
2216 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2217 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2218 |
+
#: app/libraries/main.php:4369
|
2219 |
msgid "Organizers"
|
2220 |
msgstr "Organisateurs"
|
2221 |
|
2222 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2223 |
#: app/features/mec/dashboard.php:164
|
2224 |
msgid "Shortcodes"
|
2225 |
msgstr "Shortcodes"
|
2226 |
|
2227 |
+
#: app/features/mec.php:303
|
2228 |
msgid "MEC - Settings"
|
2229 |
msgstr "Agenda - Paramètres"
|
2230 |
|
2231 |
+
#: app/features/mec.php:304
|
2232 |
#, fuzzy
|
2233 |
#| msgid "MEC - Settings"
|
2234 |
msgid "MEC - Addons"
|
2235 |
msgstr "Agenda - Paramètres"
|
2236 |
|
2237 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2238 |
msgid "Addons"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: app/features/mec.php:321
|
2242 |
msgid "Add Shortcode"
|
2243 |
msgstr "Ajouter un Shortcode"
|
2244 |
|
2245 |
+
#: app/features/mec.php:322
|
2246 |
msgid "Add New Shortcode"
|
2247 |
msgstr "Ajouter un nouveau Shortcode"
|
2248 |
|
2249 |
+
#: app/features/mec.php:323
|
2250 |
msgid "No shortcodes found!"
|
2251 |
msgstr "Aucun shortcode trouvé !"
|
2252 |
|
2253 |
+
#: app/features/mec.php:324
|
2254 |
msgid "All Shortcodes"
|
2255 |
msgstr "Tous les Shortcode"
|
2256 |
|
2257 |
+
#: app/features/mec.php:325
|
2258 |
msgid "Edit shortcodes"
|
2259 |
msgstr "Modifier les shortcodes"
|
2260 |
|
2261 |
+
#: app/features/mec.php:326
|
2262 |
msgid "No shortcodes found in Trash!"
|
2263 |
msgstr "Pas de shortcode dans la corbeille"
|
2264 |
|
2265 |
+
#: app/features/mec.php:373
|
2266 |
msgid "Display Options"
|
2267 |
msgstr "Options d'affichage"
|
2268 |
|
2269 |
+
#: app/features/mec.php:374
|
2270 |
msgid "Filter Options"
|
2271 |
msgstr "Options des filtres"
|
2272 |
|
2273 |
+
#: app/features/mec.php:376
|
2274 |
msgid "Search Form"
|
2275 |
msgstr "Formulaire de Recherche"
|
2276 |
|
2278 |
msgid "Display content's images as Popup"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: app/features/mec.php:764
|
2282 |
msgid "Single Event Display Method"
|
2283 |
msgstr "Méthode d'affichage"
|
2284 |
|
2285 |
+
#: app/features/mec.php:769
|
2286 |
msgid "Separate Window"
|
2287 |
msgstr "Page séparé"
|
2288 |
|
2289 |
+
#: app/features/mec.php:770
|
2290 |
msgid "Modal 1"
|
2291 |
msgstr "Pop-up"
|
2292 |
|
3249 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3250 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3251 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3252 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3253 |
+
#: app/libraries/skins.php:829
|
3254 |
msgid "Speaker"
|
3255 |
msgstr ""
|
3256 |
|
3262 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3263 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3264 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3265 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3266 |
#, fuzzy
|
3267 |
#| msgid "Tags"
|
3268 |
msgid "Tag"
|
3780 |
msgid "Remove suffix from calendars"
|
3781 |
msgstr "Retirer les suffixes de date des Calendriers"
|
3782 |
|
3783 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3784 |
msgid "Weekdays"
|
3785 |
msgstr "Jours de la Semaine"
|
3786 |
|
4481 |
msgstr ""
|
4482 |
|
4483 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4484 |
+
#: app/libraries/main.php:4558
|
4485 |
msgid "Verified"
|
4486 |
msgstr "Vérifié"
|
4487 |
|
5052 |
msgid "eg. https://webnus.net"
|
5053 |
msgstr "http://webnus.biz"
|
5054 |
|
5055 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
5056 |
#: app/skins/single.php:194
|
5057 |
msgid "Other Organizers"
|
5058 |
msgstr "Autres organisateurs"
|
5094 |
msgstr ""
|
5095 |
|
5096 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5097 |
+
#: app/libraries/main.php:4398
|
5098 |
msgid "Ticket"
|
5099 |
msgstr "Billets"
|
5100 |
|
5173 |
msgid "Discount"
|
5174 |
msgstr "Réduction"
|
5175 |
|
5176 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5177 |
+
#: app/modules/booking/default.php:381
|
5178 |
msgid "Download Invoice"
|
5179 |
msgstr ""
|
5180 |
|
5202 |
msgstr "jour"
|
5203 |
|
5204 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5205 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5206 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5207 |
msgid "days"
|
5208 |
msgstr "jours"
|
5209 |
|
5212 |
msgstr "heure"
|
5213 |
|
5214 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5215 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5216 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5217 |
msgid "hours"
|
5218 |
msgstr "heures"
|
5219 |
|
5222 |
msgstr "minute"
|
5223 |
|
5224 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5225 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5226 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5227 |
msgid "minutes"
|
5228 |
msgstr "minutes"
|
5229 |
|
5232 |
msgstr "seconde"
|
5233 |
|
5234 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5235 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5236 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5237 |
msgid "seconds"
|
5238 |
msgstr "secondes"
|
5239 |
|
5247 |
"Barre latérale personnalisée pour les pages d'événement et les pop-ups "
|
5248 |
"modales de M.E.C. ."
|
5249 |
|
5250 |
+
#: app/libraries/feed.php:83
|
5251 |
msgid "There is no excerpt because this is a protected post."
|
5252 |
msgstr "Il n’y a aucun extrait car ce post est protégé."
|
5253 |
|
5306 |
msgid "Slider View"
|
5307 |
msgstr "Vue sur Slider"
|
5308 |
|
5309 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5310 |
msgid "SU"
|
5311 |
msgstr "DIM."
|
5312 |
|
5313 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5314 |
msgid "MO"
|
5315 |
msgstr "LUN."
|
5316 |
|
5317 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5318 |
msgid "TU"
|
5319 |
msgstr "MAR."
|
5320 |
|
5321 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5322 |
msgid "WE"
|
5323 |
msgstr "MER."
|
5324 |
|
5325 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5326 |
msgid "TH"
|
5327 |
msgstr "JEU."
|
5328 |
|
5329 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5330 |
msgid "FR"
|
5331 |
msgstr "VEN."
|
5332 |
|
5333 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5334 |
msgid "SA"
|
5335 |
msgstr "SAM."
|
5336 |
|
5515 |
msgid "%s booked %s event."
|
5516 |
msgstr "%s réservé %s événement"
|
5517 |
|
5518 |
+
#: app/libraries/main.php:4361
|
5519 |
msgid "Taxonomies"
|
5520 |
msgstr "Taxonomies"
|
5521 |
|
5522 |
+
#: app/libraries/main.php:4363
|
5523 |
msgid "Category Plural Label"
|
5524 |
msgstr "Catégorie au pluriel"
|
5525 |
|
5526 |
+
#: app/libraries/main.php:4364
|
5527 |
msgid "Category Singular Label"
|
5528 |
msgstr "Catégorie au singulier"
|
5529 |
|
5530 |
+
#: app/libraries/main.php:4365
|
5531 |
msgid "Label Plural Label"
|
5532 |
msgstr "Étiquettes au pluriel"
|
5533 |
|
5534 |
+
#: app/libraries/main.php:4366
|
5535 |
msgid "Label Singular Label"
|
5536 |
msgstr "Étiquettes au singulier"
|
5537 |
|
5538 |
+
#: app/libraries/main.php:4366
|
5539 |
msgid "label"
|
5540 |
msgstr "texte"
|
5541 |
|
5542 |
+
#: app/libraries/main.php:4367
|
5543 |
msgid "Location Plural Label"
|
5544 |
msgstr "Lieu au pluriel"
|
5545 |
|
5546 |
+
#: app/libraries/main.php:4368
|
5547 |
msgid "Location Singular Label"
|
5548 |
msgstr "Lieu au singulier"
|
5549 |
|
5550 |
+
#: app/libraries/main.php:4369
|
5551 |
msgid "Organizer Plural Label"
|
5552 |
msgstr "Organisateur au pluriel"
|
5553 |
|
5554 |
+
#: app/libraries/main.php:4370
|
5555 |
msgid "Organizer Singular Label"
|
5556 |
msgstr "Organisateur au singulier"
|
5557 |
|
5558 |
+
#: app/libraries/main.php:4371
|
5559 |
#, fuzzy
|
5560 |
#| msgid "Label Plural Label"
|
5561 |
msgid "Speaker Plural Label"
|
5562 |
msgstr "Étiquettes au pluriel"
|
5563 |
|
5564 |
+
#: app/libraries/main.php:4372
|
5565 |
#, fuzzy
|
5566 |
#| msgid "Label Singular Label"
|
5567 |
msgid "Speaker Singular Label"
|
5568 |
msgstr "Étiquettes au singulier"
|
5569 |
|
5570 |
+
#: app/libraries/main.php:4378
|
5571 |
msgid "Sunday abbreviation"
|
5572 |
msgstr "Abréviation de Dimanche"
|
5573 |
|
5574 |
+
#: app/libraries/main.php:4379
|
5575 |
msgid "Monday abbreviation"
|
5576 |
msgstr "Abréviation de Lundi"
|
5577 |
|
5578 |
+
#: app/libraries/main.php:4380
|
5579 |
msgid "Tuesday abbreviation"
|
5580 |
msgstr "Abréviation de Mardi"
|
5581 |
|
5582 |
+
#: app/libraries/main.php:4381
|
5583 |
msgid "Wednesday abbreviation"
|
5584 |
msgstr "Abréviation de Mercredi"
|
5585 |
|
5586 |
+
#: app/libraries/main.php:4382
|
5587 |
msgid "Thursday abbreviation"
|
5588 |
msgstr "Abréviation de Jeudi"
|
5589 |
|
5590 |
+
#: app/libraries/main.php:4383
|
5591 |
msgid "Friday abbreviation"
|
5592 |
msgstr "Abréviation de Vendredi"
|
5593 |
|
5594 |
+
#: app/libraries/main.php:4384
|
5595 |
msgid "Saturday abbreviation"
|
5596 |
msgstr "Abréviation de Samedi"
|
5597 |
|
5598 |
+
#: app/libraries/main.php:4388
|
5599 |
msgid "Others"
|
5600 |
msgstr "Autres"
|
5601 |
|
5602 |
+
#: app/libraries/main.php:4390
|
5603 |
msgid "Booking Success Message"
|
5604 |
msgstr "Message de succès de réservation"
|
5605 |
|
5606 |
+
#: app/libraries/main.php:4390
|
5607 |
msgid ""
|
5608 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5609 |
"needed, please check your email."
|
5611 |
"Merci pour votre réservation. Vos billets sont réservés, cependant une "
|
5612 |
"vérification peut être nécessaires, contrôlez votre boite mail."
|
5613 |
|
5614 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5615 |
msgid "Register Button"
|
5616 |
msgstr "Boutons d'inscription"
|
5617 |
|
5618 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5619 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5620 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5621 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5622 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5623 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5624 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5625 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5626 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5627 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5628 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5629 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5630 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5631 |
msgid "REGISTER"
|
5632 |
msgstr "S'INSCRIRE"
|
5633 |
|
5634 |
+
#: app/libraries/main.php:4392
|
5635 |
msgid "View Detail Button"
|
5636 |
msgstr "Afficher le boutons de détail"
|
5637 |
|
5638 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5639 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5640 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5641 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5642 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5643 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5644 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5645 |
+
#: app/skins/slider/render.php:305
|
5646 |
msgid "View Detail"
|
5647 |
msgstr "En savoir plus"
|
5648 |
|
5649 |
+
#: app/libraries/main.php:4393
|
5650 |
msgid "Event Detail Button"
|
5651 |
msgstr "Bouton de détail de l'événement"
|
5652 |
|
5653 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5654 |
msgid "Event Detail"
|
5655 |
msgstr "Détails"
|
5656 |
|
5657 |
+
#: app/libraries/main.php:4395
|
5658 |
msgid "More Info Link"
|
5659 |
msgstr "Plus de lien d'info"
|
5660 |
|
5661 |
+
#: app/libraries/main.php:4398
|
5662 |
msgid "Ticket (Singular)"
|
5663 |
msgstr ""
|
5664 |
|
5665 |
+
#: app/libraries/main.php:4399
|
5666 |
msgid "Tickets (Plural)"
|
5667 |
msgstr ""
|
5668 |
|
5669 |
+
#: app/libraries/main.php:4466
|
5670 |
msgid "EventON"
|
5671 |
msgstr ""
|
5672 |
|
5673 |
+
#: app/libraries/main.php:4467
|
5674 |
msgid "The Events Calendar"
|
5675 |
msgstr ""
|
5676 |
|
5677 |
+
#: app/libraries/main.php:4468
|
5678 |
msgid "Events Schedule WP Plugin"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
+
#: app/libraries/main.php:4469
|
5682 |
msgid "Calendarize It"
|
5683 |
msgstr ""
|
5684 |
|
5685 |
+
#: app/libraries/main.php:4543
|
5686 |
msgid "Confirmed"
|
5687 |
msgstr "Confirmé"
|
5688 |
|
5689 |
+
#: app/libraries/main.php:4544
|
5690 |
msgid "Rejected"
|
5691 |
msgstr "Rejeté"
|
5692 |
|
5693 |
+
#: app/libraries/main.php:4545
|
5694 |
msgid "Pending"
|
5695 |
msgstr "En attente"
|
5696 |
|
5697 |
+
#: app/libraries/main.php:4560
|
5698 |
msgid "Waiting"
|
5699 |
msgstr "En attente"
|
5700 |
|
5714 |
msgid "A new booking is received."
|
5715 |
msgstr "Une nouvelle réservation est enregistrée."
|
5716 |
|
5717 |
+
#: app/libraries/notifications.php:338
|
5718 |
msgid "A new event is added."
|
5719 |
msgstr "Un nouvel événement est ajouté."
|
5720 |
|
5721 |
+
#: app/libraries/notifications.php:509
|
5722 |
msgid "to"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5726 |
msgid "+ Add to Google Calendar"
|
5727 |
msgstr "+ Ajouter à mon Agenda Google"
|
5728 |
|
5729 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5730 |
msgid "+ iCal export"
|
5731 |
msgstr "+ Exporter vers iCal"
|
5732 |
|
5733 |
+
#: app/libraries/notifications.php:582
|
5734 |
msgid "Yes"
|
5735 |
msgstr "Oui"
|
5736 |
|
5737 |
+
#: app/libraries/notifications.php:582
|
5738 |
msgid "No"
|
5739 |
msgstr "Non"
|
5740 |
|
5749 |
msgid "All of the day"
|
5750 |
msgstr "Toute la journée"
|
5751 |
|
5752 |
+
#: app/libraries/skins.php:902
|
5753 |
msgid "Ignore month and years"
|
5754 |
msgstr "Ignorer les mois et années"
|
5755 |
|
5793 |
msgstr ""
|
5794 |
|
5795 |
#: app/modules/booking/steps/form.php:162
|
5796 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5797 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5798 |
msgid "Next"
|
5799 |
msgstr "Prochain"
|
5800 |
|
5920 |
msgstr "Aucun événement trouvé !"
|
5921 |
|
5922 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5923 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5924 |
msgid "Load More"
|
5925 |
msgstr "Afficher plus"
|
5926 |
|
5927 |
+
#: app/skins/available_spot/tpl.php:138
|
5928 |
msgid "Available Spot(s):"
|
5929 |
msgstr ""
|
5930 |
|
5934 |
msgid "View All"
|
5935 |
msgstr "Voir %s"
|
5936 |
|
5937 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5938 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5939 |
+
#: app/skins/list/render.php:119
|
5940 |
msgid "EVENT DETAIL"
|
5941 |
msgstr "VOIR"
|
5942 |
|
5943 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5944 |
+
#: app/skins/countdown/tpl.php:206
|
5945 |
#, php-format
|
5946 |
msgid "%s Upcoming Event"
|
5947 |
msgstr "%s Événement à Venir"
|
5948 |
|
5949 |
+
#: app/skins/cover/tpl.php:81
|
5950 |
msgid "featured event"
|
5951 |
msgstr "événement à la une"
|
5952 |
|
5953 |
+
#: app/skins/daily_view/render.php:78
|
5954 |
msgid "No event"
|
5955 |
msgstr "Aucun événement"
|
5956 |
|
5963 |
msgstr "Tout"
|
5964 |
|
5965 |
#: app/skins/monthly_view/calendar.php:66
|
5966 |
+
#: app/skins/monthly_view/calendar.php:152
|
5967 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5968 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5969 |
#, php-format
|
5970 |
msgid "Events for %s"
|
5971 |
msgstr "Événements pour %s"
|
5972 |
|
5973 |
+
#: app/skins/monthly_view/calendar.php:154
|
5974 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5975 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5976 |
msgid "No Events"
|
5977 |
msgstr "Aucun événement"
|
5978 |
|
languages/modern-events-calendar-lite-hu_HU.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-hu_HU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: hu_HU\n"
|
@@ -30,8 +30,8 @@ msgstr ""
|
|
30 |
msgid "Content"
|
31 |
msgstr "Tartalom"
|
32 |
|
33 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
34 |
-
#: app/features/mec.php:
|
35 |
msgid "Shortcode"
|
36 |
msgstr ""
|
37 |
|
@@ -56,7 +56,7 @@ msgstr ""
|
|
56 |
msgid "Event Color"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
60 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
61 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
62 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -261,7 +261,7 @@ msgstr ""
|
|
261 |
msgid "Event"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: app/features/events.php:134 app/features/mec.php:
|
265 |
msgid "Add Event"
|
266 |
msgstr ""
|
267 |
|
@@ -301,16 +301,16 @@ msgstr ""
|
|
301 |
#: app/features/mec/meta_boxes/search_form.php:362
|
302 |
#: app/features/mec/meta_boxes/search_form.php:416
|
303 |
#: app/features/mec/meta_boxes/search_form.php:477
|
304 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
305 |
-
#: app/libraries/skins.php:
|
306 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
307 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
308 |
msgid "Category"
|
309 |
msgstr "kategória"
|
310 |
|
311 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
312 |
-
#: app/features/mec.php:
|
313 |
-
#: app/libraries/main.php:
|
314 |
msgid "Categories"
|
315 |
msgstr ""
|
316 |
|
@@ -385,13 +385,13 @@ msgstr ""
|
|
385 |
#: app/features/events.php:296 app/features/events.php:2053
|
386 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
387 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
388 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
389 |
#: app/widgets/single.php:103
|
390 |
msgid "Event Cost"
|
391 |
msgstr ""
|
392 |
|
393 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
394 |
-
#: app/libraries/main.php:
|
395 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
396 |
#: app/skins/single/modern.php:184
|
397 |
msgid "Cost"
|
@@ -408,7 +408,7 @@ msgstr ""
|
|
408 |
#: app/features/events.php:380 app/features/events.php:1237
|
409 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
410 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
411 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
412 |
#: app/modules/booking/steps/form.php:35
|
413 |
msgid "Name"
|
414 |
msgstr "Név"
|
@@ -420,7 +420,7 @@ msgstr "Név"
|
|
420 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
421 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
422 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
423 |
-
#: app/libraries/notifications.php:
|
424 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
425 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
426 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -737,9 +737,9 @@ msgstr ""
|
|
737 |
|
738 |
#: app/features/events.php:683 app/features/events.php:703
|
739 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
740 |
-
#: app/features/mec.php:
|
741 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
742 |
-
#: app/libraries/main.php:
|
743 |
msgid "Speakers"
|
744 |
msgstr ""
|
745 |
|
@@ -753,7 +753,7 @@ msgid "Event Links"
|
|
753 |
msgstr ""
|
754 |
|
755 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
756 |
-
#: app/libraries/main.php:
|
757 |
msgid "Event Link"
|
758 |
msgstr ""
|
759 |
|
@@ -769,7 +769,7 @@ msgid ""
|
|
769 |
msgstr ""
|
770 |
|
771 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
772 |
-
#: app/libraries/main.php:
|
773 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
774 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
775 |
#: app/widgets/single.php:107
|
@@ -801,7 +801,7 @@ msgstr ""
|
|
801 |
#: app/features/events.php:818 app/features/events.php:910
|
802 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
803 |
#: app/modules/booking/steps/tickets.php:40
|
804 |
-
#: app/skins/available_spot/tpl.php:
|
805 |
msgid "Unlimited"
|
806 |
msgstr ""
|
807 |
|
@@ -810,7 +810,7 @@ msgid "100"
|
|
810 |
msgstr ""
|
811 |
|
812 |
#: app/features/events.php:838 app/libraries/book.php:60
|
813 |
-
#: app/libraries/main.php:
|
814 |
msgid "Tickets"
|
815 |
msgstr ""
|
816 |
|
@@ -876,7 +876,7 @@ msgstr ""
|
|
876 |
#: app/features/mec/meta_boxes/search_form.php:397
|
877 |
#: app/features/mec/meta_boxes/search_form.php:451
|
878 |
#: app/features/mec/meta_boxes/search_form.php:512
|
879 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
880 |
msgid "Label"
|
881 |
msgstr ""
|
882 |
|
@@ -1095,7 +1095,7 @@ msgstr ""
|
|
1095 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1096 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1097 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1098 |
-
#: app/libraries/main.php:
|
1099 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1100 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1101 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1116,7 +1116,7 @@ msgstr "helyszín"
|
|
1116 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1117 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1118 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1119 |
-
#: app/libraries/main.php:
|
1120 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1121 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1122 |
#: app/skins/single/modern.php:21
|
@@ -1256,14 +1256,14 @@ msgid "Remove Image"
|
|
1256 |
msgstr ""
|
1257 |
|
1258 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1259 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1260 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1261 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1262 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1263 |
msgid "Labels"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1267 |
#: app/features/mec/meta_boxes/filter.php:138
|
1268 |
msgid "Tags"
|
1269 |
msgstr ""
|
@@ -1913,29 +1913,29 @@ msgid "Normal"
|
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1916 |
-
#: app/skins/agenda/render.php:
|
1917 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1918 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
1919 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1920 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1921 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1922 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
1923 |
-
#: app/skins/timetable/render.php:
|
1924 |
-
#: app/skins/weekly_view/render.php:
|
1925 |
msgid "Featured"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1929 |
-
#: app/libraries/main.php:
|
1930 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1931 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1932 |
-
#: app/skins/daily_view/render.php:
|
1933 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1934 |
#: app/skins/monthly_view/calendar.php:84
|
1935 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1936 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
1937 |
-
#: app/skins/timetable/render.php:
|
1938 |
-
#: app/skins/weekly_view/render.php:
|
1939 |
msgid "Canceled"
|
1940 |
msgstr ""
|
1941 |
|
@@ -1959,9 +1959,9 @@ msgstr ""
|
|
1959 |
msgid "Event %s"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
1963 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
1964 |
-
#: app/libraries/main.php:
|
1965 |
msgid "Locations"
|
1966 |
msgstr ""
|
1967 |
|
@@ -2055,7 +2055,7 @@ msgstr ""
|
|
2055 |
msgid "Don't show map in single event page"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2059 |
#, fuzzy
|
2060 |
#| msgid "Location"
|
2061 |
msgid "Other Locations"
|
@@ -2066,35 +2066,35 @@ msgid ""
|
|
2066 |
"You can select extra locations in addition to main location if you like."
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: app/features/mec.php:
|
2070 |
msgid ""
|
2071 |
"Activation faild. Please check your purchase code or license type."
|
2072 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: app/features/mec.php:
|
2076 |
msgid "Troubleshooting"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: app/features/mec.php:
|
2080 |
msgid ""
|
2081 |
"Your options is not in JSON format. Please insert correct options in this "
|
2082 |
"field and try again."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: app/features/mec.php:
|
2086 |
msgid "Your options field can not be empty!"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: app/features/mec.php:
|
2090 |
msgid "Your options imported successfuly."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: app/features/mec.php:
|
2094 |
msgid "MEC - Support"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: app/features/mec.php:
|
2098 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2099 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2100 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2103,62 +2103,62 @@ msgstr ""
|
|
2103 |
msgid "Support"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: app/features/mec.php:
|
2107 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2108 |
-
#: app/libraries/main.php:
|
2109 |
msgid "Organizers"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: app/features/mec.php:
|
2113 |
#: app/features/mec/dashboard.php:164
|
2114 |
msgid "Shortcodes"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: app/features/mec.php:
|
2118 |
msgid "MEC - Settings"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: app/features/mec.php:
|
2122 |
msgid "MEC - Addons"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: app/features/mec.php:
|
2126 |
msgid "Addons"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: app/features/mec.php:
|
2130 |
msgid "Add Shortcode"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: app/features/mec.php:
|
2134 |
msgid "Add New Shortcode"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: app/features/mec.php:
|
2138 |
msgid "No shortcodes found!"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#: app/features/mec.php:
|
2142 |
msgid "All Shortcodes"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: app/features/mec.php:
|
2146 |
msgid "Edit shortcodes"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#: app/features/mec.php:
|
2150 |
msgid "No shortcodes found in Trash!"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#: app/features/mec.php:
|
2154 |
msgid "Display Options"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#: app/features/mec.php:
|
2158 |
msgid "Filter Options"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#: app/features/mec.php:
|
2162 |
msgid "Search Form"
|
2163 |
msgstr ""
|
2164 |
|
@@ -2166,15 +2166,15 @@ msgstr ""
|
|
2166 |
msgid "Display content's images as Popup"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
-
#: app/features/mec.php:
|
2170 |
msgid "Single Event Display Method"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: app/features/mec.php:
|
2174 |
msgid "Separate Window"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: app/features/mec.php:
|
2178 |
msgid "Modal 1"
|
2179 |
msgstr ""
|
2180 |
|
@@ -3105,8 +3105,8 @@ msgstr ""
|
|
3105 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3106 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3107 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3108 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3109 |
-
#: app/libraries/skins.php:
|
3110 |
msgid "Speaker"
|
3111 |
msgstr ""
|
3112 |
|
@@ -3118,7 +3118,7 @@ msgstr ""
|
|
3118 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3119 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3120 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3121 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3122 |
msgid "Tag"
|
3123 |
msgstr ""
|
3124 |
|
@@ -3610,7 +3610,7 @@ msgstr ""
|
|
3610 |
msgid "Remove suffix from calendars"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3614 |
msgid "Weekdays"
|
3615 |
msgstr ""
|
3616 |
|
@@ -4243,7 +4243,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4243 |
msgstr ""
|
4244 |
|
4245 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4246 |
-
#: app/libraries/main.php:
|
4247 |
msgid "Verified"
|
4248 |
msgstr ""
|
4249 |
|
@@ -4735,7 +4735,7 @@ msgstr "például john@smith.com"
|
|
4735 |
msgid "eg. https://webnus.net"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
4739 |
#: app/skins/single.php:194
|
4740 |
msgid "Other Organizers"
|
4741 |
msgstr ""
|
@@ -4772,7 +4772,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
4772 |
msgstr ""
|
4773 |
|
4774 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4775 |
-
#: app/libraries/main.php:
|
4776 |
msgid "Ticket"
|
4777 |
msgstr ""
|
4778 |
|
@@ -4837,8 +4837,8 @@ msgstr ""
|
|
4837 |
msgid "Discount"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
4841 |
-
#: app/modules/booking/default.php:
|
4842 |
msgid "Download Invoice"
|
4843 |
msgstr ""
|
4844 |
|
@@ -4866,8 +4866,8 @@ msgid "day"
|
|
4866 |
msgstr ""
|
4867 |
|
4868 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
4869 |
-
#: app/skins/available_spot/tpl.php:
|
4870 |
-
#: app/skins/countdown/tpl.php:
|
4871 |
msgid "days"
|
4872 |
msgstr "Nap"
|
4873 |
|
@@ -4876,8 +4876,8 @@ msgid "hour"
|
|
4876 |
msgstr ""
|
4877 |
|
4878 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
4879 |
-
#: app/skins/available_spot/tpl.php:
|
4880 |
-
#: app/skins/countdown/tpl.php:
|
4881 |
msgid "hours"
|
4882 |
msgstr "óra"
|
4883 |
|
@@ -4886,8 +4886,8 @@ msgid "minute"
|
|
4886 |
msgstr ""
|
4887 |
|
4888 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
4889 |
-
#: app/skins/available_spot/tpl.php:
|
4890 |
-
#: app/skins/countdown/tpl.php:
|
4891 |
msgid "minutes"
|
4892 |
msgstr "perc"
|
4893 |
|
@@ -4896,8 +4896,8 @@ msgid "second"
|
|
4896 |
msgstr ""
|
4897 |
|
4898 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
4899 |
-
#: app/skins/available_spot/tpl.php:
|
4900 |
-
#: app/skins/countdown/tpl.php:
|
4901 |
msgid "seconds"
|
4902 |
msgstr "másodperc"
|
4903 |
|
@@ -4909,7 +4909,7 @@ msgstr ""
|
|
4909 |
msgid "Custom sidebar for single and modal page of MEC."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: app/libraries/feed.php:
|
4913 |
msgid "There is no excerpt because this is a protected post."
|
4914 |
msgstr ""
|
4915 |
|
@@ -4968,31 +4968,31 @@ msgstr ""
|
|
4968 |
msgid "Slider View"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
4972 |
msgid "SU"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
4976 |
msgid "MO"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
4980 |
msgid "TU"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
4984 |
msgid "WE"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
4988 |
msgid "TH"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
4992 |
msgid "FR"
|
4993 |
msgstr ""
|
4994 |
|
4995 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
4996 |
msgid "SA"
|
4997 |
msgstr ""
|
4998 |
|
@@ -5175,91 +5175,91 @@ msgstr ""
|
|
5175 |
msgid "%s booked %s event."
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: app/libraries/main.php:
|
5179 |
msgid "Taxonomies"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: app/libraries/main.php:
|
5183 |
msgid "Category Plural Label"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: app/libraries/main.php:
|
5187 |
msgid "Category Singular Label"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: app/libraries/main.php:
|
5191 |
msgid "Label Plural Label"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: app/libraries/main.php:
|
5195 |
msgid "Label Singular Label"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: app/libraries/main.php:
|
5199 |
msgid "label"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: app/libraries/main.php:
|
5203 |
msgid "Location Plural Label"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#: app/libraries/main.php:
|
5207 |
msgid "Location Singular Label"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: app/libraries/main.php:
|
5211 |
msgid "Organizer Plural Label"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#: app/libraries/main.php:
|
5215 |
msgid "Organizer Singular Label"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
#: app/libraries/main.php:
|
5219 |
msgid "Speaker Plural Label"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: app/libraries/main.php:
|
5223 |
msgid "Speaker Singular Label"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: app/libraries/main.php:
|
5227 |
msgid "Sunday abbreviation"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: app/libraries/main.php:
|
5231 |
msgid "Monday abbreviation"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: app/libraries/main.php:
|
5235 |
msgid "Tuesday abbreviation"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: app/libraries/main.php:
|
5239 |
msgid "Wednesday abbreviation"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
-
#: app/libraries/main.php:
|
5243 |
msgid "Thursday abbreviation"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: app/libraries/main.php:
|
5247 |
msgid "Friday abbreviation"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: app/libraries/main.php:
|
5251 |
msgid "Saturday abbreviation"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: app/libraries/main.php:
|
5255 |
msgid "Others"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: app/libraries/main.php:
|
5259 |
msgid "Booking Success Message"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: app/libraries/main.php:
|
5263 |
msgid ""
|
5264 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5265 |
"needed, please check your email."
|
@@ -5267,90 +5267,90 @@ msgstr ""
|
|
5267 |
"Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
|
5268 |
"jóváhagyásra lesz szükség!"
|
5269 |
|
5270 |
-
#: app/libraries/main.php:
|
5271 |
msgid "Register Button"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: app/libraries/main.php:
|
5275 |
-
#: app/skins/carousel/render.php:
|
5276 |
-
#: app/skins/grid/render.php:
|
5277 |
-
#: app/skins/grid/render.php:
|
5278 |
-
#: app/skins/list/render.php:
|
5279 |
-
#: app/skins/masonry/render.php:
|
5280 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5281 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5282 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5283 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5284 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5285 |
-
#: app/skins/slider/render.php:
|
5286 |
-
#: app/skins/slider/render.php:
|
5287 |
msgid "REGISTER"
|
5288 |
msgstr "REGISZTRÁCIÓ"
|
5289 |
|
5290 |
-
#: app/libraries/main.php:
|
5291 |
msgid "View Detail Button"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: app/libraries/main.php:
|
5295 |
-
#: app/skins/carousel/render.php:
|
5296 |
-
#: app/skins/grid/render.php:
|
5297 |
-
#: app/skins/grid/render.php:
|
5298 |
-
#: app/skins/list/render.php:
|
5299 |
-
#: app/skins/slider/render.php:
|
5300 |
-
#: app/skins/slider/render.php:
|
5301 |
-
#: app/skins/slider/render.php:
|
5302 |
msgid "View Detail"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
-
#: app/libraries/main.php:
|
5306 |
msgid "Event Detail Button"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: app/libraries/main.php:
|
5310 |
msgid "Event Detail"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
-
#: app/libraries/main.php:
|
5314 |
msgid "More Info Link"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#: app/libraries/main.php:
|
5318 |
msgid "Ticket (Singular)"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: app/libraries/main.php:
|
5322 |
msgid "Tickets (Plural)"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
-
#: app/libraries/main.php:
|
5326 |
msgid "EventON"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: app/libraries/main.php:
|
5330 |
msgid "The Events Calendar"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: app/libraries/main.php:
|
5334 |
msgid "Events Schedule WP Plugin"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: app/libraries/main.php:
|
5338 |
msgid "Calendarize It"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: app/libraries/main.php:
|
5342 |
msgid "Confirmed"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
-
#: app/libraries/main.php:
|
5346 |
msgid "Rejected"
|
5347 |
msgstr ""
|
5348 |
|
5349 |
-
#: app/libraries/main.php:
|
5350 |
msgid "Pending"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: app/libraries/main.php:
|
5354 |
msgid "Waiting"
|
5355 |
msgstr ""
|
5356 |
|
@@ -5370,27 +5370,27 @@ msgstr ""
|
|
5370 |
msgid "A new booking is received."
|
5371 |
msgstr ""
|
5372 |
|
5373 |
-
#: app/libraries/notifications.php:
|
5374 |
msgid "A new event is added."
|
5375 |
msgstr ""
|
5376 |
|
5377 |
-
#: app/libraries/notifications.php:
|
5378 |
msgid "to"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
-
#: app/libraries/notifications.php:
|
5382 |
msgid "+ Add to Google Calendar"
|
5383 |
msgstr "+ Google Naptárba mentés"
|
5384 |
|
5385 |
-
#: app/libraries/notifications.php:
|
5386 |
msgid "+ iCal export"
|
5387 |
msgstr "+ iCal Exportálás"
|
5388 |
|
5389 |
-
#: app/libraries/notifications.php:
|
5390 |
msgid "Yes"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: app/libraries/notifications.php:
|
5394 |
msgid "No"
|
5395 |
msgstr ""
|
5396 |
|
@@ -5405,7 +5405,7 @@ msgstr ""
|
|
5405 |
msgid "All of the day"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: app/libraries/skins.php:
|
5409 |
msgid "Ignore month and years"
|
5410 |
msgstr ""
|
5411 |
|
@@ -5447,8 +5447,8 @@ msgid "Fill other attendees information like the first form."
|
|
5447 |
msgstr ""
|
5448 |
|
5449 |
#: app/modules/booking/steps/form.php:162
|
5450 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5451 |
-
#: app/skins/countdown/tpl.php:
|
5452 |
msgid "Next"
|
5453 |
msgstr "Tovább"
|
5454 |
|
@@ -5572,11 +5572,11 @@ msgid "No event found!"
|
|
5572 |
msgstr ""
|
5573 |
|
5574 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5575 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5576 |
msgid "Load More"
|
5577 |
msgstr "Tovább"
|
5578 |
|
5579 |
-
#: app/skins/available_spot/tpl.php:
|
5580 |
msgid "Available Spot(s):"
|
5581 |
msgstr ""
|
5582 |
|
@@ -5584,23 +5584,23 @@ msgstr ""
|
|
5584 |
msgid "View All"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
-
#: app/skins/carousel/render.php:
|
5588 |
-
#: app/skins/countdown/tpl.php:
|
5589 |
-
#: app/skins/list/render.php:
|
5590 |
msgid "EVENT DETAIL"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
-
#: app/skins/countdown/tpl.php:
|
5594 |
-
#: app/skins/countdown/tpl.php:
|
5595 |
#, php-format
|
5596 |
msgid "%s Upcoming Event"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: app/skins/cover/tpl.php:
|
5600 |
msgid "featured event"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: app/skins/daily_view/render.php:
|
5604 |
msgid "No event"
|
5605 |
msgstr ""
|
5606 |
|
@@ -5613,16 +5613,16 @@ msgid "All"
|
|
5613 |
msgstr ""
|
5614 |
|
5615 |
#: app/skins/monthly_view/calendar.php:66
|
5616 |
-
#: app/skins/monthly_view/calendar.php:
|
5617 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5618 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5619 |
#, php-format
|
5620 |
msgid "Events for %s"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: app/skins/monthly_view/calendar.php:
|
5624 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5625 |
-
#: app/skins/timetable/render.php:
|
5626 |
msgid "No Events"
|
5627 |
msgstr ""
|
5628 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:42+0430\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: hu_HU\n"
|
30 |
msgid "Content"
|
31 |
msgstr "Tartalom"
|
32 |
|
33 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
34 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
35 |
msgid "Shortcode"
|
36 |
msgstr ""
|
37 |
|
56 |
msgid "Event Color"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
60 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
61 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
62 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
261 |
msgid "Event"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
265 |
msgid "Add Event"
|
266 |
msgstr ""
|
267 |
|
301 |
#: app/features/mec/meta_boxes/search_form.php:362
|
302 |
#: app/features/mec/meta_boxes/search_form.php:416
|
303 |
#: app/features/mec/meta_boxes/search_form.php:477
|
304 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
305 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
306 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
307 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
308 |
msgid "Category"
|
309 |
msgstr "kategória"
|
310 |
|
311 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
312 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
313 |
+
#: app/libraries/main.php:4363
|
314 |
msgid "Categories"
|
315 |
msgstr ""
|
316 |
|
385 |
#: app/features/events.php:296 app/features/events.php:2053
|
386 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
387 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
388 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
389 |
#: app/widgets/single.php:103
|
390 |
msgid "Event Cost"
|
391 |
msgstr ""
|
392 |
|
393 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
394 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
395 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
396 |
#: app/skins/single/modern.php:184
|
397 |
msgid "Cost"
|
408 |
#: app/features/events.php:380 app/features/events.php:1237
|
409 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
410 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
411 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
412 |
#: app/modules/booking/steps/form.php:35
|
413 |
msgid "Name"
|
414 |
msgstr "Név"
|
420 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
421 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
422 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
423 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
424 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
425 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
426 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
737 |
|
738 |
#: app/features/events.php:683 app/features/events.php:703
|
739 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
740 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
741 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
742 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
743 |
msgid "Speakers"
|
744 |
msgstr ""
|
745 |
|
753 |
msgstr ""
|
754 |
|
755 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
756 |
+
#: app/libraries/main.php:4394
|
757 |
msgid "Event Link"
|
758 |
msgstr ""
|
759 |
|
769 |
msgstr ""
|
770 |
|
771 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
772 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
773 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
774 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
775 |
#: app/widgets/single.php:107
|
801 |
#: app/features/events.php:818 app/features/events.php:910
|
802 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
803 |
#: app/modules/booking/steps/tickets.php:40
|
804 |
+
#: app/skins/available_spot/tpl.php:138
|
805 |
msgid "Unlimited"
|
806 |
msgstr ""
|
807 |
|
810 |
msgstr ""
|
811 |
|
812 |
#: app/features/events.php:838 app/libraries/book.php:60
|
813 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
814 |
msgid "Tickets"
|
815 |
msgstr ""
|
816 |
|
876 |
#: app/features/mec/meta_boxes/search_form.php:397
|
877 |
#: app/features/mec/meta_boxes/search_form.php:451
|
878 |
#: app/features/mec/meta_boxes/search_form.php:512
|
879 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
880 |
msgid "Label"
|
881 |
msgstr ""
|
882 |
|
1095 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1096 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1097 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1098 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1099 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1100 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1101 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1116 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1117 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1118 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1119 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1120 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1121 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1122 |
#: app/skins/single/modern.php:21
|
1256 |
msgstr ""
|
1257 |
|
1258 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1259 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1260 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1261 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1262 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1263 |
msgid "Labels"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1267 |
#: app/features/mec/meta_boxes/filter.php:138
|
1268 |
msgid "Tags"
|
1269 |
msgstr ""
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1916 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
1917 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1918 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
1919 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1920 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1921 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1922 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
1923 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
1924 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
1925 |
msgid "Featured"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1929 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
1930 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1931 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1932 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
1933 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1934 |
#: app/skins/monthly_view/calendar.php:84
|
1935 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1936 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
1937 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
1938 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
1939 |
msgid "Canceled"
|
1940 |
msgstr ""
|
1941 |
|
1959 |
msgid "Event %s"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
1963 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
1964 |
+
#: app/libraries/main.php:4367
|
1965 |
msgid "Locations"
|
1966 |
msgstr ""
|
1967 |
|
2055 |
msgid "Don't show map in single event page"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2059 |
#, fuzzy
|
2060 |
#| msgid "Location"
|
2061 |
msgid "Other Locations"
|
2066 |
"You can select extra locations in addition to main location if you like."
|
2067 |
msgstr ""
|
2068 |
|
2069 |
+
#: app/features/mec.php:144
|
2070 |
msgid ""
|
2071 |
"Activation faild. Please check your purchase code or license type."
|
2072 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: app/features/mec.php:144
|
2076 |
msgid "Troubleshooting"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: app/features/mec.php:179
|
2080 |
msgid ""
|
2081 |
"Your options is not in JSON format. Please insert correct options in this "
|
2082 |
"field and try again."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: app/features/mec.php:183
|
2086 |
msgid "Your options field can not be empty!"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: app/features/mec.php:187
|
2090 |
msgid "Your options imported successfuly."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: app/features/mec.php:274
|
2094 |
msgid "MEC - Support"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2098 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2099 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2100 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2103 |
msgid "Support"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2107 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2108 |
+
#: app/libraries/main.php:4369
|
2109 |
msgid "Organizers"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2113 |
#: app/features/mec/dashboard.php:164
|
2114 |
msgid "Shortcodes"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: app/features/mec.php:303
|
2118 |
msgid "MEC - Settings"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: app/features/mec.php:304
|
2122 |
msgid "MEC - Addons"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2126 |
msgid "Addons"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: app/features/mec.php:321
|
2130 |
msgid "Add Shortcode"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: app/features/mec.php:322
|
2134 |
msgid "Add New Shortcode"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: app/features/mec.php:323
|
2138 |
msgid "No shortcodes found!"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: app/features/mec.php:324
|
2142 |
msgid "All Shortcodes"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: app/features/mec.php:325
|
2146 |
msgid "Edit shortcodes"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: app/features/mec.php:326
|
2150 |
msgid "No shortcodes found in Trash!"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: app/features/mec.php:373
|
2154 |
msgid "Display Options"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: app/features/mec.php:374
|
2158 |
msgid "Filter Options"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: app/features/mec.php:376
|
2162 |
msgid "Search Form"
|
2163 |
msgstr ""
|
2164 |
|
2166 |
msgid "Display content's images as Popup"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: app/features/mec.php:764
|
2170 |
msgid "Single Event Display Method"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: app/features/mec.php:769
|
2174 |
msgid "Separate Window"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: app/features/mec.php:770
|
2178 |
msgid "Modal 1"
|
2179 |
msgstr ""
|
2180 |
|
3105 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3106 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3107 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3108 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3109 |
+
#: app/libraries/skins.php:829
|
3110 |
msgid "Speaker"
|
3111 |
msgstr ""
|
3112 |
|
3118 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3119 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3120 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3121 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3122 |
msgid "Tag"
|
3123 |
msgstr ""
|
3124 |
|
3610 |
msgid "Remove suffix from calendars"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3614 |
msgid "Weekdays"
|
3615 |
msgstr ""
|
3616 |
|
4243 |
msgstr ""
|
4244 |
|
4245 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4246 |
+
#: app/libraries/main.php:4558
|
4247 |
msgid "Verified"
|
4248 |
msgstr ""
|
4249 |
|
4735 |
msgid "eg. https://webnus.net"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
4739 |
#: app/skins/single.php:194
|
4740 |
msgid "Other Organizers"
|
4741 |
msgstr ""
|
4772 |
msgstr ""
|
4773 |
|
4774 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4775 |
+
#: app/libraries/main.php:4398
|
4776 |
msgid "Ticket"
|
4777 |
msgstr ""
|
4778 |
|
4837 |
msgid "Discount"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
4841 |
+
#: app/modules/booking/default.php:381
|
4842 |
msgid "Download Invoice"
|
4843 |
msgstr ""
|
4844 |
|
4866 |
msgstr ""
|
4867 |
|
4868 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
4869 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
4870 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
4871 |
msgid "days"
|
4872 |
msgstr "Nap"
|
4873 |
|
4876 |
msgstr ""
|
4877 |
|
4878 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
4879 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
4880 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
4881 |
msgid "hours"
|
4882 |
msgstr "óra"
|
4883 |
|
4886 |
msgstr ""
|
4887 |
|
4888 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
4889 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
4890 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
4891 |
msgid "minutes"
|
4892 |
msgstr "perc"
|
4893 |
|
4896 |
msgstr ""
|
4897 |
|
4898 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
4899 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
4900 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
4901 |
msgid "seconds"
|
4902 |
msgstr "másodperc"
|
4903 |
|
4909 |
msgid "Custom sidebar for single and modal page of MEC."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: app/libraries/feed.php:83
|
4913 |
msgid "There is no excerpt because this is a protected post."
|
4914 |
msgstr ""
|
4915 |
|
4968 |
msgid "Slider View"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
4972 |
msgid "SU"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
4976 |
msgid "MO"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
4980 |
msgid "TU"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
4984 |
msgid "WE"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
4988 |
msgid "TH"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
4992 |
msgid "FR"
|
4993 |
msgstr ""
|
4994 |
|
4995 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
4996 |
msgid "SA"
|
4997 |
msgstr ""
|
4998 |
|
5175 |
msgid "%s booked %s event."
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: app/libraries/main.php:4361
|
5179 |
msgid "Taxonomies"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: app/libraries/main.php:4363
|
5183 |
msgid "Category Plural Label"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: app/libraries/main.php:4364
|
5187 |
msgid "Category Singular Label"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
+
#: app/libraries/main.php:4365
|
5191 |
msgid "Label Plural Label"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: app/libraries/main.php:4366
|
5195 |
msgid "Label Singular Label"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: app/libraries/main.php:4366
|
5199 |
msgid "label"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: app/libraries/main.php:4367
|
5203 |
msgid "Location Plural Label"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
+
#: app/libraries/main.php:4368
|
5207 |
msgid "Location Singular Label"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: app/libraries/main.php:4369
|
5211 |
msgid "Organizer Plural Label"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
+
#: app/libraries/main.php:4370
|
5215 |
msgid "Organizer Singular Label"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: app/libraries/main.php:4371
|
5219 |
msgid "Speaker Plural Label"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: app/libraries/main.php:4372
|
5223 |
msgid "Speaker Singular Label"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
+
#: app/libraries/main.php:4378
|
5227 |
msgid "Sunday abbreviation"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: app/libraries/main.php:4379
|
5231 |
msgid "Monday abbreviation"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: app/libraries/main.php:4380
|
5235 |
msgid "Tuesday abbreviation"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: app/libraries/main.php:4381
|
5239 |
msgid "Wednesday abbreviation"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
+
#: app/libraries/main.php:4382
|
5243 |
msgid "Thursday abbreviation"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: app/libraries/main.php:4383
|
5247 |
msgid "Friday abbreviation"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: app/libraries/main.php:4384
|
5251 |
msgid "Saturday abbreviation"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
+
#: app/libraries/main.php:4388
|
5255 |
msgid "Others"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: app/libraries/main.php:4390
|
5259 |
msgid "Booking Success Message"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: app/libraries/main.php:4390
|
5263 |
msgid ""
|
5264 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5265 |
"needed, please check your email."
|
5267 |
"Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
|
5268 |
"jóváhagyásra lesz szükség!"
|
5269 |
|
5270 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5271 |
msgid "Register Button"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5275 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5276 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5277 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5278 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5279 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5280 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5281 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5282 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5283 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5284 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5285 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5286 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5287 |
msgid "REGISTER"
|
5288 |
msgstr "REGISZTRÁCIÓ"
|
5289 |
|
5290 |
+
#: app/libraries/main.php:4392
|
5291 |
msgid "View Detail Button"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5295 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5296 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5297 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5298 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5299 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5300 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5301 |
+
#: app/skins/slider/render.php:305
|
5302 |
msgid "View Detail"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
+
#: app/libraries/main.php:4393
|
5306 |
msgid "Event Detail Button"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5310 |
msgid "Event Detail"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
+
#: app/libraries/main.php:4395
|
5314 |
msgid "More Info Link"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
+
#: app/libraries/main.php:4398
|
5318 |
msgid "Ticket (Singular)"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
+
#: app/libraries/main.php:4399
|
5322 |
msgid "Tickets (Plural)"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: app/libraries/main.php:4466
|
5326 |
msgid "EventON"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
+
#: app/libraries/main.php:4467
|
5330 |
msgid "The Events Calendar"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
+
#: app/libraries/main.php:4468
|
5334 |
msgid "Events Schedule WP Plugin"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
+
#: app/libraries/main.php:4469
|
5338 |
msgid "Calendarize It"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
+
#: app/libraries/main.php:4543
|
5342 |
msgid "Confirmed"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
+
#: app/libraries/main.php:4544
|
5346 |
msgid "Rejected"
|
5347 |
msgstr ""
|
5348 |
|
5349 |
+
#: app/libraries/main.php:4545
|
5350 |
msgid "Pending"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
+
#: app/libraries/main.php:4560
|
5354 |
msgid "Waiting"
|
5355 |
msgstr ""
|
5356 |
|
5370 |
msgid "A new booking is received."
|
5371 |
msgstr ""
|
5372 |
|
5373 |
+
#: app/libraries/notifications.php:338
|
5374 |
msgid "A new event is added."
|
5375 |
msgstr ""
|
5376 |
|
5377 |
+
#: app/libraries/notifications.php:509
|
5378 |
msgid "to"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5382 |
msgid "+ Add to Google Calendar"
|
5383 |
msgstr "+ Google Naptárba mentés"
|
5384 |
|
5385 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5386 |
msgid "+ iCal export"
|
5387 |
msgstr "+ iCal Exportálás"
|
5388 |
|
5389 |
+
#: app/libraries/notifications.php:582
|
5390 |
msgid "Yes"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
+
#: app/libraries/notifications.php:582
|
5394 |
msgid "No"
|
5395 |
msgstr ""
|
5396 |
|
5405 |
msgid "All of the day"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
+
#: app/libraries/skins.php:902
|
5409 |
msgid "Ignore month and years"
|
5410 |
msgstr ""
|
5411 |
|
5447 |
msgstr ""
|
5448 |
|
5449 |
#: app/modules/booking/steps/form.php:162
|
5450 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5451 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5452 |
msgid "Next"
|
5453 |
msgstr "Tovább"
|
5454 |
|
5572 |
msgstr ""
|
5573 |
|
5574 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5575 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5576 |
msgid "Load More"
|
5577 |
msgstr "Tovább"
|
5578 |
|
5579 |
+
#: app/skins/available_spot/tpl.php:138
|
5580 |
msgid "Available Spot(s):"
|
5581 |
msgstr ""
|
5582 |
|
5584 |
msgid "View All"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5588 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5589 |
+
#: app/skins/list/render.php:119
|
5590 |
msgid "EVENT DETAIL"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5594 |
+
#: app/skins/countdown/tpl.php:206
|
5595 |
#, php-format
|
5596 |
msgid "%s Upcoming Event"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: app/skins/cover/tpl.php:81
|
5600 |
msgid "featured event"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: app/skins/daily_view/render.php:78
|
5604 |
msgid "No event"
|
5605 |
msgstr ""
|
5606 |
|
5613 |
msgstr ""
|
5614 |
|
5615 |
#: app/skins/monthly_view/calendar.php:66
|
5616 |
+
#: app/skins/monthly_view/calendar.php:152
|
5617 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5618 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5619 |
#, php-format
|
5620 |
msgid "Events for %s"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: app/skins/monthly_view/calendar.php:154
|
5624 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5625 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5626 |
msgid "No Events"
|
5627 |
msgstr ""
|
5628 |
|
languages/modern-events-calendar-lite-it_IT.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-it_IT.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it_IT\n"
|
@@ -30,8 +30,8 @@ msgstr "Calendario moderno degli eventi"
|
|
30 |
msgid "Content"
|
31 |
msgstr "Contenuto"
|
32 |
|
33 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
34 |
-
#: app/features/mec.php:
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Shortcode"
|
37 |
|
@@ -62,7 +62,7 @@ msgstr "Seleziona tutto"
|
|
62 |
msgid "Event Color"
|
63 |
msgstr "Colore Evento"
|
64 |
|
65 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
66 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
67 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
68 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -267,7 +267,7 @@ msgstr "Eventi"
|
|
267 |
msgid "Event"
|
268 |
msgstr "Evento"
|
269 |
|
270 |
-
#: app/features/events.php:134 app/features/mec.php:
|
271 |
msgid "Add Event"
|
272 |
msgstr "Aggiungi Evento"
|
273 |
|
@@ -307,16 +307,16 @@ msgstr "Nessun evento trovato nel cestino!"
|
|
307 |
#: app/features/mec/meta_boxes/search_form.php:362
|
308 |
#: app/features/mec/meta_boxes/search_form.php:416
|
309 |
#: app/features/mec/meta_boxes/search_form.php:477
|
310 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
311 |
-
#: app/libraries/skins.php:
|
312 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
313 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
314 |
msgid "Category"
|
315 |
msgstr "Categoria"
|
316 |
|
317 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
318 |
-
#: app/features/mec.php:
|
319 |
-
#: app/libraries/main.php:
|
320 |
msgid "Categories"
|
321 |
msgstr "Categorie"
|
322 |
|
@@ -391,13 +391,13 @@ msgstr "Dettaglio Evento"
|
|
391 |
#: app/features/events.php:296 app/features/events.php:2053
|
392 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
393 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
394 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
395 |
#: app/widgets/single.php:103
|
396 |
msgid "Event Cost"
|
397 |
msgstr "Costo Evento"
|
398 |
|
399 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
400 |
-
#: app/libraries/main.php:
|
401 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
402 |
#: app/skins/single/modern.php:184
|
403 |
msgid "Cost"
|
@@ -414,7 +414,7 @@ msgstr "Dati dell'ospite"
|
|
414 |
#: app/features/events.php:380 app/features/events.php:1237
|
415 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
417 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
418 |
#: app/modules/booking/steps/form.php:35
|
419 |
msgid "Name"
|
420 |
msgstr "Nome"
|
@@ -426,7 +426,7 @@ msgstr "Nome"
|
|
426 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
427 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
428 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
429 |
-
#: app/libraries/notifications.php:
|
430 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
431 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -753,9 +753,9 @@ msgstr "Descrizione"
|
|
753 |
|
754 |
#: app/features/events.php:683 app/features/events.php:703
|
755 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
756 |
-
#: app/features/mec.php:
|
757 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
758 |
-
#: app/libraries/main.php:
|
759 |
msgid "Speakers"
|
760 |
msgstr ""
|
761 |
|
@@ -771,7 +771,7 @@ msgid "Event Links"
|
|
771 |
msgstr "Link dell'evento"
|
772 |
|
773 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
774 |
-
#: app/libraries/main.php:
|
775 |
msgid "Event Link"
|
776 |
msgstr "Link dell'evento"
|
777 |
|
@@ -789,7 +789,7 @@ msgstr ""
|
|
789 |
"eventi predefiniti. Inserisci il collegamento completo compreso http (s): //"
|
790 |
|
791 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
792 |
-
#: app/libraries/main.php:
|
793 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
794 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
795 |
#: app/widgets/single.php:107
|
@@ -824,7 +824,7 @@ msgstr "Limite totale delle prenotazioni"
|
|
824 |
#: app/features/events.php:818 app/features/events.php:910
|
825 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
826 |
#: app/modules/booking/steps/tickets.php:40
|
827 |
-
#: app/skins/available_spot/tpl.php:
|
828 |
msgid "Unlimited"
|
829 |
msgstr "Illimitato"
|
830 |
|
@@ -833,7 +833,7 @@ msgid "100"
|
|
833 |
msgstr "100"
|
834 |
|
835 |
#: app/features/events.php:838 app/libraries/book.php:60
|
836 |
-
#: app/libraries/main.php:
|
837 |
msgid "Tickets"
|
838 |
msgstr "Biglietto/ticket"
|
839 |
|
@@ -901,7 +901,7 @@ msgstr "Etichetta prezzo"
|
|
901 |
#: app/features/mec/meta_boxes/search_form.php:397
|
902 |
#: app/features/mec/meta_boxes/search_form.php:451
|
903 |
#: app/features/mec/meta_boxes/search_form.php:512
|
904 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
905 |
msgid "Label"
|
906 |
msgstr "Etichetta"
|
907 |
|
@@ -1128,7 +1128,7 @@ msgstr ""
|
|
1128 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1131 |
-
#: app/libraries/main.php:
|
1132 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1133 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1134 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1149,7 +1149,7 @@ msgstr "Luogo"
|
|
1149 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1150 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1151 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1152 |
-
#: app/libraries/main.php:
|
1153 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1154 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1155 |
#: app/skins/single/modern.php:21
|
@@ -1289,14 +1289,14 @@ msgid "Remove Image"
|
|
1289 |
msgstr "Rimuovi immagine"
|
1290 |
|
1291 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1292 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1293 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1294 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1295 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1296 |
msgid "Labels"
|
1297 |
msgstr "Etichette"
|
1298 |
|
1299 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1300 |
#: app/features/mec/meta_boxes/filter.php:138
|
1301 |
msgid "Tags"
|
1302 |
msgstr "Tag"
|
@@ -2010,31 +2010,31 @@ msgid "Normal"
|
|
2010 |
msgstr ""
|
2011 |
|
2012 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2013 |
-
#: app/skins/agenda/render.php:
|
2014 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2015 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
2016 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2017 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2018 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2019 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2020 |
-
#: app/skins/timetable/render.php:
|
2021 |
-
#: app/skins/weekly_view/render.php:
|
2022 |
#, fuzzy
|
2023 |
#| msgid "Featured Image"
|
2024 |
msgid "Featured"
|
2025 |
msgstr "Immagine in evidenza"
|
2026 |
|
2027 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2028 |
-
#: app/libraries/main.php:
|
2029 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2030 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2031 |
-
#: app/skins/daily_view/render.php:
|
2032 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2033 |
#: app/skins/monthly_view/calendar.php:84
|
2034 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2035 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2036 |
-
#: app/skins/timetable/render.php:
|
2037 |
-
#: app/skins/weekly_view/render.php:
|
2038 |
msgid "Canceled"
|
2039 |
msgstr "Cancellato"
|
2040 |
|
@@ -2058,9 +2058,9 @@ msgstr "Slug"
|
|
2058 |
msgid "Event %s"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2062 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2063 |
-
#: app/libraries/main.php:
|
2064 |
msgid "Locations"
|
2065 |
msgstr "Luoghi"
|
2066 |
|
@@ -2156,7 +2156,7 @@ msgstr "Seleziona immagine"
|
|
2156 |
msgid "Don't show map in single event page"
|
2157 |
msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
|
2158 |
|
2159 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2160 |
#, fuzzy
|
2161 |
#| msgid "Search Locations"
|
2162 |
msgid "Other Locations"
|
@@ -2167,41 +2167,41 @@ msgid ""
|
|
2167 |
"You can select extra locations in addition to main location if you like."
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: app/features/mec.php:
|
2171 |
msgid ""
|
2172 |
"Activation faild. Please check your purchase code or license type."
|
2173 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: app/features/mec.php:
|
2177 |
msgid "Troubleshooting"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: app/features/mec.php:
|
2181 |
msgid ""
|
2182 |
"Your options is not in JSON format. Please insert correct options in this "
|
2183 |
"field and try again."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: app/features/mec.php:
|
2187 |
#, fuzzy
|
2188 |
#| msgid "Your booking cannot verify!"
|
2189 |
msgid "Your options field can not be empty!"
|
2190 |
msgstr "La tua prenotazione non può essere verificata!"
|
2191 |
|
2192 |
-
#: app/features/mec.php:
|
2193 |
#, fuzzy
|
2194 |
#| msgid "Your booking successfully verified."
|
2195 |
msgid "Your options imported successfuly."
|
2196 |
msgstr "La tua prenotazione è stata verificata correttamente."
|
2197 |
|
2198 |
-
#: app/features/mec.php:
|
2199 |
#, fuzzy
|
2200 |
#| msgid "Support"
|
2201 |
msgid "MEC - Support"
|
2202 |
msgstr "Supporto"
|
2203 |
|
2204 |
-
#: app/features/mec.php:
|
2205 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2206 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2207 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2210,64 +2210,64 @@ msgstr "Supporto"
|
|
2210 |
msgid "Support"
|
2211 |
msgstr "Supporto"
|
2212 |
|
2213 |
-
#: app/features/mec.php:
|
2214 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2215 |
-
#: app/libraries/main.php:
|
2216 |
msgid "Organizers"
|
2217 |
msgstr "Organizzatori"
|
2218 |
|
2219 |
-
#: app/features/mec.php:
|
2220 |
#: app/features/mec/dashboard.php:164
|
2221 |
msgid "Shortcodes"
|
2222 |
msgstr "Shortcode"
|
2223 |
|
2224 |
-
#: app/features/mec.php:
|
2225 |
msgid "MEC - Settings"
|
2226 |
msgstr "Impostazioni Calendario"
|
2227 |
|
2228 |
-
#: app/features/mec.php:
|
2229 |
#, fuzzy
|
2230 |
#| msgid "MEC - Settings"
|
2231 |
msgid "MEC - Addons"
|
2232 |
msgstr "Impostazioni Calendario"
|
2233 |
|
2234 |
-
#: app/features/mec.php:
|
2235 |
msgid "Addons"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: app/features/mec.php:
|
2239 |
msgid "Add Shortcode"
|
2240 |
msgstr "Aggiungi Shortcode"
|
2241 |
|
2242 |
-
#: app/features/mec.php:
|
2243 |
msgid "Add New Shortcode"
|
2244 |
msgstr "Aggiungi un nuovo Shortcode"
|
2245 |
|
2246 |
-
#: app/features/mec.php:
|
2247 |
msgid "No shortcodes found!"
|
2248 |
msgstr "Nessun shortcode trovato!"
|
2249 |
|
2250 |
-
#: app/features/mec.php:
|
2251 |
msgid "All Shortcodes"
|
2252 |
msgstr "Tutti gli Shortcode"
|
2253 |
|
2254 |
-
#: app/features/mec.php:
|
2255 |
msgid "Edit shortcodes"
|
2256 |
msgstr "Modifica shortcode"
|
2257 |
|
2258 |
-
#: app/features/mec.php:
|
2259 |
msgid "No shortcodes found in Trash!"
|
2260 |
msgstr "Nessun shortcode trovato nel cestino!"
|
2261 |
|
2262 |
-
#: app/features/mec.php:
|
2263 |
msgid "Display Options"
|
2264 |
msgstr "Opzioni display"
|
2265 |
|
2266 |
-
#: app/features/mec.php:
|
2267 |
msgid "Filter Options"
|
2268 |
msgstr "Opzioni filtro"
|
2269 |
|
2270 |
-
#: app/features/mec.php:
|
2271 |
msgid "Search Form"
|
2272 |
msgstr "Casella di ricerca"
|
2273 |
|
@@ -2275,15 +2275,15 @@ msgstr "Casella di ricerca"
|
|
2275 |
msgid "Display content's images as Popup"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: app/features/mec.php:
|
2279 |
msgid "Single Event Display Method"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: app/features/mec.php:
|
2283 |
msgid "Separate Window"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: app/features/mec.php:
|
2287 |
msgid "Modal 1"
|
2288 |
msgstr ""
|
2289 |
|
@@ -3232,8 +3232,8 @@ msgstr "Disattivato"
|
|
3232 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3233 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3234 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3235 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3236 |
-
#: app/libraries/skins.php:
|
3237 |
msgid "Speaker"
|
3238 |
msgstr ""
|
3239 |
|
@@ -3245,7 +3245,7 @@ msgstr ""
|
|
3245 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3246 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3247 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3248 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3249 |
#, fuzzy
|
3250 |
#| msgid "Tags"
|
3251 |
msgid "Tag"
|
@@ -3754,7 +3754,7 @@ msgstr "Escludi suffisso data"
|
|
3754 |
msgid "Remove suffix from calendars"
|
3755 |
msgstr "Rimuovi il suffisso dai calendari"
|
3756 |
|
3757 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3758 |
msgid "Weekdays"
|
3759 |
msgstr "Settimanali"
|
3760 |
|
@@ -4445,7 +4445,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4445 |
msgstr ""
|
4446 |
|
4447 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4448 |
-
#: app/libraries/main.php:
|
4449 |
msgid "Verified"
|
4450 |
msgstr "Verificato"
|
4451 |
|
@@ -5006,7 +5006,7 @@ msgstr "es. mario@rossi.it"
|
|
5006 |
msgid "eg. https://webnus.net"
|
5007 |
msgstr "http://webnus.biz"
|
5008 |
|
5009 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
5010 |
#: app/skins/single.php:194
|
5011 |
msgid "Other Organizers"
|
5012 |
msgstr ""
|
@@ -5044,7 +5044,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5044 |
msgstr ""
|
5045 |
|
5046 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5047 |
-
#: app/libraries/main.php:
|
5048 |
msgid "Ticket"
|
5049 |
msgstr "Ticket"
|
5050 |
|
@@ -5123,8 +5123,8 @@ msgstr ""
|
|
5123 |
msgid "Discount"
|
5124 |
msgstr "Sconto"
|
5125 |
|
5126 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5127 |
-
#: app/modules/booking/default.php:
|
5128 |
msgid "Download Invoice"
|
5129 |
msgstr ""
|
5130 |
|
@@ -5152,8 +5152,8 @@ msgid "day"
|
|
5152 |
msgstr "giorno"
|
5153 |
|
5154 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5155 |
-
#: app/skins/available_spot/tpl.php:
|
5156 |
-
#: app/skins/countdown/tpl.php:
|
5157 |
msgid "days"
|
5158 |
msgstr "giorni"
|
5159 |
|
@@ -5162,8 +5162,8 @@ msgid "hour"
|
|
5162 |
msgstr "ora"
|
5163 |
|
5164 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5165 |
-
#: app/skins/available_spot/tpl.php:
|
5166 |
-
#: app/skins/countdown/tpl.php:
|
5167 |
msgid "hours"
|
5168 |
msgstr "ore"
|
5169 |
|
@@ -5172,8 +5172,8 @@ msgid "minute"
|
|
5172 |
msgstr "minuto"
|
5173 |
|
5174 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5175 |
-
#: app/skins/available_spot/tpl.php:
|
5176 |
-
#: app/skins/countdown/tpl.php:
|
5177 |
msgid "minutes"
|
5178 |
msgstr "minuti"
|
5179 |
|
@@ -5182,8 +5182,8 @@ msgid "second"
|
|
5182 |
msgstr "secondo"
|
5183 |
|
5184 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5185 |
-
#: app/skins/available_spot/tpl.php:
|
5186 |
-
#: app/skins/countdown/tpl.php:
|
5187 |
msgid "seconds"
|
5188 |
msgstr "secondi"
|
5189 |
|
@@ -5195,7 +5195,7 @@ msgstr ""
|
|
5195 |
msgid "Custom sidebar for single and modal page of MEC."
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: app/libraries/feed.php:
|
5199 |
msgid "There is no excerpt because this is a protected post."
|
5200 |
msgstr "Il riassunto non è disponibile perché l'articolo è protetto."
|
5201 |
|
@@ -5254,31 +5254,31 @@ msgstr "Visualizza carosello"
|
|
5254 |
msgid "Slider View"
|
5255 |
msgstr "Visualizza slider"
|
5256 |
|
5257 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5258 |
msgid "SU"
|
5259 |
msgstr "D"
|
5260 |
|
5261 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5262 |
msgid "MO"
|
5263 |
msgstr "L"
|
5264 |
|
5265 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5266 |
msgid "TU"
|
5267 |
msgstr "M"
|
5268 |
|
5269 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5270 |
msgid "WE"
|
5271 |
msgstr "M"
|
5272 |
|
5273 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5274 |
msgid "TH"
|
5275 |
msgstr "G"
|
5276 |
|
5277 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5278 |
msgid "FR"
|
5279 |
msgstr "V"
|
5280 |
|
5281 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5282 |
msgid "SA"
|
5283 |
msgstr "S"
|
5284 |
|
@@ -5463,95 +5463,95 @@ msgstr "Prenotato un evento."
|
|
5463 |
msgid "%s booked %s event."
|
5464 |
msgstr "%s ha prenotato l'evento %s."
|
5465 |
|
5466 |
-
#: app/libraries/main.php:
|
5467 |
msgid "Taxonomies"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: app/libraries/main.php:
|
5471 |
msgid "Category Plural Label"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: app/libraries/main.php:
|
5475 |
msgid "Category Singular Label"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: app/libraries/main.php:
|
5479 |
msgid "Label Plural Label"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: app/libraries/main.php:
|
5483 |
msgid "Label Singular Label"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: app/libraries/main.php:
|
5487 |
msgid "label"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: app/libraries/main.php:
|
5491 |
msgid "Location Plural Label"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: app/libraries/main.php:
|
5495 |
msgid "Location Singular Label"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: app/libraries/main.php:
|
5499 |
msgid "Organizer Plural Label"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: app/libraries/main.php:
|
5503 |
msgid "Organizer Singular Label"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: app/libraries/main.php:
|
5507 |
#, fuzzy
|
5508 |
#| msgid "Search Labels"
|
5509 |
msgid "Speaker Plural Label"
|
5510 |
msgstr "Cerca etichette"
|
5511 |
|
5512 |
-
#: app/libraries/main.php:
|
5513 |
#, fuzzy
|
5514 |
#| msgid "Popular Labels"
|
5515 |
msgid "Speaker Singular Label"
|
5516 |
msgstr "Etichette frequenti"
|
5517 |
|
5518 |
-
#: app/libraries/main.php:
|
5519 |
msgid "Sunday abbreviation"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: app/libraries/main.php:
|
5523 |
msgid "Monday abbreviation"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: app/libraries/main.php:
|
5527 |
msgid "Tuesday abbreviation"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: app/libraries/main.php:
|
5531 |
msgid "Wednesday abbreviation"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
-
#: app/libraries/main.php:
|
5535 |
msgid "Thursday abbreviation"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
-
#: app/libraries/main.php:
|
5539 |
msgid "Friday abbreviation"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
-
#: app/libraries/main.php:
|
5543 |
msgid "Saturday abbreviation"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: app/libraries/main.php:
|
5547 |
msgid "Others"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: app/libraries/main.php:
|
5551 |
msgid "Booking Success Message"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
-
#: app/libraries/main.php:
|
5555 |
msgid ""
|
5556 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5557 |
"needed, please check your email."
|
@@ -5560,90 +5560,90 @@ msgstr ""
|
|
5560 |
"essere necessario la verifica della prenotazione, si prega di controllare la "
|
5561 |
"posta elettronica."
|
5562 |
|
5563 |
-
#: app/libraries/main.php:
|
5564 |
msgid "Register Button"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: app/libraries/main.php:
|
5568 |
-
#: app/skins/carousel/render.php:
|
5569 |
-
#: app/skins/grid/render.php:
|
5570 |
-
#: app/skins/grid/render.php:
|
5571 |
-
#: app/skins/list/render.php:
|
5572 |
-
#: app/skins/masonry/render.php:
|
5573 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5574 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5575 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5576 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5577 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5578 |
-
#: app/skins/slider/render.php:
|
5579 |
-
#: app/skins/slider/render.php:
|
5580 |
msgid "REGISTER"
|
5581 |
msgstr "REGISTRA"
|
5582 |
|
5583 |
-
#: app/libraries/main.php:
|
5584 |
msgid "View Detail Button"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
-
#: app/libraries/main.php:
|
5588 |
-
#: app/skins/carousel/render.php:
|
5589 |
-
#: app/skins/grid/render.php:
|
5590 |
-
#: app/skins/grid/render.php:
|
5591 |
-
#: app/skins/list/render.php:
|
5592 |
-
#: app/skins/slider/render.php:
|
5593 |
-
#: app/skins/slider/render.php:
|
5594 |
-
#: app/skins/slider/render.php:
|
5595 |
msgid "View Detail"
|
5596 |
msgstr "Visualizza dettaglio"
|
5597 |
|
5598 |
-
#: app/libraries/main.php:
|
5599 |
msgid "Event Detail Button"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
-
#: app/libraries/main.php:
|
5603 |
msgid "Event Detail"
|
5604 |
msgstr "Dettaglio evento"
|
5605 |
|
5606 |
-
#: app/libraries/main.php:
|
5607 |
msgid "More Info Link"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: app/libraries/main.php:
|
5611 |
msgid "Ticket (Singular)"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
-
#: app/libraries/main.php:
|
5615 |
msgid "Tickets (Plural)"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
-
#: app/libraries/main.php:
|
5619 |
msgid "EventON"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
-
#: app/libraries/main.php:
|
5623 |
msgid "The Events Calendar"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: app/libraries/main.php:
|
5627 |
msgid "Events Schedule WP Plugin"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
-
#: app/libraries/main.php:
|
5631 |
msgid "Calendarize It"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
-
#: app/libraries/main.php:
|
5635 |
msgid "Confirmed"
|
5636 |
msgstr "Confermato"
|
5637 |
|
5638 |
-
#: app/libraries/main.php:
|
5639 |
msgid "Rejected"
|
5640 |
msgstr "Rifiutato"
|
5641 |
|
5642 |
-
#: app/libraries/main.php:
|
5643 |
msgid "Pending"
|
5644 |
msgstr "In attesa"
|
5645 |
|
5646 |
-
#: app/libraries/main.php:
|
5647 |
msgid "Waiting"
|
5648 |
msgstr "In attesa"
|
5649 |
|
@@ -5663,27 +5663,27 @@ msgstr "La tua prenotazione è confermata."
|
|
5663 |
msgid "A new booking is received."
|
5664 |
msgstr "Una nuova prenotazione è stata ricevuta."
|
5665 |
|
5666 |
-
#: app/libraries/notifications.php:
|
5667 |
msgid "A new event is added."
|
5668 |
msgstr "Un nuovo evento è stato aggiunto."
|
5669 |
|
5670 |
-
#: app/libraries/notifications.php:
|
5671 |
msgid "to"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
-
#: app/libraries/notifications.php:
|
5675 |
msgid "+ Add to Google Calendar"
|
5676 |
msgstr "+ Aggiungi a Google Calendar"
|
5677 |
|
5678 |
-
#: app/libraries/notifications.php:
|
5679 |
msgid "+ iCal export"
|
5680 |
msgstr "+ Esporta iCal"
|
5681 |
|
5682 |
-
#: app/libraries/notifications.php:
|
5683 |
msgid "Yes"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
-
#: app/libraries/notifications.php:
|
5687 |
msgid "No"
|
5688 |
msgstr ""
|
5689 |
|
@@ -5698,7 +5698,7 @@ msgstr "Non esiste il controllo dello stile."
|
|
5698 |
msgid "All of the day"
|
5699 |
msgstr "Tutti del giorno"
|
5700 |
|
5701 |
-
#: app/libraries/skins.php:
|
5702 |
msgid "Ignore month and years"
|
5703 |
msgstr "Ignora mesi e anni"
|
5704 |
|
@@ -5740,8 +5740,8 @@ msgid "Fill other attendees information like the first form."
|
|
5740 |
msgstr ""
|
5741 |
|
5742 |
#: app/modules/booking/steps/form.php:162
|
5743 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5744 |
-
#: app/skins/countdown/tpl.php:
|
5745 |
msgid "Next"
|
5746 |
msgstr "Avanti"
|
5747 |
|
@@ -5865,11 +5865,11 @@ msgid "No event found!"
|
|
5865 |
msgstr "Nessun evento trovato!"
|
5866 |
|
5867 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5868 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5869 |
msgid "Load More"
|
5870 |
msgstr "Carica altro"
|
5871 |
|
5872 |
-
#: app/skins/available_spot/tpl.php:
|
5873 |
msgid "Available Spot(s):"
|
5874 |
msgstr ""
|
5875 |
|
@@ -5879,23 +5879,23 @@ msgstr ""
|
|
5879 |
msgid "View All"
|
5880 |
msgstr "Visualizza Etichetta"
|
5881 |
|
5882 |
-
#: app/skins/carousel/render.php:
|
5883 |
-
#: app/skins/countdown/tpl.php:
|
5884 |
-
#: app/skins/list/render.php:
|
5885 |
msgid "EVENT DETAIL"
|
5886 |
msgstr "DETTAGLIO EVENTO"
|
5887 |
|
5888 |
-
#: app/skins/countdown/tpl.php:
|
5889 |
-
#: app/skins/countdown/tpl.php:
|
5890 |
#, php-format
|
5891 |
msgid "%s Upcoming Event"
|
5892 |
msgstr "%s Prossimo evento"
|
5893 |
|
5894 |
-
#: app/skins/cover/tpl.php:
|
5895 |
msgid "featured event"
|
5896 |
msgstr "evento in evidenza"
|
5897 |
|
5898 |
-
#: app/skins/daily_view/render.php:
|
5899 |
msgid "No event"
|
5900 |
msgstr "Nessun evento"
|
5901 |
|
@@ -5908,16 +5908,16 @@ msgid "All"
|
|
5908 |
msgstr ""
|
5909 |
|
5910 |
#: app/skins/monthly_view/calendar.php:66
|
5911 |
-
#: app/skins/monthly_view/calendar.php:
|
5912 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5913 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5914 |
#, php-format
|
5915 |
msgid "Events for %s"
|
5916 |
msgstr "Eventi di %s"
|
5917 |
|
5918 |
-
#: app/skins/monthly_view/calendar.php:
|
5919 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5920 |
-
#: app/skins/timetable/render.php:
|
5921 |
msgid "No Events"
|
5922 |
msgstr "Nessun evento"
|
5923 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:42+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it_IT\n"
|
30 |
msgid "Content"
|
31 |
msgstr "Contenuto"
|
32 |
|
33 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
34 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Shortcode"
|
37 |
|
62 |
msgid "Event Color"
|
63 |
msgstr "Colore Evento"
|
64 |
|
65 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
66 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
67 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
68 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
267 |
msgid "Event"
|
268 |
msgstr "Evento"
|
269 |
|
270 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
271 |
msgid "Add Event"
|
272 |
msgstr "Aggiungi Evento"
|
273 |
|
307 |
#: app/features/mec/meta_boxes/search_form.php:362
|
308 |
#: app/features/mec/meta_boxes/search_form.php:416
|
309 |
#: app/features/mec/meta_boxes/search_form.php:477
|
310 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
311 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
312 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
313 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
314 |
msgid "Category"
|
315 |
msgstr "Categoria"
|
316 |
|
317 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
318 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
319 |
+
#: app/libraries/main.php:4363
|
320 |
msgid "Categories"
|
321 |
msgstr "Categorie"
|
322 |
|
391 |
#: app/features/events.php:296 app/features/events.php:2053
|
392 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
393 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
394 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
395 |
#: app/widgets/single.php:103
|
396 |
msgid "Event Cost"
|
397 |
msgstr "Costo Evento"
|
398 |
|
399 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
400 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
401 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
402 |
#: app/skins/single/modern.php:184
|
403 |
msgid "Cost"
|
414 |
#: app/features/events.php:380 app/features/events.php:1237
|
415 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
417 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
418 |
#: app/modules/booking/steps/form.php:35
|
419 |
msgid "Name"
|
420 |
msgstr "Nome"
|
426 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
427 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
428 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
429 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
430 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
431 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
753 |
|
754 |
#: app/features/events.php:683 app/features/events.php:703
|
755 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
756 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
757 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
758 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
759 |
msgid "Speakers"
|
760 |
msgstr ""
|
761 |
|
771 |
msgstr "Link dell'evento"
|
772 |
|
773 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
774 |
+
#: app/libraries/main.php:4394
|
775 |
msgid "Event Link"
|
776 |
msgstr "Link dell'evento"
|
777 |
|
789 |
"eventi predefiniti. Inserisci il collegamento completo compreso http (s): //"
|
790 |
|
791 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
792 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
793 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
794 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
795 |
#: app/widgets/single.php:107
|
824 |
#: app/features/events.php:818 app/features/events.php:910
|
825 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
826 |
#: app/modules/booking/steps/tickets.php:40
|
827 |
+
#: app/skins/available_spot/tpl.php:138
|
828 |
msgid "Unlimited"
|
829 |
msgstr "Illimitato"
|
830 |
|
833 |
msgstr "100"
|
834 |
|
835 |
#: app/features/events.php:838 app/libraries/book.php:60
|
836 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
837 |
msgid "Tickets"
|
838 |
msgstr "Biglietto/ticket"
|
839 |
|
901 |
#: app/features/mec/meta_boxes/search_form.php:397
|
902 |
#: app/features/mec/meta_boxes/search_form.php:451
|
903 |
#: app/features/mec/meta_boxes/search_form.php:512
|
904 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
905 |
msgid "Label"
|
906 |
msgstr "Etichetta"
|
907 |
|
1128 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1131 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1132 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1133 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1134 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1149 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1150 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1151 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1152 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1153 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1154 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1155 |
#: app/skins/single/modern.php:21
|
1289 |
msgstr "Rimuovi immagine"
|
1290 |
|
1291 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1292 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1293 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1294 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1295 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1296 |
msgid "Labels"
|
1297 |
msgstr "Etichette"
|
1298 |
|
1299 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1300 |
#: app/features/mec/meta_boxes/filter.php:138
|
1301 |
msgid "Tags"
|
1302 |
msgstr "Tag"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2013 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
2014 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2015 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
2016 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2017 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2018 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2019 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
2020 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2021 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
2022 |
#, fuzzy
|
2023 |
#| msgid "Featured Image"
|
2024 |
msgid "Featured"
|
2025 |
msgstr "Immagine in evidenza"
|
2026 |
|
2027 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2028 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
2029 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2030 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2031 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2032 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2033 |
#: app/skins/monthly_view/calendar.php:84
|
2034 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2035 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
2036 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2037 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
2038 |
msgid "Canceled"
|
2039 |
msgstr "Cancellato"
|
2040 |
|
2058 |
msgid "Event %s"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2062 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2063 |
+
#: app/libraries/main.php:4367
|
2064 |
msgid "Locations"
|
2065 |
msgstr "Luoghi"
|
2066 |
|
2156 |
msgid "Don't show map in single event page"
|
2157 |
msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
|
2158 |
|
2159 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2160 |
#, fuzzy
|
2161 |
#| msgid "Search Locations"
|
2162 |
msgid "Other Locations"
|
2167 |
"You can select extra locations in addition to main location if you like."
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: app/features/mec.php:144
|
2171 |
msgid ""
|
2172 |
"Activation faild. Please check your purchase code or license type."
|
2173 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: app/features/mec.php:144
|
2177 |
msgid "Troubleshooting"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: app/features/mec.php:179
|
2181 |
msgid ""
|
2182 |
"Your options is not in JSON format. Please insert correct options in this "
|
2183 |
"field and try again."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: app/features/mec.php:183
|
2187 |
#, fuzzy
|
2188 |
#| msgid "Your booking cannot verify!"
|
2189 |
msgid "Your options field can not be empty!"
|
2190 |
msgstr "La tua prenotazione non può essere verificata!"
|
2191 |
|
2192 |
+
#: app/features/mec.php:187
|
2193 |
#, fuzzy
|
2194 |
#| msgid "Your booking successfully verified."
|
2195 |
msgid "Your options imported successfuly."
|
2196 |
msgstr "La tua prenotazione è stata verificata correttamente."
|
2197 |
|
2198 |
+
#: app/features/mec.php:274
|
2199 |
#, fuzzy
|
2200 |
#| msgid "Support"
|
2201 |
msgid "MEC - Support"
|
2202 |
msgstr "Supporto"
|
2203 |
|
2204 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2205 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2206 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2207 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2210 |
msgid "Support"
|
2211 |
msgstr "Supporto"
|
2212 |
|
2213 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2214 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2215 |
+
#: app/libraries/main.php:4369
|
2216 |
msgid "Organizers"
|
2217 |
msgstr "Organizzatori"
|
2218 |
|
2219 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2220 |
#: app/features/mec/dashboard.php:164
|
2221 |
msgid "Shortcodes"
|
2222 |
msgstr "Shortcode"
|
2223 |
|
2224 |
+
#: app/features/mec.php:303
|
2225 |
msgid "MEC - Settings"
|
2226 |
msgstr "Impostazioni Calendario"
|
2227 |
|
2228 |
+
#: app/features/mec.php:304
|
2229 |
#, fuzzy
|
2230 |
#| msgid "MEC - Settings"
|
2231 |
msgid "MEC - Addons"
|
2232 |
msgstr "Impostazioni Calendario"
|
2233 |
|
2234 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2235 |
msgid "Addons"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: app/features/mec.php:321
|
2239 |
msgid "Add Shortcode"
|
2240 |
msgstr "Aggiungi Shortcode"
|
2241 |
|
2242 |
+
#: app/features/mec.php:322
|
2243 |
msgid "Add New Shortcode"
|
2244 |
msgstr "Aggiungi un nuovo Shortcode"
|
2245 |
|
2246 |
+
#: app/features/mec.php:323
|
2247 |
msgid "No shortcodes found!"
|
2248 |
msgstr "Nessun shortcode trovato!"
|
2249 |
|
2250 |
+
#: app/features/mec.php:324
|
2251 |
msgid "All Shortcodes"
|
2252 |
msgstr "Tutti gli Shortcode"
|
2253 |
|
2254 |
+
#: app/features/mec.php:325
|
2255 |
msgid "Edit shortcodes"
|
2256 |
msgstr "Modifica shortcode"
|
2257 |
|
2258 |
+
#: app/features/mec.php:326
|
2259 |
msgid "No shortcodes found in Trash!"
|
2260 |
msgstr "Nessun shortcode trovato nel cestino!"
|
2261 |
|
2262 |
+
#: app/features/mec.php:373
|
2263 |
msgid "Display Options"
|
2264 |
msgstr "Opzioni display"
|
2265 |
|
2266 |
+
#: app/features/mec.php:374
|
2267 |
msgid "Filter Options"
|
2268 |
msgstr "Opzioni filtro"
|
2269 |
|
2270 |
+
#: app/features/mec.php:376
|
2271 |
msgid "Search Form"
|
2272 |
msgstr "Casella di ricerca"
|
2273 |
|
2275 |
msgid "Display content's images as Popup"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: app/features/mec.php:764
|
2279 |
msgid "Single Event Display Method"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: app/features/mec.php:769
|
2283 |
msgid "Separate Window"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: app/features/mec.php:770
|
2287 |
msgid "Modal 1"
|
2288 |
msgstr ""
|
2289 |
|
3232 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3233 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3234 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3235 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3236 |
+
#: app/libraries/skins.php:829
|
3237 |
msgid "Speaker"
|
3238 |
msgstr ""
|
3239 |
|
3245 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3246 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3247 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3248 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3249 |
#, fuzzy
|
3250 |
#| msgid "Tags"
|
3251 |
msgid "Tag"
|
3754 |
msgid "Remove suffix from calendars"
|
3755 |
msgstr "Rimuovi il suffisso dai calendari"
|
3756 |
|
3757 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3758 |
msgid "Weekdays"
|
3759 |
msgstr "Settimanali"
|
3760 |
|
4445 |
msgstr ""
|
4446 |
|
4447 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4448 |
+
#: app/libraries/main.php:4558
|
4449 |
msgid "Verified"
|
4450 |
msgstr "Verificato"
|
4451 |
|
5006 |
msgid "eg. https://webnus.net"
|
5007 |
msgstr "http://webnus.biz"
|
5008 |
|
5009 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
5010 |
#: app/skins/single.php:194
|
5011 |
msgid "Other Organizers"
|
5012 |
msgstr ""
|
5044 |
msgstr ""
|
5045 |
|
5046 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5047 |
+
#: app/libraries/main.php:4398
|
5048 |
msgid "Ticket"
|
5049 |
msgstr "Ticket"
|
5050 |
|
5123 |
msgid "Discount"
|
5124 |
msgstr "Sconto"
|
5125 |
|
5126 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5127 |
+
#: app/modules/booking/default.php:381
|
5128 |
msgid "Download Invoice"
|
5129 |
msgstr ""
|
5130 |
|
5152 |
msgstr "giorno"
|
5153 |
|
5154 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5155 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5156 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5157 |
msgid "days"
|
5158 |
msgstr "giorni"
|
5159 |
|
5162 |
msgstr "ora"
|
5163 |
|
5164 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5165 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5166 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5167 |
msgid "hours"
|
5168 |
msgstr "ore"
|
5169 |
|
5172 |
msgstr "minuto"
|
5173 |
|
5174 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5175 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5176 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5177 |
msgid "minutes"
|
5178 |
msgstr "minuti"
|
5179 |
|
5182 |
msgstr "secondo"
|
5183 |
|
5184 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5185 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5186 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5187 |
msgid "seconds"
|
5188 |
msgstr "secondi"
|
5189 |
|
5195 |
msgid "Custom sidebar for single and modal page of MEC."
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: app/libraries/feed.php:83
|
5199 |
msgid "There is no excerpt because this is a protected post."
|
5200 |
msgstr "Il riassunto non è disponibile perché l'articolo è protetto."
|
5201 |
|
5254 |
msgid "Slider View"
|
5255 |
msgstr "Visualizza slider"
|
5256 |
|
5257 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5258 |
msgid "SU"
|
5259 |
msgstr "D"
|
5260 |
|
5261 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5262 |
msgid "MO"
|
5263 |
msgstr "L"
|
5264 |
|
5265 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5266 |
msgid "TU"
|
5267 |
msgstr "M"
|
5268 |
|
5269 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5270 |
msgid "WE"
|
5271 |
msgstr "M"
|
5272 |
|
5273 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5274 |
msgid "TH"
|
5275 |
msgstr "G"
|
5276 |
|
5277 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5278 |
msgid "FR"
|
5279 |
msgstr "V"
|
5280 |
|
5281 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5282 |
msgid "SA"
|
5283 |
msgstr "S"
|
5284 |
|
5463 |
msgid "%s booked %s event."
|
5464 |
msgstr "%s ha prenotato l'evento %s."
|
5465 |
|
5466 |
+
#: app/libraries/main.php:4361
|
5467 |
msgid "Taxonomies"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
+
#: app/libraries/main.php:4363
|
5471 |
msgid "Category Plural Label"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: app/libraries/main.php:4364
|
5475 |
msgid "Category Singular Label"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: app/libraries/main.php:4365
|
5479 |
msgid "Label Plural Label"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: app/libraries/main.php:4366
|
5483 |
msgid "Label Singular Label"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: app/libraries/main.php:4366
|
5487 |
msgid "label"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: app/libraries/main.php:4367
|
5491 |
msgid "Location Plural Label"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: app/libraries/main.php:4368
|
5495 |
msgid "Location Singular Label"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: app/libraries/main.php:4369
|
5499 |
msgid "Organizer Plural Label"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: app/libraries/main.php:4370
|
5503 |
msgid "Organizer Singular Label"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: app/libraries/main.php:4371
|
5507 |
#, fuzzy
|
5508 |
#| msgid "Search Labels"
|
5509 |
msgid "Speaker Plural Label"
|
5510 |
msgstr "Cerca etichette"
|
5511 |
|
5512 |
+
#: app/libraries/main.php:4372
|
5513 |
#, fuzzy
|
5514 |
#| msgid "Popular Labels"
|
5515 |
msgid "Speaker Singular Label"
|
5516 |
msgstr "Etichette frequenti"
|
5517 |
|
5518 |
+
#: app/libraries/main.php:4378
|
5519 |
msgid "Sunday abbreviation"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
+
#: app/libraries/main.php:4379
|
5523 |
msgid "Monday abbreviation"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: app/libraries/main.php:4380
|
5527 |
msgid "Tuesday abbreviation"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
+
#: app/libraries/main.php:4381
|
5531 |
msgid "Wednesday abbreviation"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
+
#: app/libraries/main.php:4382
|
5535 |
msgid "Thursday abbreviation"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
+
#: app/libraries/main.php:4383
|
5539 |
msgid "Friday abbreviation"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
+
#: app/libraries/main.php:4384
|
5543 |
msgid "Saturday abbreviation"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
+
#: app/libraries/main.php:4388
|
5547 |
msgid "Others"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: app/libraries/main.php:4390
|
5551 |
msgid "Booking Success Message"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: app/libraries/main.php:4390
|
5555 |
msgid ""
|
5556 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5557 |
"needed, please check your email."
|
5560 |
"essere necessario la verifica della prenotazione, si prega di controllare la "
|
5561 |
"posta elettronica."
|
5562 |
|
5563 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5564 |
msgid "Register Button"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5568 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5569 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5570 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5571 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5572 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5573 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5574 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5575 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5576 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5577 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5578 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5579 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5580 |
msgid "REGISTER"
|
5581 |
msgstr "REGISTRA"
|
5582 |
|
5583 |
+
#: app/libraries/main.php:4392
|
5584 |
msgid "View Detail Button"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5588 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5589 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5590 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5591 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5592 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5593 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5594 |
+
#: app/skins/slider/render.php:305
|
5595 |
msgid "View Detail"
|
5596 |
msgstr "Visualizza dettaglio"
|
5597 |
|
5598 |
+
#: app/libraries/main.php:4393
|
5599 |
msgid "Event Detail Button"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5603 |
msgid "Event Detail"
|
5604 |
msgstr "Dettaglio evento"
|
5605 |
|
5606 |
+
#: app/libraries/main.php:4395
|
5607 |
msgid "More Info Link"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: app/libraries/main.php:4398
|
5611 |
msgid "Ticket (Singular)"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: app/libraries/main.php:4399
|
5615 |
msgid "Tickets (Plural)"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: app/libraries/main.php:4466
|
5619 |
msgid "EventON"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
+
#: app/libraries/main.php:4467
|
5623 |
msgid "The Events Calendar"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
+
#: app/libraries/main.php:4468
|
5627 |
msgid "Events Schedule WP Plugin"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
+
#: app/libraries/main.php:4469
|
5631 |
msgid "Calendarize It"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
+
#: app/libraries/main.php:4543
|
5635 |
msgid "Confirmed"
|
5636 |
msgstr "Confermato"
|
5637 |
|
5638 |
+
#: app/libraries/main.php:4544
|
5639 |
msgid "Rejected"
|
5640 |
msgstr "Rifiutato"
|
5641 |
|
5642 |
+
#: app/libraries/main.php:4545
|
5643 |
msgid "Pending"
|
5644 |
msgstr "In attesa"
|
5645 |
|
5646 |
+
#: app/libraries/main.php:4560
|
5647 |
msgid "Waiting"
|
5648 |
msgstr "In attesa"
|
5649 |
|
5663 |
msgid "A new booking is received."
|
5664 |
msgstr "Una nuova prenotazione è stata ricevuta."
|
5665 |
|
5666 |
+
#: app/libraries/notifications.php:338
|
5667 |
msgid "A new event is added."
|
5668 |
msgstr "Un nuovo evento è stato aggiunto."
|
5669 |
|
5670 |
+
#: app/libraries/notifications.php:509
|
5671 |
msgid "to"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5675 |
msgid "+ Add to Google Calendar"
|
5676 |
msgstr "+ Aggiungi a Google Calendar"
|
5677 |
|
5678 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5679 |
msgid "+ iCal export"
|
5680 |
msgstr "+ Esporta iCal"
|
5681 |
|
5682 |
+
#: app/libraries/notifications.php:582
|
5683 |
msgid "Yes"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
+
#: app/libraries/notifications.php:582
|
5687 |
msgid "No"
|
5688 |
msgstr ""
|
5689 |
|
5698 |
msgid "All of the day"
|
5699 |
msgstr "Tutti del giorno"
|
5700 |
|
5701 |
+
#: app/libraries/skins.php:902
|
5702 |
msgid "Ignore month and years"
|
5703 |
msgstr "Ignora mesi e anni"
|
5704 |
|
5740 |
msgstr ""
|
5741 |
|
5742 |
#: app/modules/booking/steps/form.php:162
|
5743 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5744 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5745 |
msgid "Next"
|
5746 |
msgstr "Avanti"
|
5747 |
|
5865 |
msgstr "Nessun evento trovato!"
|
5866 |
|
5867 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5868 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5869 |
msgid "Load More"
|
5870 |
msgstr "Carica altro"
|
5871 |
|
5872 |
+
#: app/skins/available_spot/tpl.php:138
|
5873 |
msgid "Available Spot(s):"
|
5874 |
msgstr ""
|
5875 |
|
5879 |
msgid "View All"
|
5880 |
msgstr "Visualizza Etichetta"
|
5881 |
|
5882 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5883 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5884 |
+
#: app/skins/list/render.php:119
|
5885 |
msgid "EVENT DETAIL"
|
5886 |
msgstr "DETTAGLIO EVENTO"
|
5887 |
|
5888 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5889 |
+
#: app/skins/countdown/tpl.php:206
|
5890 |
#, php-format
|
5891 |
msgid "%s Upcoming Event"
|
5892 |
msgstr "%s Prossimo evento"
|
5893 |
|
5894 |
+
#: app/skins/cover/tpl.php:81
|
5895 |
msgid "featured event"
|
5896 |
msgstr "evento in evidenza"
|
5897 |
|
5898 |
+
#: app/skins/daily_view/render.php:78
|
5899 |
msgid "No event"
|
5900 |
msgstr "Nessun evento"
|
5901 |
|
5908 |
msgstr ""
|
5909 |
|
5910 |
#: app/skins/monthly_view/calendar.php:66
|
5911 |
+
#: app/skins/monthly_view/calendar.php:152
|
5912 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5913 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5914 |
#, php-format
|
5915 |
msgid "Events for %s"
|
5916 |
msgstr "Eventi di %s"
|
5917 |
|
5918 |
+
#: app/skins/monthly_view/calendar.php:154
|
5919 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5920 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5921 |
msgid "No Events"
|
5922 |
msgstr "Nessun evento"
|
5923 |
|
languages/modern-events-calendar-lite-nb_NO.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-nb_NO.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb_NO\n"
|
@@ -30,8 +30,8 @@ msgstr "Modern Events Calendar"
|
|
30 |
msgid "Content"
|
31 |
msgstr "Innhold"
|
32 |
|
33 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
34 |
-
#: app/features/mec.php:
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Kortkode"
|
37 |
|
@@ -56,7 +56,7 @@ msgstr "Velg Type"
|
|
56 |
msgid "Event Color"
|
57 |
msgstr "Arrangementsfarge"
|
58 |
|
59 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
60 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
61 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
62 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -285,7 +285,7 @@ msgstr "Arrangementer"
|
|
285 |
msgid "Event"
|
286 |
msgstr "Arrangement"
|
287 |
|
288 |
-
#: app/features/events.php:134 app/features/mec.php:
|
289 |
msgid "Add Event"
|
290 |
msgstr "Legg til Arrangement"
|
291 |
|
@@ -325,16 +325,16 @@ msgstr "Ingen arrangement funnet i søppelbøtta!"
|
|
325 |
#: app/features/mec/meta_boxes/search_form.php:362
|
326 |
#: app/features/mec/meta_boxes/search_form.php:416
|
327 |
#: app/features/mec/meta_boxes/search_form.php:477
|
328 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
329 |
-
#: app/libraries/skins.php:
|
330 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
331 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
332 |
msgid "Category"
|
333 |
msgstr "Kategori"
|
334 |
|
335 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
336 |
-
#: app/features/mec.php:
|
337 |
-
#: app/libraries/main.php:
|
338 |
msgid "Categories"
|
339 |
msgstr "Kategorier"
|
340 |
|
@@ -409,13 +409,13 @@ msgstr "Arrangementsdetaljer"
|
|
409 |
#: app/features/events.php:296 app/features/events.php:2053
|
410 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
411 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
412 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
413 |
#: app/widgets/single.php:103
|
414 |
msgid "Event Cost"
|
415 |
msgstr "Kostnad for arrangementet"
|
416 |
|
417 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
418 |
-
#: app/libraries/main.php:
|
419 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
420 |
#: app/skins/single/modern.php:184
|
421 |
msgid "Cost"
|
@@ -432,7 +432,7 @@ msgstr "Gjestedata"
|
|
432 |
#: app/features/events.php:380 app/features/events.php:1237
|
433 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
434 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
435 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
436 |
#: app/modules/booking/steps/form.php:35
|
437 |
msgid "Name"
|
438 |
msgstr "Navn"
|
@@ -444,7 +444,7 @@ msgstr "Navn"
|
|
444 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
445 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
446 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
447 |
-
#: app/libraries/notifications.php:
|
448 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
449 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
450 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -771,9 +771,9 @@ msgstr "Beskrivelse"
|
|
771 |
|
772 |
#: app/features/events.php:683 app/features/events.php:703
|
773 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
774 |
-
#: app/features/mec.php:
|
775 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
776 |
-
#: app/libraries/main.php:
|
777 |
msgid "Speakers"
|
778 |
msgstr "Foredragsholdere"
|
779 |
|
@@ -789,7 +789,7 @@ msgid "Event Links"
|
|
789 |
msgstr "Arrangemenslenker"
|
790 |
|
791 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
792 |
-
#: app/libraries/main.php:
|
793 |
msgid "Event Link"
|
794 |
msgstr "Arrangemenslenke"
|
795 |
|
@@ -807,7 +807,7 @@ msgstr ""
|
|
807 |
"link inkludert http(s)://"
|
808 |
|
809 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
810 |
-
#: app/libraries/main.php:
|
811 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
812 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
813 |
#: app/widgets/single.php:107
|
@@ -841,7 +841,7 @@ msgstr "Totalt antall bestillingsgrenser"
|
|
841 |
#: app/features/events.php:818 app/features/events.php:910
|
842 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
843 |
#: app/modules/booking/steps/tickets.php:40
|
844 |
-
#: app/skins/available_spot/tpl.php:
|
845 |
msgid "Unlimited"
|
846 |
msgstr "Ubegrenset"
|
847 |
|
@@ -850,7 +850,7 @@ msgid "100"
|
|
850 |
msgstr "100"
|
851 |
|
852 |
#: app/features/events.php:838 app/libraries/book.php:60
|
853 |
-
#: app/libraries/main.php:
|
854 |
msgid "Tickets"
|
855 |
msgstr "Billetter"
|
856 |
|
@@ -920,7 +920,7 @@ msgstr "Pris pr. dato"
|
|
920 |
#: app/features/mec/meta_boxes/search_form.php:397
|
921 |
#: app/features/mec/meta_boxes/search_form.php:451
|
922 |
#: app/features/mec/meta_boxes/search_form.php:512
|
923 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
924 |
msgid "Label"
|
925 |
msgstr "Etikett"
|
926 |
|
@@ -1143,7 +1143,7 @@ msgstr "arrangører"
|
|
1143 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1144 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1145 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1146 |
-
#: app/libraries/main.php:
|
1147 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1148 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1149 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1164,7 +1164,7 @@ msgstr "Sted"
|
|
1164 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1165 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1166 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1167 |
-
#: app/libraries/main.php:
|
1168 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1169 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1170 |
#: app/skins/single/modern.php:21
|
@@ -1304,14 +1304,14 @@ msgid "Remove Image"
|
|
1304 |
msgstr "Fjern bilde"
|
1305 |
|
1306 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1307 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1308 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1309 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1310 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1311 |
msgid "Labels"
|
1312 |
msgstr "Etiketter"
|
1313 |
|
1314 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1315 |
#: app/features/mec/meta_boxes/filter.php:138
|
1316 |
msgid "Tags"
|
1317 |
msgstr "Stikkord"
|
@@ -1996,29 +1996,29 @@ msgid "Normal"
|
|
1996 |
msgstr "Normal"
|
1997 |
|
1998 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1999 |
-
#: app/skins/agenda/render.php:
|
2000 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2001 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
2002 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2003 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2004 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2005 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2006 |
-
#: app/skins/timetable/render.php:
|
2007 |
-
#: app/skins/weekly_view/render.php:
|
2008 |
msgid "Featured"
|
2009 |
msgstr "Fremhevet"
|
2010 |
|
2011 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2012 |
-
#: app/libraries/main.php:
|
2013 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2014 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2015 |
-
#: app/skins/daily_view/render.php:
|
2016 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2017 |
#: app/skins/monthly_view/calendar.php:84
|
2018 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2019 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2020 |
-
#: app/skins/timetable/render.php:
|
2021 |
-
#: app/skins/weekly_view/render.php:
|
2022 |
msgid "Canceled"
|
2023 |
msgstr "Kansellert"
|
2024 |
|
@@ -2042,9 +2042,9 @@ msgstr "Slug"
|
|
2042 |
msgid "Event %s"
|
2043 |
msgstr "Arrangement %s"
|
2044 |
|
2045 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2046 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2047 |
-
#: app/libraries/main.php:
|
2048 |
msgid "Locations"
|
2049 |
msgstr "Steder"
|
2050 |
|
@@ -2140,7 +2140,7 @@ msgstr "Velg bilde"
|
|
2140 |
msgid "Don't show map in single event page"
|
2141 |
msgstr "Ikke vis kart i enkelt arrangement visning"
|
2142 |
|
2143 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2144 |
#, fuzzy
|
2145 |
#| msgid "Locations"
|
2146 |
msgid "Other Locations"
|
@@ -2155,7 +2155,7 @@ msgid ""
|
|
2155 |
msgstr ""
|
2156 |
"Du kan velge ekstra arrangører i tillegg hovedarrangør hvis du trenger det."
|
2157 |
|
2158 |
-
#: app/features/mec.php:
|
2159 |
msgid ""
|
2160 |
"Activation faild. Please check your purchase code or license type."
|
2161 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
@@ -2163,11 +2163,11 @@ msgstr ""
|
|
2163 |
"Aktivisering feilet. Kontroller kjøpskoden eller lisenstypen.<br><b>Merk: "
|
2164 |
"din kjøpskode skal samsvare med din lisens type.</b>"
|
2165 |
|
2166 |
-
#: app/features/mec.php:
|
2167 |
msgid "Troubleshooting"
|
2168 |
msgstr "Feilsøking"
|
2169 |
|
2170 |
-
#: app/features/mec.php:
|
2171 |
msgid ""
|
2172 |
"Your options is not in JSON format. Please insert correct options in this "
|
2173 |
"field and try again."
|
@@ -2175,19 +2175,19 @@ msgstr ""
|
|
2175 |
"Alternativene er ikke i JSON-format. Sett inn riktige alternativer i dette "
|
2176 |
"feltet, og prøv på nytt."
|
2177 |
|
2178 |
-
#: app/features/mec.php:
|
2179 |
msgid "Your options field can not be empty!"
|
2180 |
msgstr "Ditt valgfeltet kan ikke være tom!"
|
2181 |
|
2182 |
-
#: app/features/mec.php:
|
2183 |
msgid "Your options imported successfuly."
|
2184 |
msgstr "Alternativene er importert."
|
2185 |
|
2186 |
-
#: app/features/mec.php:
|
2187 |
msgid "MEC - Support"
|
2188 |
msgstr "MEC-støtte"
|
2189 |
|
2190 |
-
#: app/features/mec.php:
|
2191 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2192 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2193 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2196,64 +2196,64 @@ msgstr "MEC-støtte"
|
|
2196 |
msgid "Support"
|
2197 |
msgstr "Support"
|
2198 |
|
2199 |
-
#: app/features/mec.php:
|
2200 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2201 |
-
#: app/libraries/main.php:
|
2202 |
msgid "Organizers"
|
2203 |
msgstr "Arrangører"
|
2204 |
|
2205 |
-
#: app/features/mec.php:
|
2206 |
#: app/features/mec/dashboard.php:164
|
2207 |
msgid "Shortcodes"
|
2208 |
msgstr "Shortcodes"
|
2209 |
|
2210 |
-
#: app/features/mec.php:
|
2211 |
msgid "MEC - Settings"
|
2212 |
msgstr "MEC Innstillinger"
|
2213 |
|
2214 |
-
#: app/features/mec.php:
|
2215 |
#, fuzzy
|
2216 |
#| msgid "MEC - Settings"
|
2217 |
msgid "MEC - Addons"
|
2218 |
msgstr "MEC Innstillinger"
|
2219 |
|
2220 |
-
#: app/features/mec.php:
|
2221 |
msgid "Addons"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: app/features/mec.php:
|
2225 |
msgid "Add Shortcode"
|
2226 |
msgstr "Legg til kortkode"
|
2227 |
|
2228 |
-
#: app/features/mec.php:
|
2229 |
msgid "Add New Shortcode"
|
2230 |
msgstr "Legg til ny Kortkode"
|
2231 |
|
2232 |
-
#: app/features/mec.php:
|
2233 |
msgid "No shortcodes found!"
|
2234 |
msgstr "Ingen kortkoder funnet!"
|
2235 |
|
2236 |
-
#: app/features/mec.php:
|
2237 |
msgid "All Shortcodes"
|
2238 |
msgstr "Alle Kortkoder"
|
2239 |
|
2240 |
-
#: app/features/mec.php:
|
2241 |
msgid "Edit shortcodes"
|
2242 |
msgstr "Rediger Kortkoder"
|
2243 |
|
2244 |
-
#: app/features/mec.php:
|
2245 |
msgid "No shortcodes found in Trash!"
|
2246 |
msgstr "Ingen kortkoder funnet i søppel!"
|
2247 |
|
2248 |
-
#: app/features/mec.php:
|
2249 |
msgid "Display Options"
|
2250 |
msgstr "Visningsalternativer"
|
2251 |
|
2252 |
-
#: app/features/mec.php:
|
2253 |
msgid "Filter Options"
|
2254 |
msgstr "Alternativer for filter"
|
2255 |
|
2256 |
-
#: app/features/mec.php:
|
2257 |
msgid "Search Form"
|
2258 |
msgstr "Søkefelt"
|
2259 |
|
@@ -2261,15 +2261,15 @@ msgstr "Søkefelt"
|
|
2261 |
msgid "Display content's images as Popup"
|
2262 |
msgstr "Vise innholdet i bilder som popup"
|
2263 |
|
2264 |
-
#: app/features/mec.php:
|
2265 |
msgid "Single Event Display Method"
|
2266 |
msgstr "Enkeltarrangement Visnings Metode"
|
2267 |
|
2268 |
-
#: app/features/mec.php:
|
2269 |
msgid "Separate Window"
|
2270 |
msgstr "Separer Vindu"
|
2271 |
|
2272 |
-
#: app/features/mec.php:
|
2273 |
msgid "Modal 1"
|
2274 |
msgstr "Modale 1"
|
2275 |
|
@@ -3220,8 +3220,8 @@ msgstr "Deaktivert"
|
|
3220 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3221 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3222 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3223 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3224 |
-
#: app/libraries/skins.php:
|
3225 |
msgid "Speaker"
|
3226 |
msgstr "Foredragsholder"
|
3227 |
|
@@ -3233,7 +3233,7 @@ msgstr "Foredragsholder"
|
|
3233 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3234 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3235 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3236 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3237 |
#, fuzzy
|
3238 |
#| msgid "Tags"
|
3239 |
msgid "Tag"
|
@@ -3743,7 +3743,7 @@ msgstr "Ekskluder Dato Suffiks"
|
|
3743 |
msgid "Remove suffix from calendars"
|
3744 |
msgstr "Fjern suffiks fra kalendere"
|
3745 |
|
3746 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3747 |
msgid "Weekdays"
|
3748 |
msgstr "Ukedager"
|
3749 |
|
@@ -4419,7 +4419,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4419 |
msgstr ""
|
4420 |
|
4421 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4422 |
-
#: app/libraries/main.php:
|
4423 |
msgid "Verified"
|
4424 |
msgstr "Verifisert"
|
4425 |
|
@@ -4947,7 +4947,7 @@ msgstr "f.eks. Ola Nordmann"
|
|
4947 |
msgid "eg. https://webnus.net"
|
4948 |
msgstr "F.eks. https://webnus.net"
|
4949 |
|
4950 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
4951 |
#: app/skins/single.php:194
|
4952 |
msgid "Other Organizers"
|
4953 |
msgstr "Andre Arrangører"
|
@@ -4985,7 +4985,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
4985 |
msgstr "<i class=\"mec-sl-eye\"></i> %s"
|
4986 |
|
4987 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4988 |
-
#: app/libraries/main.php:
|
4989 |
msgid "Ticket"
|
4990 |
msgstr "Billett"
|
4991 |
|
@@ -5048,8 +5048,8 @@ msgstr "%s pris"
|
|
5048 |
msgid "Discount"
|
5049 |
msgstr "Rabatt"
|
5050 |
|
5051 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5052 |
-
#: app/modules/booking/default.php:
|
5053 |
msgid "Download Invoice"
|
5054 |
msgstr "Last ned Faktura"
|
5055 |
|
@@ -5077,8 +5077,8 @@ msgid "day"
|
|
5077 |
msgstr "dag"
|
5078 |
|
5079 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5080 |
-
#: app/skins/available_spot/tpl.php:
|
5081 |
-
#: app/skins/countdown/tpl.php:
|
5082 |
msgid "days"
|
5083 |
msgstr "dager"
|
5084 |
|
@@ -5087,8 +5087,8 @@ msgid "hour"
|
|
5087 |
msgstr "time"
|
5088 |
|
5089 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5090 |
-
#: app/skins/available_spot/tpl.php:
|
5091 |
-
#: app/skins/countdown/tpl.php:
|
5092 |
msgid "hours"
|
5093 |
msgstr "timer"
|
5094 |
|
@@ -5097,8 +5097,8 @@ msgid "minute"
|
|
5097 |
msgstr "minutt"
|
5098 |
|
5099 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5100 |
-
#: app/skins/available_spot/tpl.php:
|
5101 |
-
#: app/skins/countdown/tpl.php:
|
5102 |
msgid "minutes"
|
5103 |
msgstr "minutter"
|
5104 |
|
@@ -5107,8 +5107,8 @@ msgid "second"
|
|
5107 |
msgstr "sekund"
|
5108 |
|
5109 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5110 |
-
#: app/skins/available_spot/tpl.php:
|
5111 |
-
#: app/skins/countdown/tpl.php:
|
5112 |
msgid "seconds"
|
5113 |
msgstr "sekunder"
|
5114 |
|
@@ -5120,7 +5120,7 @@ msgstr "MEC Singel Sidebar"
|
|
5120 |
msgid "Custom sidebar for single and modal page of MEC."
|
5121 |
msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
|
5122 |
|
5123 |
-
#: app/libraries/feed.php:
|
5124 |
msgid "There is no excerpt because this is a protected post."
|
5125 |
msgstr "Det er ikke noe utdrag for dette er et beskyttet innlegg."
|
5126 |
|
@@ -5179,31 +5179,31 @@ msgstr "Karusell Visning"
|
|
5179 |
msgid "Slider View"
|
5180 |
msgstr "Slider Visning"
|
5181 |
|
5182 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5183 |
msgid "SU"
|
5184 |
msgstr "SØN"
|
5185 |
|
5186 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5187 |
msgid "MO"
|
5188 |
msgstr "MAN"
|
5189 |
|
5190 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5191 |
msgid "TU"
|
5192 |
msgstr "TIRS"
|
5193 |
|
5194 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5195 |
msgid "WE"
|
5196 |
msgstr "ONS"
|
5197 |
|
5198 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5199 |
msgid "TH"
|
5200 |
msgstr "TORS"
|
5201 |
|
5202 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5203 |
msgid "FR"
|
5204 |
msgstr "FRE"
|
5205 |
|
5206 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5207 |
msgid "SA"
|
5208 |
msgstr "LØR"
|
5209 |
|
@@ -5384,91 +5384,91 @@ msgstr "Bestilte ett arrangement."
|
|
5384 |
msgid "%s booked %s event."
|
5385 |
msgstr "%s bestilt %s arrangement."
|
5386 |
|
5387 |
-
#: app/libraries/main.php:
|
5388 |
msgid "Taxonomies"
|
5389 |
msgstr "Taxonomies"
|
5390 |
|
5391 |
-
#: app/libraries/main.php:
|
5392 |
msgid "Category Plural Label"
|
5393 |
msgstr "Kategori Fler Etikett"
|
5394 |
|
5395 |
-
#: app/libraries/main.php:
|
5396 |
msgid "Category Singular Label"
|
5397 |
msgstr "Kategori Singel Tittel"
|
5398 |
|
5399 |
-
#: app/libraries/main.php:
|
5400 |
msgid "Label Plural Label"
|
5401 |
msgstr "Etiketter Flertall"
|
5402 |
|
5403 |
-
#: app/libraries/main.php:
|
5404 |
msgid "Label Singular Label"
|
5405 |
msgstr "Etiketter Entall"
|
5406 |
|
5407 |
-
#: app/libraries/main.php:
|
5408 |
msgid "label"
|
5409 |
msgstr "etikett"
|
5410 |
|
5411 |
-
#: app/libraries/main.php:
|
5412 |
msgid "Location Plural Label"
|
5413 |
msgstr "Lokasjon Flertall Etiketter"
|
5414 |
|
5415 |
-
#: app/libraries/main.php:
|
5416 |
msgid "Location Singular Label"
|
5417 |
msgstr "Plasseringen Entall Etikett"
|
5418 |
|
5419 |
-
#: app/libraries/main.php:
|
5420 |
msgid "Organizer Plural Label"
|
5421 |
msgstr "Arrangør Flertall etikett"
|
5422 |
|
5423 |
-
#: app/libraries/main.php:
|
5424 |
msgid "Organizer Singular Label"
|
5425 |
msgstr "Arrangør Enkel Etikett"
|
5426 |
|
5427 |
-
#: app/libraries/main.php:
|
5428 |
msgid "Speaker Plural Label"
|
5429 |
msgstr "Instruktør/Foredragsholder flere etiketter"
|
5430 |
|
5431 |
-
#: app/libraries/main.php:
|
5432 |
msgid "Speaker Singular Label"
|
5433 |
msgstr "Instruktør/Foredragsholder enkelt etikett"
|
5434 |
|
5435 |
-
#: app/libraries/main.php:
|
5436 |
msgid "Sunday abbreviation"
|
5437 |
msgstr "Forkortelser på søndager"
|
5438 |
|
5439 |
-
#: app/libraries/main.php:
|
5440 |
msgid "Monday abbreviation"
|
5441 |
msgstr "Mandag forkortelse"
|
5442 |
|
5443 |
-
#: app/libraries/main.php:
|
5444 |
msgid "Tuesday abbreviation"
|
5445 |
msgstr "Tirsdag forkortelse"
|
5446 |
|
5447 |
-
#: app/libraries/main.php:
|
5448 |
msgid "Wednesday abbreviation"
|
5449 |
msgstr "Onsdag forkortelse"
|
5450 |
|
5451 |
-
#: app/libraries/main.php:
|
5452 |
msgid "Thursday abbreviation"
|
5453 |
msgstr "Torsdag forkortelse"
|
5454 |
|
5455 |
-
#: app/libraries/main.php:
|
5456 |
msgid "Friday abbreviation"
|
5457 |
msgstr "Fredag forkortelse"
|
5458 |
|
5459 |
-
#: app/libraries/main.php:
|
5460 |
msgid "Saturday abbreviation"
|
5461 |
msgstr "Lørdag forkortelse"
|
5462 |
|
5463 |
-
#: app/libraries/main.php:
|
5464 |
msgid "Others"
|
5465 |
msgstr "Øvrige"
|
5466 |
|
5467 |
-
#: app/libraries/main.php:
|
5468 |
msgid "Booking Success Message"
|
5469 |
msgstr "Melding ved vellykket bestilling"
|
5470 |
|
5471 |
-
#: app/libraries/main.php:
|
5472 |
msgid ""
|
5473 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5474 |
"needed, please check your email."
|
@@ -5476,90 +5476,90 @@ msgstr ""
|
|
5476 |
"Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
|
5477 |
"bekreftelse. Vennligst sjekk din epost."
|
5478 |
|
5479 |
-
#: app/libraries/main.php:
|
5480 |
msgid "Register Button"
|
5481 |
msgstr "Registreringsknapp"
|
5482 |
|
5483 |
-
#: app/libraries/main.php:
|
5484 |
-
#: app/skins/carousel/render.php:
|
5485 |
-
#: app/skins/grid/render.php:
|
5486 |
-
#: app/skins/grid/render.php:
|
5487 |
-
#: app/skins/list/render.php:
|
5488 |
-
#: app/skins/masonry/render.php:
|
5489 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5490 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5491 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5492 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5493 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5494 |
-
#: app/skins/slider/render.php:
|
5495 |
-
#: app/skins/slider/render.php:
|
5496 |
msgid "REGISTER"
|
5497 |
msgstr "Registrere"
|
5498 |
|
5499 |
-
#: app/libraries/main.php:
|
5500 |
msgid "View Detail Button"
|
5501 |
msgstr "Se Detalj Knapp"
|
5502 |
|
5503 |
-
#: app/libraries/main.php:
|
5504 |
-
#: app/skins/carousel/render.php:
|
5505 |
-
#: app/skins/grid/render.php:
|
5506 |
-
#: app/skins/grid/render.php:
|
5507 |
-
#: app/skins/list/render.php:
|
5508 |
-
#: app/skins/slider/render.php:
|
5509 |
-
#: app/skins/slider/render.php:
|
5510 |
-
#: app/skins/slider/render.php:
|
5511 |
msgid "View Detail"
|
5512 |
msgstr "Se detaljer"
|
5513 |
|
5514 |
-
#: app/libraries/main.php:
|
5515 |
msgid "Event Detail Button"
|
5516 |
msgstr "Knapp for arrangementsdetaljer"
|
5517 |
|
5518 |
-
#: app/libraries/main.php:
|
5519 |
msgid "Event Detail"
|
5520 |
msgstr "Arrangement Detaljer"
|
5521 |
|
5522 |
-
#: app/libraries/main.php:
|
5523 |
msgid "More Info Link"
|
5524 |
msgstr "Mer Info Lenke"
|
5525 |
|
5526 |
-
#: app/libraries/main.php:
|
5527 |
msgid "Ticket (Singular)"
|
5528 |
msgstr "Billett (Singel)"
|
5529 |
|
5530 |
-
#: app/libraries/main.php:
|
5531 |
msgid "Tickets (Plural)"
|
5532 |
msgstr "Billetter (Flertall)"
|
5533 |
|
5534 |
-
#: app/libraries/main.php:
|
5535 |
msgid "EventON"
|
5536 |
msgstr "EventON"
|
5537 |
|
5538 |
-
#: app/libraries/main.php:
|
5539 |
msgid "The Events Calendar"
|
5540 |
msgstr "Aktivitetskalenderen"
|
5541 |
|
5542 |
-
#: app/libraries/main.php:
|
5543 |
msgid "Events Schedule WP Plugin"
|
5544 |
msgstr "Arrangement Planlegging WP Plugin"
|
5545 |
|
5546 |
-
#: app/libraries/main.php:
|
5547 |
msgid "Calendarize It"
|
5548 |
msgstr "HOP Kalender"
|
5549 |
|
5550 |
-
#: app/libraries/main.php:
|
5551 |
msgid "Confirmed"
|
5552 |
msgstr "Bekreftet"
|
5553 |
|
5554 |
-
#: app/libraries/main.php:
|
5555 |
msgid "Rejected"
|
5556 |
msgstr "Avvist"
|
5557 |
|
5558 |
-
#: app/libraries/main.php:
|
5559 |
msgid "Pending"
|
5560 |
msgstr "Venter"
|
5561 |
|
5562 |
-
#: app/libraries/main.php:
|
5563 |
msgid "Waiting"
|
5564 |
msgstr "Ventende"
|
5565 |
|
@@ -5579,27 +5579,27 @@ msgstr "Din Bestilling er bekreftet."
|
|
5579 |
msgid "A new booking is received."
|
5580 |
msgstr "En ny bestilling er mottatt."
|
5581 |
|
5582 |
-
#: app/libraries/notifications.php:
|
5583 |
msgid "A new event is added."
|
5584 |
msgstr "Ett nytt arrangement er lagt til."
|
5585 |
|
5586 |
-
#: app/libraries/notifications.php:
|
5587 |
msgid "to"
|
5588 |
msgstr "til"
|
5589 |
|
5590 |
-
#: app/libraries/notifications.php:
|
5591 |
msgid "+ Add to Google Calendar"
|
5592 |
msgstr "+ Legg til i Google Kalender"
|
5593 |
|
5594 |
-
#: app/libraries/notifications.php:
|
5595 |
msgid "+ iCal export"
|
5596 |
msgstr "+ iCal eksport"
|
5597 |
|
5598 |
-
#: app/libraries/notifications.php:
|
5599 |
msgid "Yes"
|
5600 |
msgstr "Ja"
|
5601 |
|
5602 |
-
#: app/libraries/notifications.php:
|
5603 |
msgid "No"
|
5604 |
msgstr "Nei"
|
5605 |
|
@@ -5614,7 +5614,7 @@ msgstr "Skin kontroller eksisterer ikke."
|
|
5614 |
msgid "All of the day"
|
5615 |
msgstr "Hele dagen"
|
5616 |
|
5617 |
-
#: app/libraries/skins.php:
|
5618 |
msgid "Ignore month and years"
|
5619 |
msgstr "Ignorer måned og år"
|
5620 |
|
@@ -5656,8 +5656,8 @@ msgid "Fill other attendees information like the first form."
|
|
5656 |
msgstr "Fyll ut andre deltakere informasjon som det første skjemaet."
|
5657 |
|
5658 |
#: app/modules/booking/steps/form.php:162
|
5659 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5660 |
-
#: app/skins/countdown/tpl.php:
|
5661 |
msgid "Next"
|
5662 |
msgstr "Neste"
|
5663 |
|
@@ -5782,11 +5782,11 @@ msgid "No event found!"
|
|
5782 |
msgstr "Ingen arrangement funnet!"
|
5783 |
|
5784 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5785 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5786 |
msgid "Load More"
|
5787 |
msgstr "Last Flere"
|
5788 |
|
5789 |
-
#: app/skins/available_spot/tpl.php:
|
5790 |
msgid "Available Spot(s):"
|
5791 |
msgstr "Tilgjengelig Plass(er):"
|
5792 |
|
@@ -5794,23 +5794,23 @@ msgstr "Tilgjengelig Plass(er):"
|
|
5794 |
msgid "View All"
|
5795 |
msgstr "Vis alle"
|
5796 |
|
5797 |
-
#: app/skins/carousel/render.php:
|
5798 |
-
#: app/skins/countdown/tpl.php:
|
5799 |
-
#: app/skins/list/render.php:
|
5800 |
msgid "EVENT DETAIL"
|
5801 |
msgstr "ARRANGEMENTSDETALJER"
|
5802 |
|
5803 |
-
#: app/skins/countdown/tpl.php:
|
5804 |
-
#: app/skins/countdown/tpl.php:
|
5805 |
#, php-format
|
5806 |
msgid "%s Upcoming Event"
|
5807 |
msgstr "%s Kommende Arrangement"
|
5808 |
|
5809 |
-
#: app/skins/cover/tpl.php:
|
5810 |
msgid "featured event"
|
5811 |
msgstr "fremhevet arrangement"
|
5812 |
|
5813 |
-
#: app/skins/daily_view/render.php:
|
5814 |
msgid "No event"
|
5815 |
msgstr "Ingen arrangement"
|
5816 |
|
@@ -5823,16 +5823,16 @@ msgid "All"
|
|
5823 |
msgstr "Alle"
|
5824 |
|
5825 |
#: app/skins/monthly_view/calendar.php:66
|
5826 |
-
#: app/skins/monthly_view/calendar.php:
|
5827 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5828 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5829 |
#, php-format
|
5830 |
msgid "Events for %s"
|
5831 |
msgstr "Kalender for %s"
|
5832 |
|
5833 |
-
#: app/skins/monthly_view/calendar.php:
|
5834 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5835 |
-
#: app/skins/timetable/render.php:
|
5836 |
msgid "No Events"
|
5837 |
msgstr "Ingen hendelser"
|
5838 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:42+0430\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb_NO\n"
|
30 |
msgid "Content"
|
31 |
msgstr "Innhold"
|
32 |
|
33 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
34 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Kortkode"
|
37 |
|
56 |
msgid "Event Color"
|
57 |
msgstr "Arrangementsfarge"
|
58 |
|
59 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
60 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
61 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
62 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
285 |
msgid "Event"
|
286 |
msgstr "Arrangement"
|
287 |
|
288 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
289 |
msgid "Add Event"
|
290 |
msgstr "Legg til Arrangement"
|
291 |
|
325 |
#: app/features/mec/meta_boxes/search_form.php:362
|
326 |
#: app/features/mec/meta_boxes/search_form.php:416
|
327 |
#: app/features/mec/meta_boxes/search_form.php:477
|
328 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
329 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
330 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
331 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
332 |
msgid "Category"
|
333 |
msgstr "Kategori"
|
334 |
|
335 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
336 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
337 |
+
#: app/libraries/main.php:4363
|
338 |
msgid "Categories"
|
339 |
msgstr "Kategorier"
|
340 |
|
409 |
#: app/features/events.php:296 app/features/events.php:2053
|
410 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
411 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
412 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
413 |
#: app/widgets/single.php:103
|
414 |
msgid "Event Cost"
|
415 |
msgstr "Kostnad for arrangementet"
|
416 |
|
417 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
418 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
419 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
420 |
#: app/skins/single/modern.php:184
|
421 |
msgid "Cost"
|
432 |
#: app/features/events.php:380 app/features/events.php:1237
|
433 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
434 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
435 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
436 |
#: app/modules/booking/steps/form.php:35
|
437 |
msgid "Name"
|
438 |
msgstr "Navn"
|
444 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
445 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
446 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
447 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
448 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
449 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
450 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
771 |
|
772 |
#: app/features/events.php:683 app/features/events.php:703
|
773 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
774 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
775 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
776 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
777 |
msgid "Speakers"
|
778 |
msgstr "Foredragsholdere"
|
779 |
|
789 |
msgstr "Arrangemenslenker"
|
790 |
|
791 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
792 |
+
#: app/libraries/main.php:4394
|
793 |
msgid "Event Link"
|
794 |
msgstr "Arrangemenslenke"
|
795 |
|
807 |
"link inkludert http(s)://"
|
808 |
|
809 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
810 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
811 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
812 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
813 |
#: app/widgets/single.php:107
|
841 |
#: app/features/events.php:818 app/features/events.php:910
|
842 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
843 |
#: app/modules/booking/steps/tickets.php:40
|
844 |
+
#: app/skins/available_spot/tpl.php:138
|
845 |
msgid "Unlimited"
|
846 |
msgstr "Ubegrenset"
|
847 |
|
850 |
msgstr "100"
|
851 |
|
852 |
#: app/features/events.php:838 app/libraries/book.php:60
|
853 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
854 |
msgid "Tickets"
|
855 |
msgstr "Billetter"
|
856 |
|
920 |
#: app/features/mec/meta_boxes/search_form.php:397
|
921 |
#: app/features/mec/meta_boxes/search_form.php:451
|
922 |
#: app/features/mec/meta_boxes/search_form.php:512
|
923 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
924 |
msgid "Label"
|
925 |
msgstr "Etikett"
|
926 |
|
1143 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1144 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1145 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1146 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1147 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1148 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1149 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1164 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1165 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1166 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1167 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1168 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1169 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1170 |
#: app/skins/single/modern.php:21
|
1304 |
msgstr "Fjern bilde"
|
1305 |
|
1306 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1307 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1308 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1309 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1310 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1311 |
msgid "Labels"
|
1312 |
msgstr "Etiketter"
|
1313 |
|
1314 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1315 |
#: app/features/mec/meta_boxes/filter.php:138
|
1316 |
msgid "Tags"
|
1317 |
msgstr "Stikkord"
|
1996 |
msgstr "Normal"
|
1997 |
|
1998 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1999 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
2000 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2001 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
2002 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2003 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2004 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2005 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
2006 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2007 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
2008 |
msgid "Featured"
|
2009 |
msgstr "Fremhevet"
|
2010 |
|
2011 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2012 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
2013 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2014 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2015 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2016 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2017 |
#: app/skins/monthly_view/calendar.php:84
|
2018 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2019 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
2020 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2021 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
2022 |
msgid "Canceled"
|
2023 |
msgstr "Kansellert"
|
2024 |
|
2042 |
msgid "Event %s"
|
2043 |
msgstr "Arrangement %s"
|
2044 |
|
2045 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2046 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2047 |
+
#: app/libraries/main.php:4367
|
2048 |
msgid "Locations"
|
2049 |
msgstr "Steder"
|
2050 |
|
2140 |
msgid "Don't show map in single event page"
|
2141 |
msgstr "Ikke vis kart i enkelt arrangement visning"
|
2142 |
|
2143 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2144 |
#, fuzzy
|
2145 |
#| msgid "Locations"
|
2146 |
msgid "Other Locations"
|
2155 |
msgstr ""
|
2156 |
"Du kan velge ekstra arrangører i tillegg hovedarrangør hvis du trenger det."
|
2157 |
|
2158 |
+
#: app/features/mec.php:144
|
2159 |
msgid ""
|
2160 |
"Activation faild. Please check your purchase code or license type."
|
2161 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2163 |
"Aktivisering feilet. Kontroller kjøpskoden eller lisenstypen.<br><b>Merk: "
|
2164 |
"din kjøpskode skal samsvare med din lisens type.</b>"
|
2165 |
|
2166 |
+
#: app/features/mec.php:144
|
2167 |
msgid "Troubleshooting"
|
2168 |
msgstr "Feilsøking"
|
2169 |
|
2170 |
+
#: app/features/mec.php:179
|
2171 |
msgid ""
|
2172 |
"Your options is not in JSON format. Please insert correct options in this "
|
2173 |
"field and try again."
|
2175 |
"Alternativene er ikke i JSON-format. Sett inn riktige alternativer i dette "
|
2176 |
"feltet, og prøv på nytt."
|
2177 |
|
2178 |
+
#: app/features/mec.php:183
|
2179 |
msgid "Your options field can not be empty!"
|
2180 |
msgstr "Ditt valgfeltet kan ikke være tom!"
|
2181 |
|
2182 |
+
#: app/features/mec.php:187
|
2183 |
msgid "Your options imported successfuly."
|
2184 |
msgstr "Alternativene er importert."
|
2185 |
|
2186 |
+
#: app/features/mec.php:274
|
2187 |
msgid "MEC - Support"
|
2188 |
msgstr "MEC-støtte"
|
2189 |
|
2190 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2191 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2192 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2193 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2196 |
msgid "Support"
|
2197 |
msgstr "Support"
|
2198 |
|
2199 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2200 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2201 |
+
#: app/libraries/main.php:4369
|
2202 |
msgid "Organizers"
|
2203 |
msgstr "Arrangører"
|
2204 |
|
2205 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2206 |
#: app/features/mec/dashboard.php:164
|
2207 |
msgid "Shortcodes"
|
2208 |
msgstr "Shortcodes"
|
2209 |
|
2210 |
+
#: app/features/mec.php:303
|
2211 |
msgid "MEC - Settings"
|
2212 |
msgstr "MEC Innstillinger"
|
2213 |
|
2214 |
+
#: app/features/mec.php:304
|
2215 |
#, fuzzy
|
2216 |
#| msgid "MEC - Settings"
|
2217 |
msgid "MEC - Addons"
|
2218 |
msgstr "MEC Innstillinger"
|
2219 |
|
2220 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2221 |
msgid "Addons"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: app/features/mec.php:321
|
2225 |
msgid "Add Shortcode"
|
2226 |
msgstr "Legg til kortkode"
|
2227 |
|
2228 |
+
#: app/features/mec.php:322
|
2229 |
msgid "Add New Shortcode"
|
2230 |
msgstr "Legg til ny Kortkode"
|
2231 |
|
2232 |
+
#: app/features/mec.php:323
|
2233 |
msgid "No shortcodes found!"
|
2234 |
msgstr "Ingen kortkoder funnet!"
|
2235 |
|
2236 |
+
#: app/features/mec.php:324
|
2237 |
msgid "All Shortcodes"
|
2238 |
msgstr "Alle Kortkoder"
|
2239 |
|
2240 |
+
#: app/features/mec.php:325
|
2241 |
msgid "Edit shortcodes"
|
2242 |
msgstr "Rediger Kortkoder"
|
2243 |
|
2244 |
+
#: app/features/mec.php:326
|
2245 |
msgid "No shortcodes found in Trash!"
|
2246 |
msgstr "Ingen kortkoder funnet i søppel!"
|
2247 |
|
2248 |
+
#: app/features/mec.php:373
|
2249 |
msgid "Display Options"
|
2250 |
msgstr "Visningsalternativer"
|
2251 |
|
2252 |
+
#: app/features/mec.php:374
|
2253 |
msgid "Filter Options"
|
2254 |
msgstr "Alternativer for filter"
|
2255 |
|
2256 |
+
#: app/features/mec.php:376
|
2257 |
msgid "Search Form"
|
2258 |
msgstr "Søkefelt"
|
2259 |
|
2261 |
msgid "Display content's images as Popup"
|
2262 |
msgstr "Vise innholdet i bilder som popup"
|
2263 |
|
2264 |
+
#: app/features/mec.php:764
|
2265 |
msgid "Single Event Display Method"
|
2266 |
msgstr "Enkeltarrangement Visnings Metode"
|
2267 |
|
2268 |
+
#: app/features/mec.php:769
|
2269 |
msgid "Separate Window"
|
2270 |
msgstr "Separer Vindu"
|
2271 |
|
2272 |
+
#: app/features/mec.php:770
|
2273 |
msgid "Modal 1"
|
2274 |
msgstr "Modale 1"
|
2275 |
|
3220 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3221 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3222 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3223 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3224 |
+
#: app/libraries/skins.php:829
|
3225 |
msgid "Speaker"
|
3226 |
msgstr "Foredragsholder"
|
3227 |
|
3233 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3234 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3235 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3236 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3237 |
#, fuzzy
|
3238 |
#| msgid "Tags"
|
3239 |
msgid "Tag"
|
3743 |
msgid "Remove suffix from calendars"
|
3744 |
msgstr "Fjern suffiks fra kalendere"
|
3745 |
|
3746 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3747 |
msgid "Weekdays"
|
3748 |
msgstr "Ukedager"
|
3749 |
|
4419 |
msgstr ""
|
4420 |
|
4421 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4422 |
+
#: app/libraries/main.php:4558
|
4423 |
msgid "Verified"
|
4424 |
msgstr "Verifisert"
|
4425 |
|
4947 |
msgid "eg. https://webnus.net"
|
4948 |
msgstr "F.eks. https://webnus.net"
|
4949 |
|
4950 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
4951 |
#: app/skins/single.php:194
|
4952 |
msgid "Other Organizers"
|
4953 |
msgstr "Andre Arrangører"
|
4985 |
msgstr "<i class=\"mec-sl-eye\"></i> %s"
|
4986 |
|
4987 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4988 |
+
#: app/libraries/main.php:4398
|
4989 |
msgid "Ticket"
|
4990 |
msgstr "Billett"
|
4991 |
|
5048 |
msgid "Discount"
|
5049 |
msgstr "Rabatt"
|
5050 |
|
5051 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5052 |
+
#: app/modules/booking/default.php:381
|
5053 |
msgid "Download Invoice"
|
5054 |
msgstr "Last ned Faktura"
|
5055 |
|
5077 |
msgstr "dag"
|
5078 |
|
5079 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5080 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5081 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5082 |
msgid "days"
|
5083 |
msgstr "dager"
|
5084 |
|
5087 |
msgstr "time"
|
5088 |
|
5089 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5090 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5091 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5092 |
msgid "hours"
|
5093 |
msgstr "timer"
|
5094 |
|
5097 |
msgstr "minutt"
|
5098 |
|
5099 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5100 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5101 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5102 |
msgid "minutes"
|
5103 |
msgstr "minutter"
|
5104 |
|
5107 |
msgstr "sekund"
|
5108 |
|
5109 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5110 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5111 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5112 |
msgid "seconds"
|
5113 |
msgstr "sekunder"
|
5114 |
|
5120 |
msgid "Custom sidebar for single and modal page of MEC."
|
5121 |
msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
|
5122 |
|
5123 |
+
#: app/libraries/feed.php:83
|
5124 |
msgid "There is no excerpt because this is a protected post."
|
5125 |
msgstr "Det er ikke noe utdrag for dette er et beskyttet innlegg."
|
5126 |
|
5179 |
msgid "Slider View"
|
5180 |
msgstr "Slider Visning"
|
5181 |
|
5182 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5183 |
msgid "SU"
|
5184 |
msgstr "SØN"
|
5185 |
|
5186 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5187 |
msgid "MO"
|
5188 |
msgstr "MAN"
|
5189 |
|
5190 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5191 |
msgid "TU"
|
5192 |
msgstr "TIRS"
|
5193 |
|
5194 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5195 |
msgid "WE"
|
5196 |
msgstr "ONS"
|
5197 |
|
5198 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5199 |
msgid "TH"
|
5200 |
msgstr "TORS"
|
5201 |
|
5202 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5203 |
msgid "FR"
|
5204 |
msgstr "FRE"
|
5205 |
|
5206 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5207 |
msgid "SA"
|
5208 |
msgstr "LØR"
|
5209 |
|
5384 |
msgid "%s booked %s event."
|
5385 |
msgstr "%s bestilt %s arrangement."
|
5386 |
|
5387 |
+
#: app/libraries/main.php:4361
|
5388 |
msgid "Taxonomies"
|
5389 |
msgstr "Taxonomies"
|
5390 |
|
5391 |
+
#: app/libraries/main.php:4363
|
5392 |
msgid "Category Plural Label"
|
5393 |
msgstr "Kategori Fler Etikett"
|
5394 |
|
5395 |
+
#: app/libraries/main.php:4364
|
5396 |
msgid "Category Singular Label"
|
5397 |
msgstr "Kategori Singel Tittel"
|
5398 |
|
5399 |
+
#: app/libraries/main.php:4365
|
5400 |
msgid "Label Plural Label"
|
5401 |
msgstr "Etiketter Flertall"
|
5402 |
|
5403 |
+
#: app/libraries/main.php:4366
|
5404 |
msgid "Label Singular Label"
|
5405 |
msgstr "Etiketter Entall"
|
5406 |
|
5407 |
+
#: app/libraries/main.php:4366
|
5408 |
msgid "label"
|
5409 |
msgstr "etikett"
|
5410 |
|
5411 |
+
#: app/libraries/main.php:4367
|
5412 |
msgid "Location Plural Label"
|
5413 |
msgstr "Lokasjon Flertall Etiketter"
|
5414 |
|
5415 |
+
#: app/libraries/main.php:4368
|
5416 |
msgid "Location Singular Label"
|
5417 |
msgstr "Plasseringen Entall Etikett"
|
5418 |
|
5419 |
+
#: app/libraries/main.php:4369
|
5420 |
msgid "Organizer Plural Label"
|
5421 |
msgstr "Arrangør Flertall etikett"
|
5422 |
|
5423 |
+
#: app/libraries/main.php:4370
|
5424 |
msgid "Organizer Singular Label"
|
5425 |
msgstr "Arrangør Enkel Etikett"
|
5426 |
|
5427 |
+
#: app/libraries/main.php:4371
|
5428 |
msgid "Speaker Plural Label"
|
5429 |
msgstr "Instruktør/Foredragsholder flere etiketter"
|
5430 |
|
5431 |
+
#: app/libraries/main.php:4372
|
5432 |
msgid "Speaker Singular Label"
|
5433 |
msgstr "Instruktør/Foredragsholder enkelt etikett"
|
5434 |
|
5435 |
+
#: app/libraries/main.php:4378
|
5436 |
msgid "Sunday abbreviation"
|
5437 |
msgstr "Forkortelser på søndager"
|
5438 |
|
5439 |
+
#: app/libraries/main.php:4379
|
5440 |
msgid "Monday abbreviation"
|
5441 |
msgstr "Mandag forkortelse"
|
5442 |
|
5443 |
+
#: app/libraries/main.php:4380
|
5444 |
msgid "Tuesday abbreviation"
|
5445 |
msgstr "Tirsdag forkortelse"
|
5446 |
|
5447 |
+
#: app/libraries/main.php:4381
|
5448 |
msgid "Wednesday abbreviation"
|
5449 |
msgstr "Onsdag forkortelse"
|
5450 |
|
5451 |
+
#: app/libraries/main.php:4382
|
5452 |
msgid "Thursday abbreviation"
|
5453 |
msgstr "Torsdag forkortelse"
|
5454 |
|
5455 |
+
#: app/libraries/main.php:4383
|
5456 |
msgid "Friday abbreviation"
|
5457 |
msgstr "Fredag forkortelse"
|
5458 |
|
5459 |
+
#: app/libraries/main.php:4384
|
5460 |
msgid "Saturday abbreviation"
|
5461 |
msgstr "Lørdag forkortelse"
|
5462 |
|
5463 |
+
#: app/libraries/main.php:4388
|
5464 |
msgid "Others"
|
5465 |
msgstr "Øvrige"
|
5466 |
|
5467 |
+
#: app/libraries/main.php:4390
|
5468 |
msgid "Booking Success Message"
|
5469 |
msgstr "Melding ved vellykket bestilling"
|
5470 |
|
5471 |
+
#: app/libraries/main.php:4390
|
5472 |
msgid ""
|
5473 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5474 |
"needed, please check your email."
|
5476 |
"Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
|
5477 |
"bekreftelse. Vennligst sjekk din epost."
|
5478 |
|
5479 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5480 |
msgid "Register Button"
|
5481 |
msgstr "Registreringsknapp"
|
5482 |
|
5483 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5484 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5485 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5486 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5487 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5488 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5489 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5490 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5491 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5492 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5493 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5494 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5495 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5496 |
msgid "REGISTER"
|
5497 |
msgstr "Registrere"
|
5498 |
|
5499 |
+
#: app/libraries/main.php:4392
|
5500 |
msgid "View Detail Button"
|
5501 |
msgstr "Se Detalj Knapp"
|
5502 |
|
5503 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5504 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5505 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5506 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5507 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5508 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5509 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5510 |
+
#: app/skins/slider/render.php:305
|
5511 |
msgid "View Detail"
|
5512 |
msgstr "Se detaljer"
|
5513 |
|
5514 |
+
#: app/libraries/main.php:4393
|
5515 |
msgid "Event Detail Button"
|
5516 |
msgstr "Knapp for arrangementsdetaljer"
|
5517 |
|
5518 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5519 |
msgid "Event Detail"
|
5520 |
msgstr "Arrangement Detaljer"
|
5521 |
|
5522 |
+
#: app/libraries/main.php:4395
|
5523 |
msgid "More Info Link"
|
5524 |
msgstr "Mer Info Lenke"
|
5525 |
|
5526 |
+
#: app/libraries/main.php:4398
|
5527 |
msgid "Ticket (Singular)"
|
5528 |
msgstr "Billett (Singel)"
|
5529 |
|
5530 |
+
#: app/libraries/main.php:4399
|
5531 |
msgid "Tickets (Plural)"
|
5532 |
msgstr "Billetter (Flertall)"
|
5533 |
|
5534 |
+
#: app/libraries/main.php:4466
|
5535 |
msgid "EventON"
|
5536 |
msgstr "EventON"
|
5537 |
|
5538 |
+
#: app/libraries/main.php:4467
|
5539 |
msgid "The Events Calendar"
|
5540 |
msgstr "Aktivitetskalenderen"
|
5541 |
|
5542 |
+
#: app/libraries/main.php:4468
|
5543 |
msgid "Events Schedule WP Plugin"
|
5544 |
msgstr "Arrangement Planlegging WP Plugin"
|
5545 |
|
5546 |
+
#: app/libraries/main.php:4469
|
5547 |
msgid "Calendarize It"
|
5548 |
msgstr "HOP Kalender"
|
5549 |
|
5550 |
+
#: app/libraries/main.php:4543
|
5551 |
msgid "Confirmed"
|
5552 |
msgstr "Bekreftet"
|
5553 |
|
5554 |
+
#: app/libraries/main.php:4544
|
5555 |
msgid "Rejected"
|
5556 |
msgstr "Avvist"
|
5557 |
|
5558 |
+
#: app/libraries/main.php:4545
|
5559 |
msgid "Pending"
|
5560 |
msgstr "Venter"
|
5561 |
|
5562 |
+
#: app/libraries/main.php:4560
|
5563 |
msgid "Waiting"
|
5564 |
msgstr "Ventende"
|
5565 |
|
5579 |
msgid "A new booking is received."
|
5580 |
msgstr "En ny bestilling er mottatt."
|
5581 |
|
5582 |
+
#: app/libraries/notifications.php:338
|
5583 |
msgid "A new event is added."
|
5584 |
msgstr "Ett nytt arrangement er lagt til."
|
5585 |
|
5586 |
+
#: app/libraries/notifications.php:509
|
5587 |
msgid "to"
|
5588 |
msgstr "til"
|
5589 |
|
5590 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5591 |
msgid "+ Add to Google Calendar"
|
5592 |
msgstr "+ Legg til i Google Kalender"
|
5593 |
|
5594 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5595 |
msgid "+ iCal export"
|
5596 |
msgstr "+ iCal eksport"
|
5597 |
|
5598 |
+
#: app/libraries/notifications.php:582
|
5599 |
msgid "Yes"
|
5600 |
msgstr "Ja"
|
5601 |
|
5602 |
+
#: app/libraries/notifications.php:582
|
5603 |
msgid "No"
|
5604 |
msgstr "Nei"
|
5605 |
|
5614 |
msgid "All of the day"
|
5615 |
msgstr "Hele dagen"
|
5616 |
|
5617 |
+
#: app/libraries/skins.php:902
|
5618 |
msgid "Ignore month and years"
|
5619 |
msgstr "Ignorer måned og år"
|
5620 |
|
5656 |
msgstr "Fyll ut andre deltakere informasjon som det første skjemaet."
|
5657 |
|
5658 |
#: app/modules/booking/steps/form.php:162
|
5659 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5660 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5661 |
msgid "Next"
|
5662 |
msgstr "Neste"
|
5663 |
|
5782 |
msgstr "Ingen arrangement funnet!"
|
5783 |
|
5784 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5785 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5786 |
msgid "Load More"
|
5787 |
msgstr "Last Flere"
|
5788 |
|
5789 |
+
#: app/skins/available_spot/tpl.php:138
|
5790 |
msgid "Available Spot(s):"
|
5791 |
msgstr "Tilgjengelig Plass(er):"
|
5792 |
|
5794 |
msgid "View All"
|
5795 |
msgstr "Vis alle"
|
5796 |
|
5797 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5798 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5799 |
+
#: app/skins/list/render.php:119
|
5800 |
msgid "EVENT DETAIL"
|
5801 |
msgstr "ARRANGEMENTSDETALJER"
|
5802 |
|
5803 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5804 |
+
#: app/skins/countdown/tpl.php:206
|
5805 |
#, php-format
|
5806 |
msgid "%s Upcoming Event"
|
5807 |
msgstr "%s Kommende Arrangement"
|
5808 |
|
5809 |
+
#: app/skins/cover/tpl.php:81
|
5810 |
msgid "featured event"
|
5811 |
msgstr "fremhevet arrangement"
|
5812 |
|
5813 |
+
#: app/skins/daily_view/render.php:78
|
5814 |
msgid "No event"
|
5815 |
msgstr "Ingen arrangement"
|
5816 |
|
5823 |
msgstr "Alle"
|
5824 |
|
5825 |
#: app/skins/monthly_view/calendar.php:66
|
5826 |
+
#: app/skins/monthly_view/calendar.php:152
|
5827 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5828 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5829 |
#, php-format
|
5830 |
msgid "Events for %s"
|
5831 |
msgstr "Kalender for %s"
|
5832 |
|
5833 |
+
#: app/skins/monthly_view/calendar.php:154
|
5834 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5835 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5836 |
msgid "No Events"
|
5837 |
msgstr "Ingen hendelser"
|
5838 |
|
languages/modern-events-calendar-lite-nl_NL.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-nl_NL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -30,8 +30,8 @@ msgstr "Modern Events Calendar"
|
|
30 |
msgid "Content"
|
31 |
msgstr "Inhoud"
|
32 |
|
33 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
34 |
-
#: app/features/mec.php:
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Shortcode"
|
37 |
|
@@ -60,7 +60,7 @@ msgstr ""
|
|
60 |
msgid "Event Color"
|
61 |
msgstr "Evenement kleur"
|
62 |
|
63 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
64 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
65 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
66 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -266,7 +266,7 @@ msgstr "Evenementen"
|
|
266 |
msgid "Event"
|
267 |
msgstr "Evenement"
|
268 |
|
269 |
-
#: app/features/events.php:134 app/features/mec.php:
|
270 |
msgid "Add Event"
|
271 |
msgstr "Evenement toevoegen"
|
272 |
|
@@ -306,16 +306,16 @@ msgstr "Geen evenementen gevonden in de prullenbak."
|
|
306 |
#: app/features/mec/meta_boxes/search_form.php:362
|
307 |
#: app/features/mec/meta_boxes/search_form.php:416
|
308 |
#: app/features/mec/meta_boxes/search_form.php:477
|
309 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
310 |
-
#: app/libraries/skins.php:
|
311 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
312 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
313 |
msgid "Category"
|
314 |
msgstr "Categorie"
|
315 |
|
316 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
317 |
-
#: app/features/mec.php:
|
318 |
-
#: app/libraries/main.php:
|
319 |
msgid "Categories"
|
320 |
msgstr "Categorieën"
|
321 |
|
@@ -390,13 +390,13 @@ msgstr "Evenement details"
|
|
390 |
#: app/features/events.php:296 app/features/events.php:2053
|
391 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
392 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
393 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
394 |
#: app/widgets/single.php:103
|
395 |
msgid "Event Cost"
|
396 |
msgstr "Evenements kosten"
|
397 |
|
398 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
399 |
-
#: app/libraries/main.php:
|
400 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
401 |
#: app/skins/single/modern.php:184
|
402 |
msgid "Cost"
|
@@ -413,7 +413,7 @@ msgstr ""
|
|
413 |
#: app/features/events.php:380 app/features/events.php:1237
|
414 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
415 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
416 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
417 |
#: app/modules/booking/steps/form.php:35
|
418 |
msgid "Name"
|
419 |
msgstr "Naam"
|
@@ -425,7 +425,7 @@ msgstr "Naam"
|
|
425 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
426 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
427 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
428 |
-
#: app/libraries/notifications.php:
|
429 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
430 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
431 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -755,9 +755,9 @@ msgstr "Beschrijving"
|
|
755 |
|
756 |
#: app/features/events.php:683 app/features/events.php:703
|
757 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
758 |
-
#: app/features/mec.php:
|
759 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
760 |
-
#: app/libraries/main.php:
|
761 |
msgid "Speakers"
|
762 |
msgstr ""
|
763 |
|
@@ -773,7 +773,7 @@ msgid "Event Links"
|
|
773 |
msgstr "Evenement locatie"
|
774 |
|
775 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
776 |
-
#: app/libraries/main.php:
|
777 |
#, fuzzy
|
778 |
msgid "Event Link"
|
779 |
msgstr "Evenement locatie"
|
@@ -793,7 +793,7 @@ msgstr ""
|
|
793 |
"standaard evenementen pagina gaat. Vul de volledige link in: http(s)://"
|
794 |
|
795 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
796 |
-
#: app/libraries/main.php:
|
797 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
798 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
799 |
#: app/widgets/single.php:107
|
@@ -829,7 +829,7 @@ msgstr "Maximum aantal boekingen"
|
|
829 |
#: app/features/events.php:818 app/features/events.php:910
|
830 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
831 |
#: app/modules/booking/steps/tickets.php:40
|
832 |
-
#: app/skins/available_spot/tpl.php:
|
833 |
msgid "Unlimited"
|
834 |
msgstr "Onbeperkt"
|
835 |
|
@@ -838,7 +838,7 @@ msgid "100"
|
|
838 |
msgstr "100"
|
839 |
|
840 |
#: app/features/events.php:838 app/libraries/book.php:60
|
841 |
-
#: app/libraries/main.php:
|
842 |
msgid "Tickets"
|
843 |
msgstr "Tickets"
|
844 |
|
@@ -906,7 +906,7 @@ msgstr "Prijs label"
|
|
906 |
#: app/features/mec/meta_boxes/search_form.php:397
|
907 |
#: app/features/mec/meta_boxes/search_form.php:451
|
908 |
#: app/features/mec/meta_boxes/search_form.php:512
|
909 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
910 |
msgid "Label"
|
911 |
msgstr "Label"
|
912 |
|
@@ -1133,7 +1133,7 @@ msgstr ""
|
|
1133 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1134 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1135 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1136 |
-
#: app/libraries/main.php:
|
1137 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1138 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1139 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1154,7 +1154,7 @@ msgstr "Locatie"
|
|
1154 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1155 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1156 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1157 |
-
#: app/libraries/main.php:
|
1158 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1159 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1160 |
#: app/skins/single/modern.php:21
|
@@ -1294,14 +1294,14 @@ msgid "Remove Image"
|
|
1294 |
msgstr "Verwijder afbeelding"
|
1295 |
|
1296 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1297 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1298 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1299 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1300 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1301 |
msgid "Labels"
|
1302 |
msgstr "Labels"
|
1303 |
|
1304 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1305 |
#: app/features/mec/meta_boxes/filter.php:138
|
1306 |
msgid "Tags"
|
1307 |
msgstr "Tags"
|
@@ -1958,31 +1958,31 @@ msgid "Normal"
|
|
1958 |
msgstr ""
|
1959 |
|
1960 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1961 |
-
#: app/skins/agenda/render.php:
|
1962 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1963 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
1964 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1965 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1966 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1967 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
1968 |
-
#: app/skins/timetable/render.php:
|
1969 |
-
#: app/skins/weekly_view/render.php:
|
1970 |
#, fuzzy
|
1971 |
#| msgid "Featured Image"
|
1972 |
msgid "Featured"
|
1973 |
msgstr "Uitgelichte afbeelding"
|
1974 |
|
1975 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1976 |
-
#: app/libraries/main.php:
|
1977 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1978 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1979 |
-
#: app/skins/daily_view/render.php:
|
1980 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1981 |
#: app/skins/monthly_view/calendar.php:84
|
1982 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1983 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
1984 |
-
#: app/skins/timetable/render.php:
|
1985 |
-
#: app/skins/weekly_view/render.php:
|
1986 |
msgid "Canceled"
|
1987 |
msgstr "Geannuleerd"
|
1988 |
|
@@ -2006,9 +2006,9 @@ msgstr "Slug"
|
|
2006 |
msgid "Event %s"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2010 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2011 |
-
#: app/libraries/main.php:
|
2012 |
msgid "Locations"
|
2013 |
msgstr "Locaties"
|
2014 |
|
@@ -2104,7 +2104,7 @@ msgstr "Kies afbeelding"
|
|
2104 |
msgid "Don't show map in single event page"
|
2105 |
msgstr "Verberg de map op de pagina van het evenement"
|
2106 |
|
2107 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2108 |
#, fuzzy
|
2109 |
#| msgid "Search Locations"
|
2110 |
msgid "Other Locations"
|
@@ -2115,41 +2115,41 @@ msgid ""
|
|
2115 |
"You can select extra locations in addition to main location if you like."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: app/features/mec.php:
|
2119 |
msgid ""
|
2120 |
"Activation faild. Please check your purchase code or license type."
|
2121 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: app/features/mec.php:
|
2125 |
msgid "Troubleshooting"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: app/features/mec.php:
|
2129 |
msgid ""
|
2130 |
"Your options is not in JSON format. Please insert correct options in this "
|
2131 |
"field and try again."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: app/features/mec.php:
|
2135 |
#, fuzzy
|
2136 |
#| msgid "Your booking cannot verify!"
|
2137 |
msgid "Your options field can not be empty!"
|
2138 |
msgstr "Uw boeking kan niet worden geverifieerd!"
|
2139 |
|
2140 |
-
#: app/features/mec.php:
|
2141 |
#, fuzzy
|
2142 |
#| msgid "Your booking successfully verified."
|
2143 |
msgid "Your options imported successfuly."
|
2144 |
msgstr "Uw boeking is succesvol geverifieerd."
|
2145 |
|
2146 |
-
#: app/features/mec.php:
|
2147 |
#, fuzzy
|
2148 |
#| msgid "Support"
|
2149 |
msgid "MEC - Support"
|
2150 |
msgstr "Support"
|
2151 |
|
2152 |
-
#: app/features/mec.php:
|
2153 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2154 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2155 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2158,64 +2158,64 @@ msgstr "Support"
|
|
2158 |
msgid "Support"
|
2159 |
msgstr "Support"
|
2160 |
|
2161 |
-
#: app/features/mec.php:
|
2162 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2163 |
-
#: app/libraries/main.php:
|
2164 |
msgid "Organizers"
|
2165 |
msgstr "Organisatoren"
|
2166 |
|
2167 |
-
#: app/features/mec.php:
|
2168 |
#: app/features/mec/dashboard.php:164
|
2169 |
msgid "Shortcodes"
|
2170 |
msgstr "Shortcodes"
|
2171 |
|
2172 |
-
#: app/features/mec.php:
|
2173 |
msgid "MEC - Settings"
|
2174 |
msgstr "MEC - Instellingen"
|
2175 |
|
2176 |
-
#: app/features/mec.php:
|
2177 |
#, fuzzy
|
2178 |
#| msgid "MEC - Settings"
|
2179 |
msgid "MEC - Addons"
|
2180 |
msgstr "MEC - Instellingen"
|
2181 |
|
2182 |
-
#: app/features/mec.php:
|
2183 |
msgid "Addons"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: app/features/mec.php:
|
2187 |
msgid "Add Shortcode"
|
2188 |
msgstr "Shortcode toevoegen"
|
2189 |
|
2190 |
-
#: app/features/mec.php:
|
2191 |
msgid "Add New Shortcode"
|
2192 |
msgstr "Nieuwe shortcode toevoegen"
|
2193 |
|
2194 |
-
#: app/features/mec.php:
|
2195 |
msgid "No shortcodes found!"
|
2196 |
msgstr "Geen shortcodes gevonden!"
|
2197 |
|
2198 |
-
#: app/features/mec.php:
|
2199 |
msgid "All Shortcodes"
|
2200 |
msgstr "Alle shortcodes"
|
2201 |
|
2202 |
-
#: app/features/mec.php:
|
2203 |
msgid "Edit shortcodes"
|
2204 |
msgstr "Bewerk shortcodes"
|
2205 |
|
2206 |
-
#: app/features/mec.php:
|
2207 |
msgid "No shortcodes found in Trash!"
|
2208 |
msgstr "Geen shortcodes gevonden in de prullenbak!"
|
2209 |
|
2210 |
-
#: app/features/mec.php:
|
2211 |
msgid "Display Options"
|
2212 |
msgstr "Weergave opties"
|
2213 |
|
2214 |
-
#: app/features/mec.php:
|
2215 |
msgid "Filter Options"
|
2216 |
msgstr "Filter opties"
|
2217 |
|
2218 |
-
#: app/features/mec.php:
|
2219 |
#, fuzzy
|
2220 |
msgid "Search Form"
|
2221 |
msgstr "Zoek coupons"
|
@@ -2224,15 +2224,15 @@ msgstr "Zoek coupons"
|
|
2224 |
msgid "Display content's images as Popup"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: app/features/mec.php:
|
2228 |
msgid "Single Event Display Method"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: app/features/mec.php:
|
2232 |
msgid "Separate Window"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: app/features/mec.php:
|
2236 |
msgid "Modal 1"
|
2237 |
msgstr ""
|
2238 |
|
@@ -3196,8 +3196,8 @@ msgstr "Uitgeschakeld"
|
|
3196 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3197 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3198 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3199 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3200 |
-
#: app/libraries/skins.php:
|
3201 |
msgid "Speaker"
|
3202 |
msgstr ""
|
3203 |
|
@@ -3209,7 +3209,7 @@ msgstr ""
|
|
3209 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3210 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3211 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3212 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3213 |
#, fuzzy
|
3214 |
#| msgid "Tags"
|
3215 |
msgid "Tag"
|
@@ -3727,7 +3727,7 @@ msgstr ""
|
|
3727 |
msgid "Remove suffix from calendars"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3731 |
msgid "Weekdays"
|
3732 |
msgstr ""
|
3733 |
|
@@ -4399,7 +4399,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4399 |
msgstr ""
|
4400 |
|
4401 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4402 |
-
#: app/libraries/main.php:
|
4403 |
msgid "Verified"
|
4404 |
msgstr "Geverifieerd"
|
4405 |
|
@@ -4945,7 +4945,7 @@ msgstr "bijv. john@smith.com"
|
|
4945 |
msgid "eg. https://webnus.net"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
4949 |
#: app/skins/single.php:194
|
4950 |
msgid "Other Organizers"
|
4951 |
msgstr ""
|
@@ -4983,7 +4983,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
4983 |
msgstr ""
|
4984 |
|
4985 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4986 |
-
#: app/libraries/main.php:
|
4987 |
msgid "Ticket"
|
4988 |
msgstr "Ticket"
|
4989 |
|
@@ -5060,8 +5060,8 @@ msgstr ""
|
|
5060 |
msgid "Discount"
|
5061 |
msgstr "Korting"
|
5062 |
|
5063 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5064 |
-
#: app/modules/booking/default.php:
|
5065 |
msgid "Download Invoice"
|
5066 |
msgstr ""
|
5067 |
|
@@ -5089,8 +5089,8 @@ msgid "day"
|
|
5089 |
msgstr "dag"
|
5090 |
|
5091 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5092 |
-
#: app/skins/available_spot/tpl.php:
|
5093 |
-
#: app/skins/countdown/tpl.php:
|
5094 |
msgid "days"
|
5095 |
msgstr "dagen"
|
5096 |
|
@@ -5099,8 +5099,8 @@ msgid "hour"
|
|
5099 |
msgstr "uur"
|
5100 |
|
5101 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5102 |
-
#: app/skins/available_spot/tpl.php:
|
5103 |
-
#: app/skins/countdown/tpl.php:
|
5104 |
msgid "hours"
|
5105 |
msgstr "uren"
|
5106 |
|
@@ -5109,8 +5109,8 @@ msgid "minute"
|
|
5109 |
msgstr "minuut"
|
5110 |
|
5111 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5112 |
-
#: app/skins/available_spot/tpl.php:
|
5113 |
-
#: app/skins/countdown/tpl.php:
|
5114 |
msgid "minutes"
|
5115 |
msgstr "minuten"
|
5116 |
|
@@ -5119,8 +5119,8 @@ msgid "second"
|
|
5119 |
msgstr "seconde"
|
5120 |
|
5121 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5122 |
-
#: app/skins/available_spot/tpl.php:
|
5123 |
-
#: app/skins/countdown/tpl.php:
|
5124 |
msgid "seconds"
|
5125 |
msgstr "secondes"
|
5126 |
|
@@ -5132,7 +5132,7 @@ msgstr ""
|
|
5132 |
msgid "Custom sidebar for single and modal page of MEC."
|
5133 |
msgstr ""
|
5134 |
|
5135 |
-
#: app/libraries/feed.php:
|
5136 |
msgid "There is no excerpt because this is a protected post."
|
5137 |
msgstr "Er is geen samenvatting omdat dit bericht is beveiligd."
|
5138 |
|
@@ -5194,31 +5194,31 @@ msgstr "Cover weergave"
|
|
5194 |
msgid "Slider View"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5198 |
msgid "SU"
|
5199 |
msgstr "ZO"
|
5200 |
|
5201 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5202 |
msgid "MO"
|
5203 |
msgstr "MA"
|
5204 |
|
5205 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5206 |
msgid "TU"
|
5207 |
msgstr "DI"
|
5208 |
|
5209 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5210 |
msgid "WE"
|
5211 |
msgstr "WO"
|
5212 |
|
5213 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5214 |
msgid "TH"
|
5215 |
msgstr "DO"
|
5216 |
|
5217 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5218 |
msgid "FR"
|
5219 |
msgstr "VR"
|
5220 |
|
5221 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5222 |
msgid "SA"
|
5223 |
msgstr "ZA"
|
5224 |
|
@@ -5403,95 +5403,95 @@ msgstr ""
|
|
5403 |
msgid "%s booked %s event."
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: app/libraries/main.php:
|
5407 |
msgid "Taxonomies"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
-
#: app/libraries/main.php:
|
5411 |
msgid "Category Plural Label"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
-
#: app/libraries/main.php:
|
5415 |
msgid "Category Singular Label"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: app/libraries/main.php:
|
5419 |
msgid "Label Plural Label"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: app/libraries/main.php:
|
5423 |
msgid "Label Singular Label"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
-
#: app/libraries/main.php:
|
5427 |
msgid "label"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
-
#: app/libraries/main.php:
|
5431 |
msgid "Location Plural Label"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
-
#: app/libraries/main.php:
|
5435 |
msgid "Location Singular Label"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
-
#: app/libraries/main.php:
|
5439 |
msgid "Organizer Plural Label"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
-
#: app/libraries/main.php:
|
5443 |
msgid "Organizer Singular Label"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
-
#: app/libraries/main.php:
|
5447 |
#, fuzzy
|
5448 |
#| msgid "Search Labels"
|
5449 |
msgid "Speaker Plural Label"
|
5450 |
msgstr "Zoek labels"
|
5451 |
|
5452 |
-
#: app/libraries/main.php:
|
5453 |
#, fuzzy
|
5454 |
#| msgid "Popular Labels"
|
5455 |
msgid "Speaker Singular Label"
|
5456 |
msgstr "Populaire labels"
|
5457 |
|
5458 |
-
#: app/libraries/main.php:
|
5459 |
msgid "Sunday abbreviation"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: app/libraries/main.php:
|
5463 |
msgid "Monday abbreviation"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
-
#: app/libraries/main.php:
|
5467 |
msgid "Tuesday abbreviation"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: app/libraries/main.php:
|
5471 |
msgid "Wednesday abbreviation"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: app/libraries/main.php:
|
5475 |
msgid "Thursday abbreviation"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: app/libraries/main.php:
|
5479 |
msgid "Friday abbreviation"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: app/libraries/main.php:
|
5483 |
msgid "Saturday abbreviation"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: app/libraries/main.php:
|
5487 |
msgid "Others"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: app/libraries/main.php:
|
5491 |
msgid "Booking Success Message"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: app/libraries/main.php:
|
5495 |
msgid ""
|
5496 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5497 |
"needed, please check your email."
|
@@ -5499,91 +5499,91 @@ msgstr ""
|
|
5499 |
"Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
|
5500 |
"nodig zijn, controleer uw email alstublieft."
|
5501 |
|
5502 |
-
#: app/libraries/main.php:
|
5503 |
msgid "Register Button"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: app/libraries/main.php:
|
5507 |
-
#: app/skins/carousel/render.php:
|
5508 |
-
#: app/skins/grid/render.php:
|
5509 |
-
#: app/skins/grid/render.php:
|
5510 |
-
#: app/skins/list/render.php:
|
5511 |
-
#: app/skins/masonry/render.php:
|
5512 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5513 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5514 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5515 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5516 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5517 |
-
#: app/skins/slider/render.php:
|
5518 |
-
#: app/skins/slider/render.php:
|
5519 |
msgid "REGISTER"
|
5520 |
msgstr "REGISTREREN"
|
5521 |
|
5522 |
-
#: app/libraries/main.php:
|
5523 |
msgid "View Detail Button"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: app/libraries/main.php:
|
5527 |
-
#: app/skins/carousel/render.php:
|
5528 |
-
#: app/skins/grid/render.php:
|
5529 |
-
#: app/skins/grid/render.php:
|
5530 |
-
#: app/skins/list/render.php:
|
5531 |
-
#: app/skins/slider/render.php:
|
5532 |
-
#: app/skins/slider/render.php:
|
5533 |
-
#: app/skins/slider/render.php:
|
5534 |
msgid "View Detail"
|
5535 |
msgstr "Bekijk detail"
|
5536 |
|
5537 |
-
#: app/libraries/main.php:
|
5538 |
msgid "Event Detail Button"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: app/libraries/main.php:
|
5542 |
#, fuzzy
|
5543 |
msgid "Event Detail"
|
5544 |
msgstr "Evenement details"
|
5545 |
|
5546 |
-
#: app/libraries/main.php:
|
5547 |
msgid "More Info Link"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: app/libraries/main.php:
|
5551 |
msgid "Ticket (Singular)"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
-
#: app/libraries/main.php:
|
5555 |
msgid "Tickets (Plural)"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: app/libraries/main.php:
|
5559 |
msgid "EventON"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: app/libraries/main.php:
|
5563 |
msgid "The Events Calendar"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#: app/libraries/main.php:
|
5567 |
msgid "Events Schedule WP Plugin"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: app/libraries/main.php:
|
5571 |
msgid "Calendarize It"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
-
#: app/libraries/main.php:
|
5575 |
msgid "Confirmed"
|
5576 |
msgstr "Bevestigd"
|
5577 |
|
5578 |
-
#: app/libraries/main.php:
|
5579 |
msgid "Rejected"
|
5580 |
msgstr "Afgewezen"
|
5581 |
|
5582 |
-
#: app/libraries/main.php:
|
5583 |
msgid "Pending"
|
5584 |
msgstr "In afwachting"
|
5585 |
|
5586 |
-
#: app/libraries/main.php:
|
5587 |
msgid "Waiting"
|
5588 |
msgstr "In afwachting"
|
5589 |
|
@@ -5603,27 +5603,27 @@ msgstr "Uw boeking is bevestigd."
|
|
5603 |
msgid "A new booking is received."
|
5604 |
msgstr "Een nieuwe boeking ontvangen."
|
5605 |
|
5606 |
-
#: app/libraries/notifications.php:
|
5607 |
msgid "A new event is added."
|
5608 |
msgstr "Een nieuw evenement is toegevoegd."
|
5609 |
|
5610 |
-
#: app/libraries/notifications.php:
|
5611 |
msgid "to"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
-
#: app/libraries/notifications.php:
|
5615 |
msgid "+ Add to Google Calendar"
|
5616 |
msgstr "+ Aan Google Kalender toevoegen"
|
5617 |
|
5618 |
-
#: app/libraries/notifications.php:
|
5619 |
msgid "+ iCal export"
|
5620 |
msgstr "+ iCal export"
|
5621 |
|
5622 |
-
#: app/libraries/notifications.php:
|
5623 |
msgid "Yes"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: app/libraries/notifications.php:
|
5627 |
msgid "No"
|
5628 |
msgstr ""
|
5629 |
|
@@ -5638,7 +5638,7 @@ msgstr "Skin controller bestaat niet."
|
|
5638 |
msgid "All of the day"
|
5639 |
msgstr "Hele dag"
|
5640 |
|
5641 |
-
#: app/libraries/skins.php:
|
5642 |
msgid "Ignore month and years"
|
5643 |
msgstr ""
|
5644 |
|
@@ -5680,8 +5680,8 @@ msgid "Fill other attendees information like the first form."
|
|
5680 |
msgstr ""
|
5681 |
|
5682 |
#: app/modules/booking/steps/form.php:162
|
5683 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5684 |
-
#: app/skins/countdown/tpl.php:
|
5685 |
msgid "Next"
|
5686 |
msgstr "Volgende"
|
5687 |
|
@@ -5806,11 +5806,11 @@ msgid "No event found!"
|
|
5806 |
msgstr "Geen evenementen gevonden!"
|
5807 |
|
5808 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5809 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5810 |
msgid "Load More"
|
5811 |
msgstr "Meer laden"
|
5812 |
|
5813 |
-
#: app/skins/available_spot/tpl.php:
|
5814 |
msgid "Available Spot(s):"
|
5815 |
msgstr ""
|
5816 |
|
@@ -5820,23 +5820,23 @@ msgstr ""
|
|
5820 |
msgid "View All"
|
5821 |
msgstr "Bekijk label"
|
5822 |
|
5823 |
-
#: app/skins/carousel/render.php:
|
5824 |
-
#: app/skins/countdown/tpl.php:
|
5825 |
-
#: app/skins/list/render.php:
|
5826 |
msgid "EVENT DETAIL"
|
5827 |
msgstr "Bekijk detail"
|
5828 |
|
5829 |
-
#: app/skins/countdown/tpl.php:
|
5830 |
-
#: app/skins/countdown/tpl.php:
|
5831 |
#, php-format
|
5832 |
msgid "%s Upcoming Event"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
-
#: app/skins/cover/tpl.php:
|
5836 |
msgid "featured event"
|
5837 |
msgstr "Uitgelicht evenement"
|
5838 |
|
5839 |
-
#: app/skins/daily_view/render.php:
|
5840 |
msgid "No event"
|
5841 |
msgstr "Geen evenement"
|
5842 |
|
@@ -5850,16 +5850,16 @@ msgid "All"
|
|
5850 |
msgstr ""
|
5851 |
|
5852 |
#: app/skins/monthly_view/calendar.php:66
|
5853 |
-
#: app/skins/monthly_view/calendar.php:
|
5854 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5855 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5856 |
#, php-format
|
5857 |
msgid "Events for %s"
|
5858 |
msgstr "Evenementen in %s"
|
5859 |
|
5860 |
-
#: app/skins/monthly_view/calendar.php:
|
5861 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5862 |
-
#: app/skins/timetable/render.php:
|
5863 |
msgid "No Events"
|
5864 |
msgstr "Geen evenementen"
|
5865 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:42+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
30 |
msgid "Content"
|
31 |
msgstr "Inhoud"
|
32 |
|
33 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
34 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Shortcode"
|
37 |
|
60 |
msgid "Event Color"
|
61 |
msgstr "Evenement kleur"
|
62 |
|
63 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
64 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
65 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
66 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
266 |
msgid "Event"
|
267 |
msgstr "Evenement"
|
268 |
|
269 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
270 |
msgid "Add Event"
|
271 |
msgstr "Evenement toevoegen"
|
272 |
|
306 |
#: app/features/mec/meta_boxes/search_form.php:362
|
307 |
#: app/features/mec/meta_boxes/search_form.php:416
|
308 |
#: app/features/mec/meta_boxes/search_form.php:477
|
309 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
310 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
311 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
312 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
313 |
msgid "Category"
|
314 |
msgstr "Categorie"
|
315 |
|
316 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
317 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
318 |
+
#: app/libraries/main.php:4363
|
319 |
msgid "Categories"
|
320 |
msgstr "Categorieën"
|
321 |
|
390 |
#: app/features/events.php:296 app/features/events.php:2053
|
391 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
392 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
393 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
394 |
#: app/widgets/single.php:103
|
395 |
msgid "Event Cost"
|
396 |
msgstr "Evenements kosten"
|
397 |
|
398 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
399 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
400 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
401 |
#: app/skins/single/modern.php:184
|
402 |
msgid "Cost"
|
413 |
#: app/features/events.php:380 app/features/events.php:1237
|
414 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
415 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
416 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
417 |
#: app/modules/booking/steps/form.php:35
|
418 |
msgid "Name"
|
419 |
msgstr "Naam"
|
425 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
426 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
427 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
428 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
429 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
430 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
431 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
755 |
|
756 |
#: app/features/events.php:683 app/features/events.php:703
|
757 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
758 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
759 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
760 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
761 |
msgid "Speakers"
|
762 |
msgstr ""
|
763 |
|
773 |
msgstr "Evenement locatie"
|
774 |
|
775 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
776 |
+
#: app/libraries/main.php:4394
|
777 |
#, fuzzy
|
778 |
msgid "Event Link"
|
779 |
msgstr "Evenement locatie"
|
793 |
"standaard evenementen pagina gaat. Vul de volledige link in: http(s)://"
|
794 |
|
795 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
796 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
797 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
798 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
799 |
#: app/widgets/single.php:107
|
829 |
#: app/features/events.php:818 app/features/events.php:910
|
830 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
831 |
#: app/modules/booking/steps/tickets.php:40
|
832 |
+
#: app/skins/available_spot/tpl.php:138
|
833 |
msgid "Unlimited"
|
834 |
msgstr "Onbeperkt"
|
835 |
|
838 |
msgstr "100"
|
839 |
|
840 |
#: app/features/events.php:838 app/libraries/book.php:60
|
841 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
842 |
msgid "Tickets"
|
843 |
msgstr "Tickets"
|
844 |
|
906 |
#: app/features/mec/meta_boxes/search_form.php:397
|
907 |
#: app/features/mec/meta_boxes/search_form.php:451
|
908 |
#: app/features/mec/meta_boxes/search_form.php:512
|
909 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
910 |
msgid "Label"
|
911 |
msgstr "Label"
|
912 |
|
1133 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1134 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1135 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1136 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1137 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1138 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1139 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1154 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1155 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1156 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1157 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1158 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1159 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1160 |
#: app/skins/single/modern.php:21
|
1294 |
msgstr "Verwijder afbeelding"
|
1295 |
|
1296 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1297 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1298 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1299 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1300 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1301 |
msgid "Labels"
|
1302 |
msgstr "Labels"
|
1303 |
|
1304 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1305 |
#: app/features/mec/meta_boxes/filter.php:138
|
1306 |
msgid "Tags"
|
1307 |
msgstr "Tags"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1961 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
1962 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1963 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
1964 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1965 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1966 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1967 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
1968 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
1969 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
1970 |
#, fuzzy
|
1971 |
#| msgid "Featured Image"
|
1972 |
msgid "Featured"
|
1973 |
msgstr "Uitgelichte afbeelding"
|
1974 |
|
1975 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1976 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
1977 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1978 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1979 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
1980 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1981 |
#: app/skins/monthly_view/calendar.php:84
|
1982 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1983 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
1984 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
1985 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
1986 |
msgid "Canceled"
|
1987 |
msgstr "Geannuleerd"
|
1988 |
|
2006 |
msgid "Event %s"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2010 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2011 |
+
#: app/libraries/main.php:4367
|
2012 |
msgid "Locations"
|
2013 |
msgstr "Locaties"
|
2014 |
|
2104 |
msgid "Don't show map in single event page"
|
2105 |
msgstr "Verberg de map op de pagina van het evenement"
|
2106 |
|
2107 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2108 |
#, fuzzy
|
2109 |
#| msgid "Search Locations"
|
2110 |
msgid "Other Locations"
|
2115 |
"You can select extra locations in addition to main location if you like."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: app/features/mec.php:144
|
2119 |
msgid ""
|
2120 |
"Activation faild. Please check your purchase code or license type."
|
2121 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: app/features/mec.php:144
|
2125 |
msgid "Troubleshooting"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: app/features/mec.php:179
|
2129 |
msgid ""
|
2130 |
"Your options is not in JSON format. Please insert correct options in this "
|
2131 |
"field and try again."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: app/features/mec.php:183
|
2135 |
#, fuzzy
|
2136 |
#| msgid "Your booking cannot verify!"
|
2137 |
msgid "Your options field can not be empty!"
|
2138 |
msgstr "Uw boeking kan niet worden geverifieerd!"
|
2139 |
|
2140 |
+
#: app/features/mec.php:187
|
2141 |
#, fuzzy
|
2142 |
#| msgid "Your booking successfully verified."
|
2143 |
msgid "Your options imported successfuly."
|
2144 |
msgstr "Uw boeking is succesvol geverifieerd."
|
2145 |
|
2146 |
+
#: app/features/mec.php:274
|
2147 |
#, fuzzy
|
2148 |
#| msgid "Support"
|
2149 |
msgid "MEC - Support"
|
2150 |
msgstr "Support"
|
2151 |
|
2152 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2153 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2154 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2155 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2158 |
msgid "Support"
|
2159 |
msgstr "Support"
|
2160 |
|
2161 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2162 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2163 |
+
#: app/libraries/main.php:4369
|
2164 |
msgid "Organizers"
|
2165 |
msgstr "Organisatoren"
|
2166 |
|
2167 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2168 |
#: app/features/mec/dashboard.php:164
|
2169 |
msgid "Shortcodes"
|
2170 |
msgstr "Shortcodes"
|
2171 |
|
2172 |
+
#: app/features/mec.php:303
|
2173 |
msgid "MEC - Settings"
|
2174 |
msgstr "MEC - Instellingen"
|
2175 |
|
2176 |
+
#: app/features/mec.php:304
|
2177 |
#, fuzzy
|
2178 |
#| msgid "MEC - Settings"
|
2179 |
msgid "MEC - Addons"
|
2180 |
msgstr "MEC - Instellingen"
|
2181 |
|
2182 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2183 |
msgid "Addons"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: app/features/mec.php:321
|
2187 |
msgid "Add Shortcode"
|
2188 |
msgstr "Shortcode toevoegen"
|
2189 |
|
2190 |
+
#: app/features/mec.php:322
|
2191 |
msgid "Add New Shortcode"
|
2192 |
msgstr "Nieuwe shortcode toevoegen"
|
2193 |
|
2194 |
+
#: app/features/mec.php:323
|
2195 |
msgid "No shortcodes found!"
|
2196 |
msgstr "Geen shortcodes gevonden!"
|
2197 |
|
2198 |
+
#: app/features/mec.php:324
|
2199 |
msgid "All Shortcodes"
|
2200 |
msgstr "Alle shortcodes"
|
2201 |
|
2202 |
+
#: app/features/mec.php:325
|
2203 |
msgid "Edit shortcodes"
|
2204 |
msgstr "Bewerk shortcodes"
|
2205 |
|
2206 |
+
#: app/features/mec.php:326
|
2207 |
msgid "No shortcodes found in Trash!"
|
2208 |
msgstr "Geen shortcodes gevonden in de prullenbak!"
|
2209 |
|
2210 |
+
#: app/features/mec.php:373
|
2211 |
msgid "Display Options"
|
2212 |
msgstr "Weergave opties"
|
2213 |
|
2214 |
+
#: app/features/mec.php:374
|
2215 |
msgid "Filter Options"
|
2216 |
msgstr "Filter opties"
|
2217 |
|
2218 |
+
#: app/features/mec.php:376
|
2219 |
#, fuzzy
|
2220 |
msgid "Search Form"
|
2221 |
msgstr "Zoek coupons"
|
2224 |
msgid "Display content's images as Popup"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: app/features/mec.php:764
|
2228 |
msgid "Single Event Display Method"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: app/features/mec.php:769
|
2232 |
msgid "Separate Window"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: app/features/mec.php:770
|
2236 |
msgid "Modal 1"
|
2237 |
msgstr ""
|
2238 |
|
3196 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3197 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3198 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3199 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3200 |
+
#: app/libraries/skins.php:829
|
3201 |
msgid "Speaker"
|
3202 |
msgstr ""
|
3203 |
|
3209 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3210 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3211 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3212 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3213 |
#, fuzzy
|
3214 |
#| msgid "Tags"
|
3215 |
msgid "Tag"
|
3727 |
msgid "Remove suffix from calendars"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3731 |
msgid "Weekdays"
|
3732 |
msgstr ""
|
3733 |
|
4399 |
msgstr ""
|
4400 |
|
4401 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4402 |
+
#: app/libraries/main.php:4558
|
4403 |
msgid "Verified"
|
4404 |
msgstr "Geverifieerd"
|
4405 |
|
4945 |
msgid "eg. https://webnus.net"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
4949 |
#: app/skins/single.php:194
|
4950 |
msgid "Other Organizers"
|
4951 |
msgstr ""
|
4983 |
msgstr ""
|
4984 |
|
4985 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4986 |
+
#: app/libraries/main.php:4398
|
4987 |
msgid "Ticket"
|
4988 |
msgstr "Ticket"
|
4989 |
|
5060 |
msgid "Discount"
|
5061 |
msgstr "Korting"
|
5062 |
|
5063 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5064 |
+
#: app/modules/booking/default.php:381
|
5065 |
msgid "Download Invoice"
|
5066 |
msgstr ""
|
5067 |
|
5089 |
msgstr "dag"
|
5090 |
|
5091 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5092 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5093 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5094 |
msgid "days"
|
5095 |
msgstr "dagen"
|
5096 |
|
5099 |
msgstr "uur"
|
5100 |
|
5101 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5102 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5103 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5104 |
msgid "hours"
|
5105 |
msgstr "uren"
|
5106 |
|
5109 |
msgstr "minuut"
|
5110 |
|
5111 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5112 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5113 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5114 |
msgid "minutes"
|
5115 |
msgstr "minuten"
|
5116 |
|
5119 |
msgstr "seconde"
|
5120 |
|
5121 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5122 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5123 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5124 |
msgid "seconds"
|
5125 |
msgstr "secondes"
|
5126 |
|
5132 |
msgid "Custom sidebar for single and modal page of MEC."
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
#: app/libraries/feed.php:83
|
5136 |
msgid "There is no excerpt because this is a protected post."
|
5137 |
msgstr "Er is geen samenvatting omdat dit bericht is beveiligd."
|
5138 |
|
5194 |
msgid "Slider View"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5198 |
msgid "SU"
|
5199 |
msgstr "ZO"
|
5200 |
|
5201 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5202 |
msgid "MO"
|
5203 |
msgstr "MA"
|
5204 |
|
5205 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5206 |
msgid "TU"
|
5207 |
msgstr "DI"
|
5208 |
|
5209 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5210 |
msgid "WE"
|
5211 |
msgstr "WO"
|
5212 |
|
5213 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5214 |
msgid "TH"
|
5215 |
msgstr "DO"
|
5216 |
|
5217 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5218 |
msgid "FR"
|
5219 |
msgstr "VR"
|
5220 |
|
5221 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5222 |
msgid "SA"
|
5223 |
msgstr "ZA"
|
5224 |
|
5403 |
msgid "%s booked %s event."
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: app/libraries/main.php:4361
|
5407 |
msgid "Taxonomies"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: app/libraries/main.php:4363
|
5411 |
msgid "Category Plural Label"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
+
#: app/libraries/main.php:4364
|
5415 |
msgid "Category Singular Label"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: app/libraries/main.php:4365
|
5419 |
msgid "Label Plural Label"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: app/libraries/main.php:4366
|
5423 |
msgid "Label Singular Label"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: app/libraries/main.php:4366
|
5427 |
msgid "label"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: app/libraries/main.php:4367
|
5431 |
msgid "Location Plural Label"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
+
#: app/libraries/main.php:4368
|
5435 |
msgid "Location Singular Label"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
+
#: app/libraries/main.php:4369
|
5439 |
msgid "Organizer Plural Label"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
+
#: app/libraries/main.php:4370
|
5443 |
msgid "Organizer Singular Label"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
+
#: app/libraries/main.php:4371
|
5447 |
#, fuzzy
|
5448 |
#| msgid "Search Labels"
|
5449 |
msgid "Speaker Plural Label"
|
5450 |
msgstr "Zoek labels"
|
5451 |
|
5452 |
+
#: app/libraries/main.php:4372
|
5453 |
#, fuzzy
|
5454 |
#| msgid "Popular Labels"
|
5455 |
msgid "Speaker Singular Label"
|
5456 |
msgstr "Populaire labels"
|
5457 |
|
5458 |
+
#: app/libraries/main.php:4378
|
5459 |
msgid "Sunday abbreviation"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: app/libraries/main.php:4379
|
5463 |
msgid "Monday abbreviation"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: app/libraries/main.php:4380
|
5467 |
msgid "Tuesday abbreviation"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
+
#: app/libraries/main.php:4381
|
5471 |
msgid "Wednesday abbreviation"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: app/libraries/main.php:4382
|
5475 |
msgid "Thursday abbreviation"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: app/libraries/main.php:4383
|
5479 |
msgid "Friday abbreviation"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: app/libraries/main.php:4384
|
5483 |
msgid "Saturday abbreviation"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: app/libraries/main.php:4388
|
5487 |
msgid "Others"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: app/libraries/main.php:4390
|
5491 |
msgid "Booking Success Message"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: app/libraries/main.php:4390
|
5495 |
msgid ""
|
5496 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5497 |
"needed, please check your email."
|
5499 |
"Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
|
5500 |
"nodig zijn, controleer uw email alstublieft."
|
5501 |
|
5502 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5503 |
msgid "Register Button"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5507 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5508 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5509 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5510 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5511 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5512 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5513 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5514 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5515 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5516 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5517 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5518 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5519 |
msgid "REGISTER"
|
5520 |
msgstr "REGISTREREN"
|
5521 |
|
5522 |
+
#: app/libraries/main.php:4392
|
5523 |
msgid "View Detail Button"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5527 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5528 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5529 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5530 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5531 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5532 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5533 |
+
#: app/skins/slider/render.php:305
|
5534 |
msgid "View Detail"
|
5535 |
msgstr "Bekijk detail"
|
5536 |
|
5537 |
+
#: app/libraries/main.php:4393
|
5538 |
msgid "Event Detail Button"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5542 |
#, fuzzy
|
5543 |
msgid "Event Detail"
|
5544 |
msgstr "Evenement details"
|
5545 |
|
5546 |
+
#: app/libraries/main.php:4395
|
5547 |
msgid "More Info Link"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: app/libraries/main.php:4398
|
5551 |
msgid "Ticket (Singular)"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: app/libraries/main.php:4399
|
5555 |
msgid "Tickets (Plural)"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: app/libraries/main.php:4466
|
5559 |
msgid "EventON"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: app/libraries/main.php:4467
|
5563 |
msgid "The Events Calendar"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: app/libraries/main.php:4468
|
5567 |
msgid "Events Schedule WP Plugin"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: app/libraries/main.php:4469
|
5571 |
msgid "Calendarize It"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: app/libraries/main.php:4543
|
5575 |
msgid "Confirmed"
|
5576 |
msgstr "Bevestigd"
|
5577 |
|
5578 |
+
#: app/libraries/main.php:4544
|
5579 |
msgid "Rejected"
|
5580 |
msgstr "Afgewezen"
|
5581 |
|
5582 |
+
#: app/libraries/main.php:4545
|
5583 |
msgid "Pending"
|
5584 |
msgstr "In afwachting"
|
5585 |
|
5586 |
+
#: app/libraries/main.php:4560
|
5587 |
msgid "Waiting"
|
5588 |
msgstr "In afwachting"
|
5589 |
|
5603 |
msgid "A new booking is received."
|
5604 |
msgstr "Een nieuwe boeking ontvangen."
|
5605 |
|
5606 |
+
#: app/libraries/notifications.php:338
|
5607 |
msgid "A new event is added."
|
5608 |
msgstr "Een nieuw evenement is toegevoegd."
|
5609 |
|
5610 |
+
#: app/libraries/notifications.php:509
|
5611 |
msgid "to"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5615 |
msgid "+ Add to Google Calendar"
|
5616 |
msgstr "+ Aan Google Kalender toevoegen"
|
5617 |
|
5618 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5619 |
msgid "+ iCal export"
|
5620 |
msgstr "+ iCal export"
|
5621 |
|
5622 |
+
#: app/libraries/notifications.php:582
|
5623 |
msgid "Yes"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
+
#: app/libraries/notifications.php:582
|
5627 |
msgid "No"
|
5628 |
msgstr ""
|
5629 |
|
5638 |
msgid "All of the day"
|
5639 |
msgstr "Hele dag"
|
5640 |
|
5641 |
+
#: app/libraries/skins.php:902
|
5642 |
msgid "Ignore month and years"
|
5643 |
msgstr ""
|
5644 |
|
5680 |
msgstr ""
|
5681 |
|
5682 |
#: app/modules/booking/steps/form.php:162
|
5683 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5684 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5685 |
msgid "Next"
|
5686 |
msgstr "Volgende"
|
5687 |
|
5806 |
msgstr "Geen evenementen gevonden!"
|
5807 |
|
5808 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5809 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5810 |
msgid "Load More"
|
5811 |
msgstr "Meer laden"
|
5812 |
|
5813 |
+
#: app/skins/available_spot/tpl.php:138
|
5814 |
msgid "Available Spot(s):"
|
5815 |
msgstr ""
|
5816 |
|
5820 |
msgid "View All"
|
5821 |
msgstr "Bekijk label"
|
5822 |
|
5823 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5824 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5825 |
+
#: app/skins/list/render.php:119
|
5826 |
msgid "EVENT DETAIL"
|
5827 |
msgstr "Bekijk detail"
|
5828 |
|
5829 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5830 |
+
#: app/skins/countdown/tpl.php:206
|
5831 |
#, php-format
|
5832 |
msgid "%s Upcoming Event"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
+
#: app/skins/cover/tpl.php:81
|
5836 |
msgid "featured event"
|
5837 |
msgstr "Uitgelicht evenement"
|
5838 |
|
5839 |
+
#: app/skins/daily_view/render.php:78
|
5840 |
msgid "No event"
|
5841 |
msgstr "Geen evenement"
|
5842 |
|
5850 |
msgstr ""
|
5851 |
|
5852 |
#: app/skins/monthly_view/calendar.php:66
|
5853 |
+
#: app/skins/monthly_view/calendar.php:152
|
5854 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5855 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5856 |
#, php-format
|
5857 |
msgid "Events for %s"
|
5858 |
msgstr "Evenementen in %s"
|
5859 |
|
5860 |
+
#: app/skins/monthly_view/calendar.php:154
|
5861 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5862 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5863 |
msgid "No Events"
|
5864 |
msgstr "Geen evenementen"
|
5865 |
|
languages/modern-events-calendar-lite-pl_PL.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-pl_PL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pl_PL\n"
|
@@ -31,8 +31,8 @@ msgstr "Nowoczesny Kalendarz Wydarzeń"
|
|
31 |
msgid "Content"
|
32 |
msgstr "Treść"
|
33 |
|
34 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
35 |
-
#: app/features/mec.php:
|
36 |
msgid "Shortcode"
|
37 |
msgstr "Shortcode"
|
38 |
|
@@ -63,7 +63,7 @@ msgstr "Zaznacz wszystko"
|
|
63 |
msgid "Event Color"
|
64 |
msgstr "Kolor wydarzenia"
|
65 |
|
66 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
67 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
68 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
69 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -268,7 +268,7 @@ msgstr "Wydarzenia"
|
|
268 |
msgid "Event"
|
269 |
msgstr "Wydarzenie"
|
270 |
|
271 |
-
#: app/features/events.php:134 app/features/mec.php:
|
272 |
msgid "Add Event"
|
273 |
msgstr "Dodaj wydarzenie"
|
274 |
|
@@ -308,16 +308,16 @@ msgstr "Nie znaleziono wydarzeń w Koszu!"
|
|
308 |
#: app/features/mec/meta_boxes/search_form.php:362
|
309 |
#: app/features/mec/meta_boxes/search_form.php:416
|
310 |
#: app/features/mec/meta_boxes/search_form.php:477
|
311 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
312 |
-
#: app/libraries/skins.php:
|
313 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
314 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
315 |
msgid "Category"
|
316 |
msgstr "Kategoria"
|
317 |
|
318 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
319 |
-
#: app/features/mec.php:
|
320 |
-
#: app/libraries/main.php:
|
321 |
msgid "Categories"
|
322 |
msgstr "Kategorie"
|
323 |
|
@@ -392,13 +392,13 @@ msgstr "Szczegóły wydarzenia"
|
|
392 |
#: app/features/events.php:296 app/features/events.php:2053
|
393 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
394 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
395 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
396 |
#: app/widgets/single.php:103
|
397 |
msgid "Event Cost"
|
398 |
msgstr "Koszt wydarzenia"
|
399 |
|
400 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
401 |
-
#: app/libraries/main.php:
|
402 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
403 |
#: app/skins/single/modern.php:184
|
404 |
msgid "Cost"
|
@@ -415,7 +415,7 @@ msgstr "Dane gości"
|
|
415 |
#: app/features/events.php:380 app/features/events.php:1237
|
416 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
417 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
418 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
419 |
#: app/modules/booking/steps/form.php:35
|
420 |
msgid "Name"
|
421 |
msgstr "Imię"
|
@@ -427,7 +427,7 @@ msgstr "Imię"
|
|
427 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
428 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
429 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
430 |
-
#: app/libraries/notifications.php:
|
431 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
432 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
433 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -754,9 +754,9 @@ msgstr "Opis"
|
|
754 |
|
755 |
#: app/features/events.php:683 app/features/events.php:703
|
756 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
757 |
-
#: app/features/mec.php:
|
758 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
759 |
-
#: app/libraries/main.php:
|
760 |
msgid "Speakers"
|
761 |
msgstr ""
|
762 |
|
@@ -772,7 +772,7 @@ msgid "Event Links"
|
|
772 |
msgstr "Linki wydarzenia"
|
773 |
|
774 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
775 |
-
#: app/libraries/main.php:
|
776 |
msgid "Event Link"
|
777 |
msgstr "Link strony www wydarzenia"
|
778 |
|
@@ -790,7 +790,7 @@ msgstr ""
|
|
790 |
"wydarzenia. Podaj pełen link w tym http(s)://"
|
791 |
|
792 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
793 |
-
#: app/libraries/main.php:
|
794 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
795 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
796 |
#: app/widgets/single.php:107
|
@@ -824,7 +824,7 @@ msgstr "Limity rezerwacji"
|
|
824 |
#: app/features/events.php:818 app/features/events.php:910
|
825 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
826 |
#: app/modules/booking/steps/tickets.php:40
|
827 |
-
#: app/skins/available_spot/tpl.php:
|
828 |
msgid "Unlimited"
|
829 |
msgstr "Nieograniczony"
|
830 |
|
@@ -833,7 +833,7 @@ msgid "100"
|
|
833 |
msgstr "100"
|
834 |
|
835 |
#: app/features/events.php:838 app/libraries/book.php:60
|
836 |
-
#: app/libraries/main.php:
|
837 |
msgid "Tickets"
|
838 |
msgstr "Bilety"
|
839 |
|
@@ -901,7 +901,7 @@ msgstr "Tekst etykiety"
|
|
901 |
#: app/features/mec/meta_boxes/search_form.php:397
|
902 |
#: app/features/mec/meta_boxes/search_form.php:451
|
903 |
#: app/features/mec/meta_boxes/search_form.php:512
|
904 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
905 |
msgid "Label"
|
906 |
msgstr "Etykieta"
|
907 |
|
@@ -1129,7 +1129,7 @@ msgstr "organizatorzy"
|
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1131 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1132 |
-
#: app/libraries/main.php:
|
1133 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1134 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1135 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1150,7 +1150,7 @@ msgstr "Lokalizacja"
|
|
1150 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1151 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1152 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1153 |
-
#: app/libraries/main.php:
|
1154 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1155 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1156 |
#: app/skins/single/modern.php:21
|
@@ -1290,14 +1290,14 @@ msgid "Remove Image"
|
|
1290 |
msgstr "Usuń obraz"
|
1291 |
|
1292 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1293 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1294 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1295 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1296 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1297 |
msgid "Labels"
|
1298 |
msgstr "Etykiety"
|
1299 |
|
1300 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1301 |
#: app/features/mec/meta_boxes/filter.php:138
|
1302 |
msgid "Tags"
|
1303 |
msgstr "Tagi"
|
@@ -2004,31 +2004,31 @@ msgid "Normal"
|
|
2004 |
msgstr ""
|
2005 |
|
2006 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2007 |
-
#: app/skins/agenda/render.php:
|
2008 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2009 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
2010 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2011 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2012 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2013 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2014 |
-
#: app/skins/timetable/render.php:
|
2015 |
-
#: app/skins/weekly_view/render.php:
|
2016 |
#, fuzzy
|
2017 |
#| msgid "Featured Image"
|
2018 |
msgid "Featured"
|
2019 |
msgstr "Obraz wyróżniający"
|
2020 |
|
2021 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2022 |
-
#: app/libraries/main.php:
|
2023 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2024 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2025 |
-
#: app/skins/daily_view/render.php:
|
2026 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2027 |
#: app/skins/monthly_view/calendar.php:84
|
2028 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2029 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2030 |
-
#: app/skins/timetable/render.php:
|
2031 |
-
#: app/skins/weekly_view/render.php:
|
2032 |
msgid "Canceled"
|
2033 |
msgstr "Anulowane"
|
2034 |
|
@@ -2052,9 +2052,9 @@ msgstr "Upr. nazwa"
|
|
2052 |
msgid "Event %s"
|
2053 |
msgstr "Wydarzenie %s"
|
2054 |
|
2055 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2056 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2057 |
-
#: app/libraries/main.php:
|
2058 |
msgid "Locations"
|
2059 |
msgstr "Lokalizacje"
|
2060 |
|
@@ -2150,7 +2150,7 @@ msgstr "Wybierz obraz"
|
|
2150 |
msgid "Don't show map in single event page"
|
2151 |
msgstr "Nie pokazuj mapy na stronie wydarzenia"
|
2152 |
|
2153 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2154 |
#, fuzzy
|
2155 |
#| msgid "Search Locations"
|
2156 |
msgid "Other Locations"
|
@@ -2161,41 +2161,41 @@ msgid ""
|
|
2161 |
"You can select extra locations in addition to main location if you like."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: app/features/mec.php:
|
2165 |
msgid ""
|
2166 |
"Activation faild. Please check your purchase code or license type."
|
2167 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: app/features/mec.php:
|
2171 |
msgid "Troubleshooting"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: app/features/mec.php:
|
2175 |
msgid ""
|
2176 |
"Your options is not in JSON format. Please insert correct options in this "
|
2177 |
"field and try again."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: app/features/mec.php:
|
2181 |
#, fuzzy
|
2182 |
#| msgid "Your booking cannot verify!"
|
2183 |
msgid "Your options field can not be empty!"
|
2184 |
msgstr "Twoja rezerwacja nie może zostać zweryfikowana!"
|
2185 |
|
2186 |
-
#: app/features/mec.php:
|
2187 |
#, fuzzy
|
2188 |
#| msgid "Your booking successfully verified."
|
2189 |
msgid "Your options imported successfuly."
|
2190 |
msgstr "Twoja rezerwacja została pomyślnie zweryfikowana."
|
2191 |
|
2192 |
-
#: app/features/mec.php:
|
2193 |
#, fuzzy
|
2194 |
#| msgid "Support"
|
2195 |
msgid "MEC - Support"
|
2196 |
msgstr "Wsparcie"
|
2197 |
|
2198 |
-
#: app/features/mec.php:
|
2199 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2200 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2201 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2204,64 +2204,64 @@ msgstr "Wsparcie"
|
|
2204 |
msgid "Support"
|
2205 |
msgstr "Wsparcie"
|
2206 |
|
2207 |
-
#: app/features/mec.php:
|
2208 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2209 |
-
#: app/libraries/main.php:
|
2210 |
msgid "Organizers"
|
2211 |
msgstr "Organizatorzy"
|
2212 |
|
2213 |
-
#: app/features/mec.php:
|
2214 |
#: app/features/mec/dashboard.php:164
|
2215 |
msgid "Shortcodes"
|
2216 |
msgstr "Shortcodes"
|
2217 |
|
2218 |
-
#: app/features/mec.php:
|
2219 |
msgid "MEC - Settings"
|
2220 |
msgstr "MEC - Ustawienia"
|
2221 |
|
2222 |
-
#: app/features/mec.php:
|
2223 |
#, fuzzy
|
2224 |
#| msgid "MEC - Settings"
|
2225 |
msgid "MEC - Addons"
|
2226 |
msgstr "MEC - Ustawienia"
|
2227 |
|
2228 |
-
#: app/features/mec.php:
|
2229 |
msgid "Addons"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: app/features/mec.php:
|
2233 |
msgid "Add Shortcode"
|
2234 |
msgstr "Dodaj shortcode"
|
2235 |
|
2236 |
-
#: app/features/mec.php:
|
2237 |
msgid "Add New Shortcode"
|
2238 |
msgstr "Dodaj nowy shortcode"
|
2239 |
|
2240 |
-
#: app/features/mec.php:
|
2241 |
msgid "No shortcodes found!"
|
2242 |
msgstr "Nie znaleziono shortcodes!"
|
2243 |
|
2244 |
-
#: app/features/mec.php:
|
2245 |
msgid "All Shortcodes"
|
2246 |
msgstr "Wszystkie shortcodes"
|
2247 |
|
2248 |
-
#: app/features/mec.php:
|
2249 |
msgid "Edit shortcodes"
|
2250 |
msgstr "Edytuj shortcodes"
|
2251 |
|
2252 |
-
#: app/features/mec.php:
|
2253 |
msgid "No shortcodes found in Trash!"
|
2254 |
msgstr "Brak shortcodes w koszu!"
|
2255 |
|
2256 |
-
#: app/features/mec.php:
|
2257 |
msgid "Display Options"
|
2258 |
msgstr "Opcje wyświetlania"
|
2259 |
|
2260 |
-
#: app/features/mec.php:
|
2261 |
msgid "Filter Options"
|
2262 |
msgstr "Opcje filtrów"
|
2263 |
|
2264 |
-
#: app/features/mec.php:
|
2265 |
msgid "Search Form"
|
2266 |
msgstr "Formularz wyszukiwania"
|
2267 |
|
@@ -2269,15 +2269,15 @@ msgstr "Formularz wyszukiwania"
|
|
2269 |
msgid "Display content's images as Popup"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: app/features/mec.php:
|
2273 |
msgid "Single Event Display Method"
|
2274 |
msgstr "Sposób wyświetlania wydarzenia"
|
2275 |
|
2276 |
-
#: app/features/mec.php:
|
2277 |
msgid "Separate Window"
|
2278 |
msgstr "Osobna karta"
|
2279 |
|
2280 |
-
#: app/features/mec.php:
|
2281 |
msgid "Modal 1"
|
2282 |
msgstr "Okno modalne"
|
2283 |
|
@@ -3232,8 +3232,8 @@ msgstr "Wyłączone"
|
|
3232 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3233 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3234 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3235 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3236 |
-
#: app/libraries/skins.php:
|
3237 |
msgid "Speaker"
|
3238 |
msgstr ""
|
3239 |
|
@@ -3245,7 +3245,7 @@ msgstr ""
|
|
3245 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3246 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3247 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3248 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3249 |
#, fuzzy
|
3250 |
#| msgid "Tags"
|
3251 |
msgid "Tag"
|
@@ -3758,7 +3758,7 @@ msgstr "Wykluczenie sufiksu daty"
|
|
3758 |
msgid "Remove suffix from calendars"
|
3759 |
msgstr "Usuń przyrostek z kalendarzy"
|
3760 |
|
3761 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3762 |
msgid "Weekdays"
|
3763 |
msgstr "Dni powszednie"
|
3764 |
|
@@ -4451,7 +4451,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4451 |
msgstr ""
|
4452 |
|
4453 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4454 |
-
#: app/libraries/main.php:
|
4455 |
msgid "Verified"
|
4456 |
msgstr "Zweryfikowane"
|
4457 |
|
@@ -5013,7 +5013,7 @@ msgstr "np. email@domena.pl"
|
|
5013 |
msgid "eg. https://webnus.net"
|
5014 |
msgstr "http://webnus.biz"
|
5015 |
|
5016 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
5017 |
#: app/skins/single.php:194
|
5018 |
msgid "Other Organizers"
|
5019 |
msgstr ""
|
@@ -5051,7 +5051,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5051 |
msgstr ""
|
5052 |
|
5053 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5054 |
-
#: app/libraries/main.php:
|
5055 |
msgid "Ticket"
|
5056 |
msgstr "Zgłoszenie"
|
5057 |
|
@@ -5130,8 +5130,8 @@ msgstr ""
|
|
5130 |
msgid "Discount"
|
5131 |
msgstr "Zniżka"
|
5132 |
|
5133 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5134 |
-
#: app/modules/booking/default.php:
|
5135 |
msgid "Download Invoice"
|
5136 |
msgstr ""
|
5137 |
|
@@ -5159,8 +5159,8 @@ msgid "day"
|
|
5159 |
msgstr "dzień"
|
5160 |
|
5161 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5162 |
-
#: app/skins/available_spot/tpl.php:
|
5163 |
-
#: app/skins/countdown/tpl.php:
|
5164 |
msgid "days"
|
5165 |
msgstr "dni"
|
5166 |
|
@@ -5169,8 +5169,8 @@ msgid "hour"
|
|
5169 |
msgstr "godzina"
|
5170 |
|
5171 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5172 |
-
#: app/skins/available_spot/tpl.php:
|
5173 |
-
#: app/skins/countdown/tpl.php:
|
5174 |
msgid "hours"
|
5175 |
msgstr "godzin"
|
5176 |
|
@@ -5179,8 +5179,8 @@ msgid "minute"
|
|
5179 |
msgstr "minuta"
|
5180 |
|
5181 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5182 |
-
#: app/skins/available_spot/tpl.php:
|
5183 |
-
#: app/skins/countdown/tpl.php:
|
5184 |
msgid "minutes"
|
5185 |
msgstr "minut"
|
5186 |
|
@@ -5189,8 +5189,8 @@ msgid "second"
|
|
5189 |
msgstr "sekunda"
|
5190 |
|
5191 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5192 |
-
#: app/skins/available_spot/tpl.php:
|
5193 |
-
#: app/skins/countdown/tpl.php:
|
5194 |
msgid "seconds"
|
5195 |
msgstr "sekund"
|
5196 |
|
@@ -5203,7 +5203,7 @@ msgid "Custom sidebar for single and modal page of MEC."
|
|
5203 |
msgstr ""
|
5204 |
"Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
|
5205 |
|
5206 |
-
#: app/libraries/feed.php:
|
5207 |
msgid "There is no excerpt because this is a protected post."
|
5208 |
msgstr "Nie ma zajawki ponieważ ten wpis jest chroniony."
|
5209 |
|
@@ -5262,31 +5262,31 @@ msgstr "Widok karuzeli"
|
|
5262 |
msgid "Slider View"
|
5263 |
msgstr "Widok suwaka"
|
5264 |
|
5265 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5266 |
msgid "SU"
|
5267 |
msgstr "NIE"
|
5268 |
|
5269 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5270 |
msgid "MO"
|
5271 |
msgstr "PN"
|
5272 |
|
5273 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5274 |
msgid "TU"
|
5275 |
msgstr "WT"
|
5276 |
|
5277 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5278 |
msgid "WE"
|
5279 |
msgstr "ŚR"
|
5280 |
|
5281 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5282 |
msgid "TH"
|
5283 |
msgstr "CZW"
|
5284 |
|
5285 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5286 |
msgid "FR"
|
5287 |
msgstr "PT"
|
5288 |
|
5289 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5290 |
msgid "SA"
|
5291 |
msgstr "SOB"
|
5292 |
|
@@ -5471,95 +5471,95 @@ msgstr "Zarezerwowano wydarzenie."
|
|
5471 |
msgid "%s booked %s event."
|
5472 |
msgstr "%s zarezerwował %s wydarzenie."
|
5473 |
|
5474 |
-
#: app/libraries/main.php:
|
5475 |
msgid "Taxonomies"
|
5476 |
msgstr "Taksonomie"
|
5477 |
|
5478 |
-
#: app/libraries/main.php:
|
5479 |
msgid "Category Plural Label"
|
5480 |
msgstr "Etykieta dla kategorii - liczba mnoga"
|
5481 |
|
5482 |
-
#: app/libraries/main.php:
|
5483 |
msgid "Category Singular Label"
|
5484 |
msgstr "Etykieta dla kategorii - liczba pojedyncza"
|
5485 |
|
5486 |
-
#: app/libraries/main.php:
|
5487 |
msgid "Label Plural Label"
|
5488 |
msgstr "Etykieta - liczba mnoga"
|
5489 |
|
5490 |
-
#: app/libraries/main.php:
|
5491 |
msgid "Label Singular Label"
|
5492 |
msgstr "Etykieta - liczba pojedyncza"
|
5493 |
|
5494 |
-
#: app/libraries/main.php:
|
5495 |
msgid "label"
|
5496 |
msgstr "etykieta"
|
5497 |
|
5498 |
-
#: app/libraries/main.php:
|
5499 |
msgid "Location Plural Label"
|
5500 |
msgstr "Etykieta dla lokalizacji - wersja mnoga"
|
5501 |
|
5502 |
-
#: app/libraries/main.php:
|
5503 |
msgid "Location Singular Label"
|
5504 |
msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
|
5505 |
|
5506 |
-
#: app/libraries/main.php:
|
5507 |
msgid "Organizer Plural Label"
|
5508 |
msgstr "Etykieta dla organizatora - wersja mnoga"
|
5509 |
|
5510 |
-
#: app/libraries/main.php:
|
5511 |
msgid "Organizer Singular Label"
|
5512 |
msgstr "Etykieta dla organizatora - wersja pojedyncza"
|
5513 |
|
5514 |
-
#: app/libraries/main.php:
|
5515 |
#, fuzzy
|
5516 |
#| msgid "Label Plural Label"
|
5517 |
msgid "Speaker Plural Label"
|
5518 |
msgstr "Etykieta - liczba mnoga"
|
5519 |
|
5520 |
-
#: app/libraries/main.php:
|
5521 |
#, fuzzy
|
5522 |
#| msgid "Label Singular Label"
|
5523 |
msgid "Speaker Singular Label"
|
5524 |
msgstr "Etykieta - liczba pojedyncza"
|
5525 |
|
5526 |
-
#: app/libraries/main.php:
|
5527 |
msgid "Sunday abbreviation"
|
5528 |
msgstr "Niedziela"
|
5529 |
|
5530 |
-
#: app/libraries/main.php:
|
5531 |
msgid "Monday abbreviation"
|
5532 |
msgstr "Poniedziałek"
|
5533 |
|
5534 |
-
#: app/libraries/main.php:
|
5535 |
msgid "Tuesday abbreviation"
|
5536 |
msgstr "Wtorek"
|
5537 |
|
5538 |
-
#: app/libraries/main.php:
|
5539 |
msgid "Wednesday abbreviation"
|
5540 |
msgstr "Środa"
|
5541 |
|
5542 |
-
#: app/libraries/main.php:
|
5543 |
msgid "Thursday abbreviation"
|
5544 |
msgstr "Czwartek"
|
5545 |
|
5546 |
-
#: app/libraries/main.php:
|
5547 |
msgid "Friday abbreviation"
|
5548 |
msgstr "Piątek"
|
5549 |
|
5550 |
-
#: app/libraries/main.php:
|
5551 |
msgid "Saturday abbreviation"
|
5552 |
msgstr "Sobota"
|
5553 |
|
5554 |
-
#: app/libraries/main.php:
|
5555 |
msgid "Others"
|
5556 |
msgstr "Inne"
|
5557 |
|
5558 |
-
#: app/libraries/main.php:
|
5559 |
msgid "Booking Success Message"
|
5560 |
msgstr "Wiadomość zakończenia rezerwacji"
|
5561 |
|
5562 |
-
#: app/libraries/main.php:
|
5563 |
msgid ""
|
5564 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5565 |
"needed, please check your email."
|
@@ -5567,90 +5567,90 @@ msgstr ""
|
|
5567 |
"Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
|
5568 |
"rezerwacji może być konieczna, sprawdź swoją pocztę email."
|
5569 |
|
5570 |
-
#: app/libraries/main.php:
|
5571 |
msgid "Register Button"
|
5572 |
msgstr "Przycisk rejestracji"
|
5573 |
|
5574 |
-
#: app/libraries/main.php:
|
5575 |
-
#: app/skins/carousel/render.php:
|
5576 |
-
#: app/skins/grid/render.php:
|
5577 |
-
#: app/skins/grid/render.php:
|
5578 |
-
#: app/skins/list/render.php:
|
5579 |
-
#: app/skins/masonry/render.php:
|
5580 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5581 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5582 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5583 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5584 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5585 |
-
#: app/skins/slider/render.php:
|
5586 |
-
#: app/skins/slider/render.php:
|
5587 |
msgid "REGISTER"
|
5588 |
msgstr "REJESTRACJA"
|
5589 |
|
5590 |
-
#: app/libraries/main.php:
|
5591 |
msgid "View Detail Button"
|
5592 |
msgstr "Pokaż szczegóły"
|
5593 |
|
5594 |
-
#: app/libraries/main.php:
|
5595 |
-
#: app/skins/carousel/render.php:
|
5596 |
-
#: app/skins/grid/render.php:
|
5597 |
-
#: app/skins/grid/render.php:
|
5598 |
-
#: app/skins/list/render.php:
|
5599 |
-
#: app/skins/slider/render.php:
|
5600 |
-
#: app/skins/slider/render.php:
|
5601 |
-
#: app/skins/slider/render.php:
|
5602 |
msgid "View Detail"
|
5603 |
msgstr "Pokaż szczegóły"
|
5604 |
|
5605 |
-
#: app/libraries/main.php:
|
5606 |
msgid "Event Detail Button"
|
5607 |
msgstr "Szczegóły wydarzenia"
|
5608 |
|
5609 |
-
#: app/libraries/main.php:
|
5610 |
msgid "Event Detail"
|
5611 |
msgstr "Szczegóły wydarzenia"
|
5612 |
|
5613 |
-
#: app/libraries/main.php:
|
5614 |
msgid "More Info Link"
|
5615 |
msgstr "Więcej informacji"
|
5616 |
|
5617 |
-
#: app/libraries/main.php:
|
5618 |
msgid "Ticket (Singular)"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: app/libraries/main.php:
|
5622 |
msgid "Tickets (Plural)"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: app/libraries/main.php:
|
5626 |
msgid "EventON"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: app/libraries/main.php:
|
5630 |
msgid "The Events Calendar"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: app/libraries/main.php:
|
5634 |
msgid "Events Schedule WP Plugin"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
-
#: app/libraries/main.php:
|
5638 |
msgid "Calendarize It"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
-
#: app/libraries/main.php:
|
5642 |
msgid "Confirmed"
|
5643 |
msgstr "Potwierdzone"
|
5644 |
|
5645 |
-
#: app/libraries/main.php:
|
5646 |
msgid "Rejected"
|
5647 |
msgstr "Odrzucone"
|
5648 |
|
5649 |
-
#: app/libraries/main.php:
|
5650 |
msgid "Pending"
|
5651 |
msgstr "Oczekuje"
|
5652 |
|
5653 |
-
#: app/libraries/main.php:
|
5654 |
msgid "Waiting"
|
5655 |
msgstr "Oczekuje"
|
5656 |
|
@@ -5670,27 +5670,27 @@ msgstr "Twoja rezerwacja jest potwierdzona."
|
|
5670 |
msgid "A new booking is received."
|
5671 |
msgstr "Otrzymałeś nową rezerwację."
|
5672 |
|
5673 |
-
#: app/libraries/notifications.php:
|
5674 |
msgid "A new event is added."
|
5675 |
msgstr "Nowe wydarzenie zostało dodane."
|
5676 |
|
5677 |
-
#: app/libraries/notifications.php:
|
5678 |
msgid "to"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: app/libraries/notifications.php:
|
5682 |
msgid "+ Add to Google Calendar"
|
5683 |
msgstr "+ Dodaj do Google Calendar"
|
5684 |
|
5685 |
-
#: app/libraries/notifications.php:
|
5686 |
msgid "+ iCal export"
|
5687 |
msgstr "+ eksport iCal"
|
5688 |
|
5689 |
-
#: app/libraries/notifications.php:
|
5690 |
msgid "Yes"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#: app/libraries/notifications.php:
|
5694 |
msgid "No"
|
5695 |
msgstr ""
|
5696 |
|
@@ -5705,7 +5705,7 @@ msgstr "Kontroler skórki nie iestnieje."
|
|
5705 |
msgid "All of the day"
|
5706 |
msgstr "Cały dzień"
|
5707 |
|
5708 |
-
#: app/libraries/skins.php:
|
5709 |
msgid "Ignore month and years"
|
5710 |
msgstr "Ignoruj miesiąc i lata"
|
5711 |
|
@@ -5747,8 +5747,8 @@ msgid "Fill other attendees information like the first form."
|
|
5747 |
msgstr ""
|
5748 |
|
5749 |
#: app/modules/booking/steps/form.php:162
|
5750 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5751 |
-
#: app/skins/countdown/tpl.php:
|
5752 |
msgid "Next"
|
5753 |
msgstr "Następny"
|
5754 |
|
@@ -5872,11 +5872,11 @@ msgid "No event found!"
|
|
5872 |
msgstr "Nie odnaleziono wydarzeń!"
|
5873 |
|
5874 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5875 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5876 |
msgid "Load More"
|
5877 |
msgstr "Więcej"
|
5878 |
|
5879 |
-
#: app/skins/available_spot/tpl.php:
|
5880 |
msgid "Available Spot(s):"
|
5881 |
msgstr ""
|
5882 |
|
@@ -5886,23 +5886,23 @@ msgstr ""
|
|
5886 |
msgid "View All"
|
5887 |
msgstr "Wyświetl %s"
|
5888 |
|
5889 |
-
#: app/skins/carousel/render.php:
|
5890 |
-
#: app/skins/countdown/tpl.php:
|
5891 |
-
#: app/skins/list/render.php:
|
5892 |
msgid "EVENT DETAIL"
|
5893 |
msgstr "SZCZEGÓŁY WYDARZENIA"
|
5894 |
|
5895 |
-
#: app/skins/countdown/tpl.php:
|
5896 |
-
#: app/skins/countdown/tpl.php:
|
5897 |
#, php-format
|
5898 |
msgid "%s Upcoming Event"
|
5899 |
msgstr "%s nadchodzące wydarzenie"
|
5900 |
|
5901 |
-
#: app/skins/cover/tpl.php:
|
5902 |
msgid "featured event"
|
5903 |
msgstr "wyróżnione wydarzenie"
|
5904 |
|
5905 |
-
#: app/skins/daily_view/render.php:
|
5906 |
msgid "No event"
|
5907 |
msgstr "Brak wydarzenia"
|
5908 |
|
@@ -5915,16 +5915,16 @@ msgid "All"
|
|
5915 |
msgstr ""
|
5916 |
|
5917 |
#: app/skins/monthly_view/calendar.php:66
|
5918 |
-
#: app/skins/monthly_view/calendar.php:
|
5919 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5920 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5921 |
#, php-format
|
5922 |
msgid "Events for %s"
|
5923 |
msgstr "Wydarzenia dla %s"
|
5924 |
|
5925 |
-
#: app/skins/monthly_view/calendar.php:
|
5926 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5927 |
-
#: app/skins/timetable/render.php:
|
5928 |
msgid "No Events"
|
5929 |
msgstr "Brak wydarzeń"
|
5930 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:42+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:42+0430\n"
|
6 |
"Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pl_PL\n"
|
31 |
msgid "Content"
|
32 |
msgstr "Treść"
|
33 |
|
34 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
35 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
36 |
msgid "Shortcode"
|
37 |
msgstr "Shortcode"
|
38 |
|
63 |
msgid "Event Color"
|
64 |
msgstr "Kolor wydarzenia"
|
65 |
|
66 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
67 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
68 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
69 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
268 |
msgid "Event"
|
269 |
msgstr "Wydarzenie"
|
270 |
|
271 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
272 |
msgid "Add Event"
|
273 |
msgstr "Dodaj wydarzenie"
|
274 |
|
308 |
#: app/features/mec/meta_boxes/search_form.php:362
|
309 |
#: app/features/mec/meta_boxes/search_form.php:416
|
310 |
#: app/features/mec/meta_boxes/search_form.php:477
|
311 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
312 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
313 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
314 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
315 |
msgid "Category"
|
316 |
msgstr "Kategoria"
|
317 |
|
318 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
319 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
320 |
+
#: app/libraries/main.php:4363
|
321 |
msgid "Categories"
|
322 |
msgstr "Kategorie"
|
323 |
|
392 |
#: app/features/events.php:296 app/features/events.php:2053
|
393 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
394 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
395 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
396 |
#: app/widgets/single.php:103
|
397 |
msgid "Event Cost"
|
398 |
msgstr "Koszt wydarzenia"
|
399 |
|
400 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
401 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
402 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
403 |
#: app/skins/single/modern.php:184
|
404 |
msgid "Cost"
|
415 |
#: app/features/events.php:380 app/features/events.php:1237
|
416 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
417 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
418 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
419 |
#: app/modules/booking/steps/form.php:35
|
420 |
msgid "Name"
|
421 |
msgstr "Imię"
|
427 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
428 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
429 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
430 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
431 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
432 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
433 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
754 |
|
755 |
#: app/features/events.php:683 app/features/events.php:703
|
756 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
757 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
758 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
759 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
760 |
msgid "Speakers"
|
761 |
msgstr ""
|
762 |
|
772 |
msgstr "Linki wydarzenia"
|
773 |
|
774 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
775 |
+
#: app/libraries/main.php:4394
|
776 |
msgid "Event Link"
|
777 |
msgstr "Link strony www wydarzenia"
|
778 |
|
790 |
"wydarzenia. Podaj pełen link w tym http(s)://"
|
791 |
|
792 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
793 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
794 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
795 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
796 |
#: app/widgets/single.php:107
|
824 |
#: app/features/events.php:818 app/features/events.php:910
|
825 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
826 |
#: app/modules/booking/steps/tickets.php:40
|
827 |
+
#: app/skins/available_spot/tpl.php:138
|
828 |
msgid "Unlimited"
|
829 |
msgstr "Nieograniczony"
|
830 |
|
833 |
msgstr "100"
|
834 |
|
835 |
#: app/features/events.php:838 app/libraries/book.php:60
|
836 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
837 |
msgid "Tickets"
|
838 |
msgstr "Bilety"
|
839 |
|
901 |
#: app/features/mec/meta_boxes/search_form.php:397
|
902 |
#: app/features/mec/meta_boxes/search_form.php:451
|
903 |
#: app/features/mec/meta_boxes/search_form.php:512
|
904 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
905 |
msgid "Label"
|
906 |
msgstr "Etykieta"
|
907 |
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1131 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1132 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1133 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1134 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1135 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1150 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1151 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1152 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1153 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1154 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1155 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1156 |
#: app/skins/single/modern.php:21
|
1290 |
msgstr "Usuń obraz"
|
1291 |
|
1292 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1293 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1294 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1295 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1296 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1297 |
msgid "Labels"
|
1298 |
msgstr "Etykiety"
|
1299 |
|
1300 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1301 |
#: app/features/mec/meta_boxes/filter.php:138
|
1302 |
msgid "Tags"
|
1303 |
msgstr "Tagi"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2007 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
2008 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2009 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
2010 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2011 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2012 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2013 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
2014 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2015 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
2016 |
#, fuzzy
|
2017 |
#| msgid "Featured Image"
|
2018 |
msgid "Featured"
|
2019 |
msgstr "Obraz wyróżniający"
|
2020 |
|
2021 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2022 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
2023 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2024 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2025 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2026 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2027 |
#: app/skins/monthly_view/calendar.php:84
|
2028 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2029 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
2030 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2031 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
2032 |
msgid "Canceled"
|
2033 |
msgstr "Anulowane"
|
2034 |
|
2052 |
msgid "Event %s"
|
2053 |
msgstr "Wydarzenie %s"
|
2054 |
|
2055 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2056 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2057 |
+
#: app/libraries/main.php:4367
|
2058 |
msgid "Locations"
|
2059 |
msgstr "Lokalizacje"
|
2060 |
|
2150 |
msgid "Don't show map in single event page"
|
2151 |
msgstr "Nie pokazuj mapy na stronie wydarzenia"
|
2152 |
|
2153 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2154 |
#, fuzzy
|
2155 |
#| msgid "Search Locations"
|
2156 |
msgid "Other Locations"
|
2161 |
"You can select extra locations in addition to main location if you like."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: app/features/mec.php:144
|
2165 |
msgid ""
|
2166 |
"Activation faild. Please check your purchase code or license type."
|
2167 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: app/features/mec.php:144
|
2171 |
msgid "Troubleshooting"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: app/features/mec.php:179
|
2175 |
msgid ""
|
2176 |
"Your options is not in JSON format. Please insert correct options in this "
|
2177 |
"field and try again."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: app/features/mec.php:183
|
2181 |
#, fuzzy
|
2182 |
#| msgid "Your booking cannot verify!"
|
2183 |
msgid "Your options field can not be empty!"
|
2184 |
msgstr "Twoja rezerwacja nie może zostać zweryfikowana!"
|
2185 |
|
2186 |
+
#: app/features/mec.php:187
|
2187 |
#, fuzzy
|
2188 |
#| msgid "Your booking successfully verified."
|
2189 |
msgid "Your options imported successfuly."
|
2190 |
msgstr "Twoja rezerwacja została pomyślnie zweryfikowana."
|
2191 |
|
2192 |
+
#: app/features/mec.php:274
|
2193 |
#, fuzzy
|
2194 |
#| msgid "Support"
|
2195 |
msgid "MEC - Support"
|
2196 |
msgstr "Wsparcie"
|
2197 |
|
2198 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2199 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2200 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2201 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2204 |
msgid "Support"
|
2205 |
msgstr "Wsparcie"
|
2206 |
|
2207 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2208 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2209 |
+
#: app/libraries/main.php:4369
|
2210 |
msgid "Organizers"
|
2211 |
msgstr "Organizatorzy"
|
2212 |
|
2213 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2214 |
#: app/features/mec/dashboard.php:164
|
2215 |
msgid "Shortcodes"
|
2216 |
msgstr "Shortcodes"
|
2217 |
|
2218 |
+
#: app/features/mec.php:303
|
2219 |
msgid "MEC - Settings"
|
2220 |
msgstr "MEC - Ustawienia"
|
2221 |
|
2222 |
+
#: app/features/mec.php:304
|
2223 |
#, fuzzy
|
2224 |
#| msgid "MEC - Settings"
|
2225 |
msgid "MEC - Addons"
|
2226 |
msgstr "MEC - Ustawienia"
|
2227 |
|
2228 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2229 |
msgid "Addons"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: app/features/mec.php:321
|
2233 |
msgid "Add Shortcode"
|
2234 |
msgstr "Dodaj shortcode"
|
2235 |
|
2236 |
+
#: app/features/mec.php:322
|
2237 |
msgid "Add New Shortcode"
|
2238 |
msgstr "Dodaj nowy shortcode"
|
2239 |
|
2240 |
+
#: app/features/mec.php:323
|
2241 |
msgid "No shortcodes found!"
|
2242 |
msgstr "Nie znaleziono shortcodes!"
|
2243 |
|
2244 |
+
#: app/features/mec.php:324
|
2245 |
msgid "All Shortcodes"
|
2246 |
msgstr "Wszystkie shortcodes"
|
2247 |
|
2248 |
+
#: app/features/mec.php:325
|
2249 |
msgid "Edit shortcodes"
|
2250 |
msgstr "Edytuj shortcodes"
|
2251 |
|
2252 |
+
#: app/features/mec.php:326
|
2253 |
msgid "No shortcodes found in Trash!"
|
2254 |
msgstr "Brak shortcodes w koszu!"
|
2255 |
|
2256 |
+
#: app/features/mec.php:373
|
2257 |
msgid "Display Options"
|
2258 |
msgstr "Opcje wyświetlania"
|
2259 |
|
2260 |
+
#: app/features/mec.php:374
|
2261 |
msgid "Filter Options"
|
2262 |
msgstr "Opcje filtrów"
|
2263 |
|
2264 |
+
#: app/features/mec.php:376
|
2265 |
msgid "Search Form"
|
2266 |
msgstr "Formularz wyszukiwania"
|
2267 |
|
2269 |
msgid "Display content's images as Popup"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: app/features/mec.php:764
|
2273 |
msgid "Single Event Display Method"
|
2274 |
msgstr "Sposób wyświetlania wydarzenia"
|
2275 |
|
2276 |
+
#: app/features/mec.php:769
|
2277 |
msgid "Separate Window"
|
2278 |
msgstr "Osobna karta"
|
2279 |
|
2280 |
+
#: app/features/mec.php:770
|
2281 |
msgid "Modal 1"
|
2282 |
msgstr "Okno modalne"
|
2283 |
|
3232 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3233 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3234 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3235 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3236 |
+
#: app/libraries/skins.php:829
|
3237 |
msgid "Speaker"
|
3238 |
msgstr ""
|
3239 |
|
3245 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3246 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3247 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3248 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3249 |
#, fuzzy
|
3250 |
#| msgid "Tags"
|
3251 |
msgid "Tag"
|
3758 |
msgid "Remove suffix from calendars"
|
3759 |
msgstr "Usuń przyrostek z kalendarzy"
|
3760 |
|
3761 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3762 |
msgid "Weekdays"
|
3763 |
msgstr "Dni powszednie"
|
3764 |
|
4451 |
msgstr ""
|
4452 |
|
4453 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4454 |
+
#: app/libraries/main.php:4558
|
4455 |
msgid "Verified"
|
4456 |
msgstr "Zweryfikowane"
|
4457 |
|
5013 |
msgid "eg. https://webnus.net"
|
5014 |
msgstr "http://webnus.biz"
|
5015 |
|
5016 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
5017 |
#: app/skins/single.php:194
|
5018 |
msgid "Other Organizers"
|
5019 |
msgstr ""
|
5051 |
msgstr ""
|
5052 |
|
5053 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5054 |
+
#: app/libraries/main.php:4398
|
5055 |
msgid "Ticket"
|
5056 |
msgstr "Zgłoszenie"
|
5057 |
|
5130 |
msgid "Discount"
|
5131 |
msgstr "Zniżka"
|
5132 |
|
5133 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5134 |
+
#: app/modules/booking/default.php:381
|
5135 |
msgid "Download Invoice"
|
5136 |
msgstr ""
|
5137 |
|
5159 |
msgstr "dzień"
|
5160 |
|
5161 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5162 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5163 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5164 |
msgid "days"
|
5165 |
msgstr "dni"
|
5166 |
|
5169 |
msgstr "godzina"
|
5170 |
|
5171 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5172 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5173 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5174 |
msgid "hours"
|
5175 |
msgstr "godzin"
|
5176 |
|
5179 |
msgstr "minuta"
|
5180 |
|
5181 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5182 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5183 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5184 |
msgid "minutes"
|
5185 |
msgstr "minut"
|
5186 |
|
5189 |
msgstr "sekunda"
|
5190 |
|
5191 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5192 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5193 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5194 |
msgid "seconds"
|
5195 |
msgstr "sekund"
|
5196 |
|
5203 |
msgstr ""
|
5204 |
"Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
|
5205 |
|
5206 |
+
#: app/libraries/feed.php:83
|
5207 |
msgid "There is no excerpt because this is a protected post."
|
5208 |
msgstr "Nie ma zajawki ponieważ ten wpis jest chroniony."
|
5209 |
|
5262 |
msgid "Slider View"
|
5263 |
msgstr "Widok suwaka"
|
5264 |
|
5265 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5266 |
msgid "SU"
|
5267 |
msgstr "NIE"
|
5268 |
|
5269 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5270 |
msgid "MO"
|
5271 |
msgstr "PN"
|
5272 |
|
5273 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5274 |
msgid "TU"
|
5275 |
msgstr "WT"
|
5276 |
|
5277 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5278 |
msgid "WE"
|
5279 |
msgstr "ŚR"
|
5280 |
|
5281 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5282 |
msgid "TH"
|
5283 |
msgstr "CZW"
|
5284 |
|
5285 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5286 |
msgid "FR"
|
5287 |
msgstr "PT"
|
5288 |
|
5289 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5290 |
msgid "SA"
|
5291 |
msgstr "SOB"
|
5292 |
|
5471 |
msgid "%s booked %s event."
|
5472 |
msgstr "%s zarezerwował %s wydarzenie."
|
5473 |
|
5474 |
+
#: app/libraries/main.php:4361
|
5475 |
msgid "Taxonomies"
|
5476 |
msgstr "Taksonomie"
|
5477 |
|
5478 |
+
#: app/libraries/main.php:4363
|
5479 |
msgid "Category Plural Label"
|
5480 |
msgstr "Etykieta dla kategorii - liczba mnoga"
|
5481 |
|
5482 |
+
#: app/libraries/main.php:4364
|
5483 |
msgid "Category Singular Label"
|
5484 |
msgstr "Etykieta dla kategorii - liczba pojedyncza"
|
5485 |
|
5486 |
+
#: app/libraries/main.php:4365
|
5487 |
msgid "Label Plural Label"
|
5488 |
msgstr "Etykieta - liczba mnoga"
|
5489 |
|
5490 |
+
#: app/libraries/main.php:4366
|
5491 |
msgid "Label Singular Label"
|
5492 |
msgstr "Etykieta - liczba pojedyncza"
|
5493 |
|
5494 |
+
#: app/libraries/main.php:4366
|
5495 |
msgid "label"
|
5496 |
msgstr "etykieta"
|
5497 |
|
5498 |
+
#: app/libraries/main.php:4367
|
5499 |
msgid "Location Plural Label"
|
5500 |
msgstr "Etykieta dla lokalizacji - wersja mnoga"
|
5501 |
|
5502 |
+
#: app/libraries/main.php:4368
|
5503 |
msgid "Location Singular Label"
|
5504 |
msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
|
5505 |
|
5506 |
+
#: app/libraries/main.php:4369
|
5507 |
msgid "Organizer Plural Label"
|
5508 |
msgstr "Etykieta dla organizatora - wersja mnoga"
|
5509 |
|
5510 |
+
#: app/libraries/main.php:4370
|
5511 |
msgid "Organizer Singular Label"
|
5512 |
msgstr "Etykieta dla organizatora - wersja pojedyncza"
|
5513 |
|
5514 |
+
#: app/libraries/main.php:4371
|
5515 |
#, fuzzy
|
5516 |
#| msgid "Label Plural Label"
|
5517 |
msgid "Speaker Plural Label"
|
5518 |
msgstr "Etykieta - liczba mnoga"
|
5519 |
|
5520 |
+
#: app/libraries/main.php:4372
|
5521 |
#, fuzzy
|
5522 |
#| msgid "Label Singular Label"
|
5523 |
msgid "Speaker Singular Label"
|
5524 |
msgstr "Etykieta - liczba pojedyncza"
|
5525 |
|
5526 |
+
#: app/libraries/main.php:4378
|
5527 |
msgid "Sunday abbreviation"
|
5528 |
msgstr "Niedziela"
|
5529 |
|
5530 |
+
#: app/libraries/main.php:4379
|
5531 |
msgid "Monday abbreviation"
|
5532 |
msgstr "Poniedziałek"
|
5533 |
|
5534 |
+
#: app/libraries/main.php:4380
|
5535 |
msgid "Tuesday abbreviation"
|
5536 |
msgstr "Wtorek"
|
5537 |
|
5538 |
+
#: app/libraries/main.php:4381
|
5539 |
msgid "Wednesday abbreviation"
|
5540 |
msgstr "Środa"
|
5541 |
|
5542 |
+
#: app/libraries/main.php:4382
|
5543 |
msgid "Thursday abbreviation"
|
5544 |
msgstr "Czwartek"
|
5545 |
|
5546 |
+
#: app/libraries/main.php:4383
|
5547 |
msgid "Friday abbreviation"
|
5548 |
msgstr "Piątek"
|
5549 |
|
5550 |
+
#: app/libraries/main.php:4384
|
5551 |
msgid "Saturday abbreviation"
|
5552 |
msgstr "Sobota"
|
5553 |
|
5554 |
+
#: app/libraries/main.php:4388
|
5555 |
msgid "Others"
|
5556 |
msgstr "Inne"
|
5557 |
|
5558 |
+
#: app/libraries/main.php:4390
|
5559 |
msgid "Booking Success Message"
|
5560 |
msgstr "Wiadomość zakończenia rezerwacji"
|
5561 |
|
5562 |
+
#: app/libraries/main.php:4390
|
5563 |
msgid ""
|
5564 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5565 |
"needed, please check your email."
|
5567 |
"Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
|
5568 |
"rezerwacji może być konieczna, sprawdź swoją pocztę email."
|
5569 |
|
5570 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5571 |
msgid "Register Button"
|
5572 |
msgstr "Przycisk rejestracji"
|
5573 |
|
5574 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5575 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5576 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5577 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5578 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5579 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5580 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5581 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5582 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5583 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5584 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5585 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5586 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5587 |
msgid "REGISTER"
|
5588 |
msgstr "REJESTRACJA"
|
5589 |
|
5590 |
+
#: app/libraries/main.php:4392
|
5591 |
msgid "View Detail Button"
|
5592 |
msgstr "Pokaż szczegóły"
|
5593 |
|
5594 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5595 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5596 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5597 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5598 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5599 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5600 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5601 |
+
#: app/skins/slider/render.php:305
|
5602 |
msgid "View Detail"
|
5603 |
msgstr "Pokaż szczegóły"
|
5604 |
|
5605 |
+
#: app/libraries/main.php:4393
|
5606 |
msgid "Event Detail Button"
|
5607 |
msgstr "Szczegóły wydarzenia"
|
5608 |
|
5609 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5610 |
msgid "Event Detail"
|
5611 |
msgstr "Szczegóły wydarzenia"
|
5612 |
|
5613 |
+
#: app/libraries/main.php:4395
|
5614 |
msgid "More Info Link"
|
5615 |
msgstr "Więcej informacji"
|
5616 |
|
5617 |
+
#: app/libraries/main.php:4398
|
5618 |
msgid "Ticket (Singular)"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
+
#: app/libraries/main.php:4399
|
5622 |
msgid "Tickets (Plural)"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
+
#: app/libraries/main.php:4466
|
5626 |
msgid "EventON"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: app/libraries/main.php:4467
|
5630 |
msgid "The Events Calendar"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: app/libraries/main.php:4468
|
5634 |
msgid "Events Schedule WP Plugin"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: app/libraries/main.php:4469
|
5638 |
msgid "Calendarize It"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: app/libraries/main.php:4543
|
5642 |
msgid "Confirmed"
|
5643 |
msgstr "Potwierdzone"
|
5644 |
|
5645 |
+
#: app/libraries/main.php:4544
|
5646 |
msgid "Rejected"
|
5647 |
msgstr "Odrzucone"
|
5648 |
|
5649 |
+
#: app/libraries/main.php:4545
|
5650 |
msgid "Pending"
|
5651 |
msgstr "Oczekuje"
|
5652 |
|
5653 |
+
#: app/libraries/main.php:4560
|
5654 |
msgid "Waiting"
|
5655 |
msgstr "Oczekuje"
|
5656 |
|
5670 |
msgid "A new booking is received."
|
5671 |
msgstr "Otrzymałeś nową rezerwację."
|
5672 |
|
5673 |
+
#: app/libraries/notifications.php:338
|
5674 |
msgid "A new event is added."
|
5675 |
msgstr "Nowe wydarzenie zostało dodane."
|
5676 |
|
5677 |
+
#: app/libraries/notifications.php:509
|
5678 |
msgid "to"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5682 |
msgid "+ Add to Google Calendar"
|
5683 |
msgstr "+ Dodaj do Google Calendar"
|
5684 |
|
5685 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5686 |
msgid "+ iCal export"
|
5687 |
msgstr "+ eksport iCal"
|
5688 |
|
5689 |
+
#: app/libraries/notifications.php:582
|
5690 |
msgid "Yes"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: app/libraries/notifications.php:582
|
5694 |
msgid "No"
|
5695 |
msgstr ""
|
5696 |
|
5705 |
msgid "All of the day"
|
5706 |
msgstr "Cały dzień"
|
5707 |
|
5708 |
+
#: app/libraries/skins.php:902
|
5709 |
msgid "Ignore month and years"
|
5710 |
msgstr "Ignoruj miesiąc i lata"
|
5711 |
|
5747 |
msgstr ""
|
5748 |
|
5749 |
#: app/modules/booking/steps/form.php:162
|
5750 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5751 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5752 |
msgid "Next"
|
5753 |
msgstr "Następny"
|
5754 |
|
5872 |
msgstr "Nie odnaleziono wydarzeń!"
|
5873 |
|
5874 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5875 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5876 |
msgid "Load More"
|
5877 |
msgstr "Więcej"
|
5878 |
|
5879 |
+
#: app/skins/available_spot/tpl.php:138
|
5880 |
msgid "Available Spot(s):"
|
5881 |
msgstr ""
|
5882 |
|
5886 |
msgid "View All"
|
5887 |
msgstr "Wyświetl %s"
|
5888 |
|
5889 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5890 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5891 |
+
#: app/skins/list/render.php:119
|
5892 |
msgid "EVENT DETAIL"
|
5893 |
msgstr "SZCZEGÓŁY WYDARZENIA"
|
5894 |
|
5895 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5896 |
+
#: app/skins/countdown/tpl.php:206
|
5897 |
#, php-format
|
5898 |
msgid "%s Upcoming Event"
|
5899 |
msgstr "%s nadchodzące wydarzenie"
|
5900 |
|
5901 |
+
#: app/skins/cover/tpl.php:81
|
5902 |
msgid "featured event"
|
5903 |
msgstr "wyróżnione wydarzenie"
|
5904 |
|
5905 |
+
#: app/skins/daily_view/render.php:78
|
5906 |
msgid "No event"
|
5907 |
msgstr "Brak wydarzenia"
|
5908 |
|
5915 |
msgstr ""
|
5916 |
|
5917 |
#: app/skins/monthly_view/calendar.php:66
|
5918 |
+
#: app/skins/monthly_view/calendar.php:152
|
5919 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5920 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5921 |
#, php-format
|
5922 |
msgid "Events for %s"
|
5923 |
msgstr "Wydarzenia dla %s"
|
5924 |
|
5925 |
+
#: app/skins/monthly_view/calendar.php:154
|
5926 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5927 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5928 |
msgid "No Events"
|
5929 |
msgstr "Brak wydarzeń"
|
5930 |
|
languages/modern-events-calendar-lite-pt_BR.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2019-
|
6 |
-
"PO-Revision-Date: 2019-
|
7 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
8 |
"Language-Team: Portuguese (Brazil)\n"
|
9 |
"Language: pt_BR\n"
|
@@ -31,8 +31,8 @@ msgstr "Calendário de Eventos Moderno"
|
|
31 |
msgid "Content"
|
32 |
msgstr "Conteúdo"
|
33 |
|
34 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
35 |
-
#: app/features/mec.php:
|
36 |
msgid "Shortcode"
|
37 |
msgstr "Código Curto"
|
38 |
|
@@ -63,7 +63,7 @@ msgstr "Selecionar Tudo"
|
|
63 |
msgid "Event Color"
|
64 |
msgstr "Cor do Evento"
|
65 |
|
66 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
67 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
68 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
69 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -268,7 +268,7 @@ msgstr "Eventos"
|
|
268 |
msgid "Event"
|
269 |
msgstr "Evento"
|
270 |
|
271 |
-
#: app/features/events.php:134 app/features/mec.php:
|
272 |
msgid "Add Event"
|
273 |
msgstr "Adicionar Evento"
|
274 |
|
@@ -308,16 +308,16 @@ msgstr "Nenhum evento encontrado na Lixeira!"
|
|
308 |
#: app/features/mec/meta_boxes/search_form.php:362
|
309 |
#: app/features/mec/meta_boxes/search_form.php:416
|
310 |
#: app/features/mec/meta_boxes/search_form.php:477
|
311 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
312 |
-
#: app/libraries/skins.php:
|
313 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
314 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
315 |
msgid "Category"
|
316 |
msgstr "Categoria"
|
317 |
|
318 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
319 |
-
#: app/features/mec.php:
|
320 |
-
#: app/libraries/main.php:
|
321 |
msgid "Categories"
|
322 |
msgstr "Categorias"
|
323 |
|
@@ -392,13 +392,13 @@ msgstr "Detalhes do Evento"
|
|
392 |
#: app/features/events.php:296 app/features/events.php:2053
|
393 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
394 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
395 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
396 |
#: app/widgets/single.php:103
|
397 |
msgid "Event Cost"
|
398 |
msgstr "Custo do Evento"
|
399 |
|
400 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
401 |
-
#: app/libraries/main.php:
|
402 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
403 |
#: app/skins/single/modern.php:184
|
404 |
msgid "Cost"
|
@@ -415,7 +415,7 @@ msgstr ""
|
|
415 |
#: app/features/events.php:380 app/features/events.php:1237
|
416 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
417 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
418 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
419 |
#: app/modules/booking/steps/form.php:35
|
420 |
msgid "Name"
|
421 |
msgstr "Nome"
|
@@ -427,7 +427,7 @@ msgstr "Nome"
|
|
427 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
428 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
429 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
430 |
-
#: app/libraries/notifications.php:
|
431 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
432 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
433 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -754,9 +754,9 @@ msgstr "Descrição"
|
|
754 |
|
755 |
#: app/features/events.php:683 app/features/events.php:703
|
756 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
757 |
-
#: app/features/mec.php:
|
758 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
759 |
-
#: app/libraries/main.php:
|
760 |
msgid "Speakers"
|
761 |
msgstr ""
|
762 |
|
@@ -772,7 +772,7 @@ msgid "Event Links"
|
|
772 |
msgstr "Links do Evento"
|
773 |
|
774 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
775 |
-
#: app/libraries/main.php:
|
776 |
msgid "Event Link"
|
777 |
msgstr "Link do Evento"
|
778 |
|
@@ -790,7 +790,7 @@ msgstr ""
|
|
790 |
"padrão. Inserir link completo, incluindo http(s)://"
|
791 |
|
792 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
793 |
-
#: app/libraries/main.php:
|
794 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
795 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
796 |
#: app/widgets/single.php:107
|
@@ -824,7 +824,7 @@ msgstr "Total de limites de reserva"
|
|
824 |
#: app/features/events.php:818 app/features/events.php:910
|
825 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
826 |
#: app/modules/booking/steps/tickets.php:40
|
827 |
-
#: app/skins/available_spot/tpl.php:
|
828 |
msgid "Unlimited"
|
829 |
msgstr "Ilimitado"
|
830 |
|
@@ -833,7 +833,7 @@ msgid "100"
|
|
833 |
msgstr "100"
|
834 |
|
835 |
#: app/features/events.php:838 app/libraries/book.php:60
|
836 |
-
#: app/libraries/main.php:
|
837 |
msgid "Tickets"
|
838 |
msgstr "Bilhetes"
|
839 |
|
@@ -901,7 +901,7 @@ msgstr "Preço da Etiqueta"
|
|
901 |
#: app/features/mec/meta_boxes/search_form.php:397
|
902 |
#: app/features/mec/meta_boxes/search_form.php:451
|
903 |
#: app/features/mec/meta_boxes/search_form.php:512
|
904 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
905 |
msgid "Label"
|
906 |
msgstr "Etiqueta"
|
907 |
|
@@ -1128,7 +1128,7 @@ msgstr ""
|
|
1128 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1131 |
-
#: app/libraries/main.php:
|
1132 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1133 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1134 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1149,7 +1149,7 @@ msgstr "Localização"
|
|
1149 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1150 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1151 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1152 |
-
#: app/libraries/main.php:
|
1153 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1154 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1155 |
#: app/skins/single/modern.php:21
|
@@ -1289,14 +1289,14 @@ msgid "Remove Image"
|
|
1289 |
msgstr "Remover Imagem"
|
1290 |
|
1291 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1292 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1293 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1294 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1295 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1296 |
msgid "Labels"
|
1297 |
msgstr "Etiquetas"
|
1298 |
|
1299 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1300 |
#: app/features/mec/meta_boxes/filter.php:138
|
1301 |
msgid "Tags"
|
1302 |
msgstr "Tags"
|
@@ -2006,31 +2006,31 @@ msgid "Normal"
|
|
2006 |
msgstr ""
|
2007 |
|
2008 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2009 |
-
#: app/skins/agenda/render.php:
|
2010 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2011 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
2012 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2013 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2014 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2015 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2016 |
-
#: app/skins/timetable/render.php:
|
2017 |
-
#: app/skins/weekly_view/render.php:
|
2018 |
#, fuzzy
|
2019 |
#| msgid "Featured Image"
|
2020 |
msgid "Featured"
|
2021 |
msgstr "Imagem Destacada"
|
2022 |
|
2023 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2024 |
-
#: app/libraries/main.php:
|
2025 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2026 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2027 |
-
#: app/skins/daily_view/render.php:
|
2028 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2029 |
#: app/skins/monthly_view/calendar.php:84
|
2030 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2031 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2032 |
-
#: app/skins/timetable/render.php:
|
2033 |
-
#: app/skins/weekly_view/render.php:
|
2034 |
msgid "Canceled"
|
2035 |
msgstr "Cancelado"
|
2036 |
|
@@ -2054,9 +2054,9 @@ msgstr "Slug"
|
|
2054 |
msgid "Event %s"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2058 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2059 |
-
#: app/libraries/main.php:
|
2060 |
msgid "Locations"
|
2061 |
msgstr "Localizações"
|
2062 |
|
@@ -2152,7 +2152,7 @@ msgstr "Escolha uma imagem"
|
|
2152 |
msgid "Don't show map in single event page"
|
2153 |
msgstr "Não mostrar mapa na página de evento individual"
|
2154 |
|
2155 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2156 |
#, fuzzy
|
2157 |
#| msgid "Search Locations"
|
2158 |
msgid "Other Locations"
|
@@ -2163,41 +2163,41 @@ msgid ""
|
|
2163 |
"You can select extra locations in addition to main location if you like."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: app/features/mec.php:
|
2167 |
msgid ""
|
2168 |
"Activation faild. Please check your purchase code or license type."
|
2169 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: app/features/mec.php:
|
2173 |
msgid "Troubleshooting"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: app/features/mec.php:
|
2177 |
msgid ""
|
2178 |
"Your options is not in JSON format. Please insert correct options in this "
|
2179 |
"field and try again."
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: app/features/mec.php:
|
2183 |
#, fuzzy
|
2184 |
#| msgid "Your booking cannot verify!"
|
2185 |
msgid "Your options field can not be empty!"
|
2186 |
msgstr "Sua reserva não pôde ser verificada!"
|
2187 |
|
2188 |
-
#: app/features/mec.php:
|
2189 |
#, fuzzy
|
2190 |
#| msgid "Your booking successfully verified."
|
2191 |
msgid "Your options imported successfuly."
|
2192 |
msgstr "Sua reserva foi verificada com sucesso."
|
2193 |
|
2194 |
-
#: app/features/mec.php:
|
2195 |
#, fuzzy
|
2196 |
#| msgid "Support"
|
2197 |
msgid "MEC - Support"
|
2198 |
msgstr "Suporte"
|
2199 |
|
2200 |
-
#: app/features/mec.php:
|
2201 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2202 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2203 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2206,64 +2206,64 @@ msgstr "Suporte"
|
|
2206 |
msgid "Support"
|
2207 |
msgstr "Suporte"
|
2208 |
|
2209 |
-
#: app/features/mec.php:
|
2210 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2211 |
-
#: app/libraries/main.php:
|
2212 |
msgid "Organizers"
|
2213 |
msgstr "Organizadores"
|
2214 |
|
2215 |
-
#: app/features/mec.php:
|
2216 |
#: app/features/mec/dashboard.php:164
|
2217 |
msgid "Shortcodes"
|
2218 |
msgstr "Códigos Curtos"
|
2219 |
|
2220 |
-
#: app/features/mec.php:
|
2221 |
msgid "MEC - Settings"
|
2222 |
msgstr "CEM - Configurações"
|
2223 |
|
2224 |
-
#: app/features/mec.php:
|
2225 |
#, fuzzy
|
2226 |
#| msgid "MEC - Settings"
|
2227 |
msgid "MEC - Addons"
|
2228 |
msgstr "CEM - Configurações"
|
2229 |
|
2230 |
-
#: app/features/mec.php:
|
2231 |
msgid "Addons"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: app/features/mec.php:
|
2235 |
msgid "Add Shortcode"
|
2236 |
msgstr "Adicionar Código Curto"
|
2237 |
|
2238 |
-
#: app/features/mec.php:
|
2239 |
msgid "Add New Shortcode"
|
2240 |
msgstr "Adicionar Novo Código Curto"
|
2241 |
|
2242 |
-
#: app/features/mec.php:
|
2243 |
msgid "No shortcodes found!"
|
2244 |
msgstr "Nenhum código curto encontrado!"
|
2245 |
|
2246 |
-
#: app/features/mec.php:
|
2247 |
msgid "All Shortcodes"
|
2248 |
msgstr "Todos os Códigos Curtos"
|
2249 |
|
2250 |
-
#: app/features/mec.php:
|
2251 |
msgid "Edit shortcodes"
|
2252 |
msgstr "Editar códigos curtos"
|
2253 |
|
2254 |
-
#: app/features/mec.php:
|
2255 |
msgid "No shortcodes found in Trash!"
|
2256 |
msgstr "Nenhum código curto encontrado na Lixeira!"
|
2257 |
|
2258 |
-
#: app/features/mec.php:
|
2259 |
msgid "Display Options"
|
2260 |
msgstr "Opções de Exibição"
|
2261 |
|
2262 |
-
#: app/features/mec.php:
|
2263 |
msgid "Filter Options"
|
2264 |
msgstr "Opções de Filtro"
|
2265 |
|
2266 |
-
#: app/features/mec.php:
|
2267 |
msgid "Search Form"
|
2268 |
msgstr "Formulário de Pesquisa"
|
2269 |
|
@@ -2271,15 +2271,15 @@ msgstr "Formulário de Pesquisa"
|
|
2271 |
msgid "Display content's images as Popup"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: app/features/mec.php:
|
2275 |
msgid "Single Event Display Method"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: app/features/mec.php:
|
2279 |
msgid "Separate Window"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: app/features/mec.php:
|
2283 |
msgid "Modal 1"
|
2284 |
msgstr ""
|
2285 |
|
@@ -3228,8 +3228,8 @@ msgstr "Desativado"
|
|
3228 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3229 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3230 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3231 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3232 |
-
#: app/libraries/skins.php:
|
3233 |
msgid "Speaker"
|
3234 |
msgstr ""
|
3235 |
|
@@ -3241,7 +3241,7 @@ msgstr ""
|
|
3241 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3242 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3243 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3244 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3245 |
#, fuzzy
|
3246 |
#| msgid "Tags"
|
3247 |
msgid "Tag"
|
@@ -3756,7 +3756,7 @@ msgstr ""
|
|
3756 |
msgid "Remove suffix from calendars"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3760 |
msgid "Weekdays"
|
3761 |
msgstr "Dias da semana"
|
3762 |
|
@@ -4447,7 +4447,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4447 |
msgstr ""
|
4448 |
|
4449 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4450 |
-
#: app/libraries/main.php:
|
4451 |
msgid "Verified"
|
4452 |
msgstr "Verificado"
|
4453 |
|
@@ -5008,7 +5008,7 @@ msgstr "ex. john@smith.com"
|
|
5008 |
msgid "eg. https://webnus.net"
|
5009 |
msgstr "http://webnus.biz"
|
5010 |
|
5011 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
5012 |
#: app/skins/single.php:194
|
5013 |
msgid "Other Organizers"
|
5014 |
msgstr ""
|
@@ -5046,7 +5046,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5046 |
msgstr ""
|
5047 |
|
5048 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5049 |
-
#: app/libraries/main.php:
|
5050 |
msgid "Ticket"
|
5051 |
msgstr "Bilhete"
|
5052 |
|
@@ -5125,8 +5125,8 @@ msgstr ""
|
|
5125 |
msgid "Discount"
|
5126 |
msgstr "Desconto"
|
5127 |
|
5128 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5129 |
-
#: app/modules/booking/default.php:
|
5130 |
msgid "Download Invoice"
|
5131 |
msgstr ""
|
5132 |
|
@@ -5154,8 +5154,8 @@ msgid "day"
|
|
5154 |
msgstr "dia"
|
5155 |
|
5156 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5157 |
-
#: app/skins/available_spot/tpl.php:
|
5158 |
-
#: app/skins/countdown/tpl.php:
|
5159 |
msgid "days"
|
5160 |
msgstr "dias"
|
5161 |
|
@@ -5164,8 +5164,8 @@ msgid "hour"
|
|
5164 |
msgstr "hora"
|
5165 |
|
5166 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5167 |
-
#: app/skins/available_spot/tpl.php:
|
5168 |
-
#: app/skins/countdown/tpl.php:
|
5169 |
msgid "hours"
|
5170 |
msgstr "horas"
|
5171 |
|
@@ -5174,8 +5174,8 @@ msgid "minute"
|
|
5174 |
msgstr "minuto"
|
5175 |
|
5176 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5177 |
-
#: app/skins/available_spot/tpl.php:
|
5178 |
-
#: app/skins/countdown/tpl.php:
|
5179 |
msgid "minutes"
|
5180 |
msgstr "minutos"
|
5181 |
|
@@ -5184,8 +5184,8 @@ msgid "second"
|
|
5184 |
msgstr "segundo"
|
5185 |
|
5186 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5187 |
-
#: app/skins/available_spot/tpl.php:
|
5188 |
-
#: app/skins/countdown/tpl.php:
|
5189 |
msgid "seconds"
|
5190 |
msgstr "segundos"
|
5191 |
|
@@ -5197,7 +5197,7 @@ msgstr ""
|
|
5197 |
msgid "Custom sidebar for single and modal page of MEC."
|
5198 |
msgstr ""
|
5199 |
|
5200 |
-
#: app/libraries/feed.php:
|
5201 |
msgid "There is no excerpt because this is a protected post."
|
5202 |
msgstr "Não existe trecho porque esta é uma postagem protegida."
|
5203 |
|
@@ -5256,31 +5256,31 @@ msgstr "Visualizar Carrossel"
|
|
5256 |
msgid "Slider View"
|
5257 |
msgstr "Visualização do Slider"
|
5258 |
|
5259 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5260 |
msgid "SU"
|
5261 |
msgstr "DOM"
|
5262 |
|
5263 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5264 |
msgid "MO"
|
5265 |
msgstr "SEG"
|
5266 |
|
5267 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5268 |
msgid "TU"
|
5269 |
msgstr "TER"
|
5270 |
|
5271 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5272 |
msgid "WE"
|
5273 |
msgstr "QUA"
|
5274 |
|
5275 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5276 |
msgid "TH"
|
5277 |
msgstr "QUI"
|
5278 |
|
5279 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5280 |
msgid "FR"
|
5281 |
msgstr "SEX"
|
5282 |
|
5283 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5284 |
msgid "SA"
|
5285 |
msgstr "SAB"
|
5286 |
|
@@ -5465,95 +5465,95 @@ msgstr "Um evento reservado."
|
|
5465 |
msgid "%s booked %s event."
|
5466 |
msgstr "Evento %s reservado %s."
|
5467 |
|
5468 |
-
#: app/libraries/main.php:
|
5469 |
msgid "Taxonomies"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: app/libraries/main.php:
|
5473 |
msgid "Category Plural Label"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: app/libraries/main.php:
|
5477 |
msgid "Category Singular Label"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
-
#: app/libraries/main.php:
|
5481 |
msgid "Label Plural Label"
|
5482 |
msgstr ""
|
5483 |
|
5484 |
-
#: app/libraries/main.php:
|
5485 |
msgid "Label Singular Label"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
-
#: app/libraries/main.php:
|
5489 |
msgid "label"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: app/libraries/main.php:
|
5493 |
msgid "Location Plural Label"
|
5494 |
msgstr ""
|
5495 |
|
5496 |
-
#: app/libraries/main.php:
|
5497 |
msgid "Location Singular Label"
|
5498 |
msgstr ""
|
5499 |
|
5500 |
-
#: app/libraries/main.php:
|
5501 |
msgid "Organizer Plural Label"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
-
#: app/libraries/main.php:
|
5505 |
msgid "Organizer Singular Label"
|
5506 |
msgstr ""
|
5507 |
|
5508 |
-
#: app/libraries/main.php:
|
5509 |
#, fuzzy
|
5510 |
#| msgid "Search Labels"
|
5511 |
msgid "Speaker Plural Label"
|
5512 |
msgstr "Pesquisar Etiquetas"
|
5513 |
|
5514 |
-
#: app/libraries/main.php:
|
5515 |
#, fuzzy
|
5516 |
#| msgid "Popular Labels"
|
5517 |
msgid "Speaker Singular Label"
|
5518 |
msgstr "Etiquetas Populares"
|
5519 |
|
5520 |
-
#: app/libraries/main.php:
|
5521 |
msgid "Sunday abbreviation"
|
5522 |
msgstr ""
|
5523 |
|
5524 |
-
#: app/libraries/main.php:
|
5525 |
msgid "Monday abbreviation"
|
5526 |
msgstr ""
|
5527 |
|
5528 |
-
#: app/libraries/main.php:
|
5529 |
msgid "Tuesday abbreviation"
|
5530 |
msgstr ""
|
5531 |
|
5532 |
-
#: app/libraries/main.php:
|
5533 |
msgid "Wednesday abbreviation"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#: app/libraries/main.php:
|
5537 |
msgid "Thursday abbreviation"
|
5538 |
msgstr ""
|
5539 |
|
5540 |
-
#: app/libraries/main.php:
|
5541 |
msgid "Friday abbreviation"
|
5542 |
msgstr ""
|
5543 |
|
5544 |
-
#: app/libraries/main.php:
|
5545 |
msgid "Saturday abbreviation"
|
5546 |
msgstr ""
|
5547 |
|
5548 |
-
#: app/libraries/main.php:
|
5549 |
msgid "Others"
|
5550 |
msgstr ""
|
5551 |
|
5552 |
-
#: app/libraries/main.php:
|
5553 |
msgid "Booking Success Message"
|
5554 |
msgstr ""
|
5555 |
|
5556 |
-
#: app/libraries/main.php:
|
5557 |
msgid ""
|
5558 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5559 |
"needed, please check your email."
|
@@ -5561,90 +5561,90 @@ msgstr ""
|
|
5561 |
"Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
|
5562 |
"reserva é necessária, por favor verifique seu e-mail."
|
5563 |
|
5564 |
-
#: app/libraries/main.php:
|
5565 |
msgid "Register Button"
|
5566 |
msgstr ""
|
5567 |
|
5568 |
-
#: app/libraries/main.php:
|
5569 |
-
#: app/skins/carousel/render.php:
|
5570 |
-
#: app/skins/grid/render.php:
|
5571 |
-
#: app/skins/grid/render.php:
|
5572 |
-
#: app/skins/list/render.php:
|
5573 |
-
#: app/skins/masonry/render.php:
|
5574 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5575 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5576 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5577 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5578 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5579 |
-
#: app/skins/slider/render.php:
|
5580 |
-
#: app/skins/slider/render.php:
|
5581 |
msgid "REGISTER"
|
5582 |
msgstr "REGISTRAR"
|
5583 |
|
5584 |
-
#: app/libraries/main.php:
|
5585 |
msgid "View Detail Button"
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: app/libraries/main.php:
|
5589 |
-
#: app/skins/carousel/render.php:
|
5590 |
-
#: app/skins/grid/render.php:
|
5591 |
-
#: app/skins/grid/render.php:
|
5592 |
-
#: app/skins/list/render.php:
|
5593 |
-
#: app/skins/slider/render.php:
|
5594 |
-
#: app/skins/slider/render.php:
|
5595 |
-
#: app/skins/slider/render.php:
|
5596 |
msgid "View Detail"
|
5597 |
msgstr "Ver Detalhes"
|
5598 |
|
5599 |
-
#: app/libraries/main.php:
|
5600 |
msgid "Event Detail Button"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: app/libraries/main.php:
|
5604 |
msgid "Event Detail"
|
5605 |
msgstr "Detalhes do Evento"
|
5606 |
|
5607 |
-
#: app/libraries/main.php:
|
5608 |
msgid "More Info Link"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
-
#: app/libraries/main.php:
|
5612 |
msgid "Ticket (Singular)"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
-
#: app/libraries/main.php:
|
5616 |
msgid "Tickets (Plural)"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
-
#: app/libraries/main.php:
|
5620 |
msgid "EventON"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: app/libraries/main.php:
|
5624 |
msgid "The Events Calendar"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: app/libraries/main.php:
|
5628 |
msgid "Events Schedule WP Plugin"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#: app/libraries/main.php:
|
5632 |
msgid "Calendarize It"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
-
#: app/libraries/main.php:
|
5636 |
msgid "Confirmed"
|
5637 |
msgstr "Confirmado"
|
5638 |
|
5639 |
-
#: app/libraries/main.php:
|
5640 |
msgid "Rejected"
|
5641 |
msgstr "Recusado"
|
5642 |
|
5643 |
-
#: app/libraries/main.php:
|
5644 |
msgid "Pending"
|
5645 |
msgstr "Pendente"
|
5646 |
|
5647 |
-
#: app/libraries/main.php:
|
5648 |
msgid "Waiting"
|
5649 |
msgstr "Aguardando"
|
5650 |
|
@@ -5664,27 +5664,27 @@ msgstr "Sua reserva foi confirmada."
|
|
5664 |
msgid "A new booking is received."
|
5665 |
msgstr "Uma nova reserva foi recebida."
|
5666 |
|
5667 |
-
#: app/libraries/notifications.php:
|
5668 |
msgid "A new event is added."
|
5669 |
msgstr "Um novo evento foi adicionado."
|
5670 |
|
5671 |
-
#: app/libraries/notifications.php:
|
5672 |
msgid "to"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#: app/libraries/notifications.php:
|
5676 |
msgid "+ Add to Google Calendar"
|
5677 |
msgstr "+ Adicionar ao Calendário do Google"
|
5678 |
|
5679 |
-
#: app/libraries/notifications.php:
|
5680 |
msgid "+ iCal export"
|
5681 |
msgstr "+ Exportar para iCal"
|
5682 |
|
5683 |
-
#: app/libraries/notifications.php:
|
5684 |
msgid "Yes"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#: app/libraries/notifications.php:
|
5688 |
msgid "No"
|
5689 |
msgstr ""
|
5690 |
|
@@ -5699,7 +5699,7 @@ msgstr "Controlador de pele não existe."
|
|
5699 |
msgid "All of the day"
|
5700 |
msgstr "Durante o dia todo"
|
5701 |
|
5702 |
-
#: app/libraries/skins.php:
|
5703 |
msgid "Ignore month and years"
|
5704 |
msgstr "Ignore meses e anos"
|
5705 |
|
@@ -5741,8 +5741,8 @@ msgid "Fill other attendees information like the first form."
|
|
5741 |
msgstr ""
|
5742 |
|
5743 |
#: app/modules/booking/steps/form.php:162
|
5744 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5745 |
-
#: app/skins/countdown/tpl.php:
|
5746 |
msgid "Next"
|
5747 |
msgstr "Próximo"
|
5748 |
|
@@ -5866,11 +5866,11 @@ msgid "No event found!"
|
|
5866 |
msgstr "Nenhum evento encontrado!"
|
5867 |
|
5868 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5869 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5870 |
msgid "Load More"
|
5871 |
msgstr "Carregar Mais"
|
5872 |
|
5873 |
-
#: app/skins/available_spot/tpl.php:
|
5874 |
msgid "Available Spot(s):"
|
5875 |
msgstr ""
|
5876 |
|
@@ -5880,23 +5880,23 @@ msgstr ""
|
|
5880 |
msgid "View All"
|
5881 |
msgstr "Ver Etiqueta"
|
5882 |
|
5883 |
-
#: app/skins/carousel/render.php:
|
5884 |
-
#: app/skins/countdown/tpl.php:
|
5885 |
-
#: app/skins/list/render.php:
|
5886 |
msgid "EVENT DETAIL"
|
5887 |
msgstr "DETALHES DO EVENTO"
|
5888 |
|
5889 |
-
#: app/skins/countdown/tpl.php:
|
5890 |
-
#: app/skins/countdown/tpl.php:
|
5891 |
#, php-format
|
5892 |
msgid "%s Upcoming Event"
|
5893 |
msgstr "Próximos Eventos %s"
|
5894 |
|
5895 |
-
#: app/skins/cover/tpl.php:
|
5896 |
msgid "featured event"
|
5897 |
msgstr "evento em destaque"
|
5898 |
|
5899 |
-
#: app/skins/daily_view/render.php:
|
5900 |
msgid "No event"
|
5901 |
msgstr "Sem eventos"
|
5902 |
|
@@ -5909,16 +5909,16 @@ msgid "All"
|
|
5909 |
msgstr ""
|
5910 |
|
5911 |
#: app/skins/monthly_view/calendar.php:66
|
5912 |
-
#: app/skins/monthly_view/calendar.php:
|
5913 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5914 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5915 |
#, php-format
|
5916 |
msgid "Events for %s"
|
5917 |
msgstr "Eventos para %s"
|
5918 |
|
5919 |
-
#: app/skins/monthly_view/calendar.php:
|
5920 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5921 |
-
#: app/skins/timetable/render.php:
|
5922 |
msgid "No Events"
|
5923 |
msgstr "Sem Eventos"
|
5924 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-05-08 11:43+0430\n"
|
6 |
+
"PO-Revision-Date: 2019-05-08 11:43+0430\n"
|
7 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
8 |
"Language-Team: Portuguese (Brazil)\n"
|
9 |
"Language: pt_BR\n"
|
31 |
msgid "Content"
|
32 |
msgstr "Conteúdo"
|
33 |
|
34 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
35 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
36 |
msgid "Shortcode"
|
37 |
msgstr "Código Curto"
|
38 |
|
63 |
msgid "Event Color"
|
64 |
msgstr "Cor do Evento"
|
65 |
|
66 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
67 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
68 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
69 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
268 |
msgid "Event"
|
269 |
msgstr "Evento"
|
270 |
|
271 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
272 |
msgid "Add Event"
|
273 |
msgstr "Adicionar Evento"
|
274 |
|
308 |
#: app/features/mec/meta_boxes/search_form.php:362
|
309 |
#: app/features/mec/meta_boxes/search_form.php:416
|
310 |
#: app/features/mec/meta_boxes/search_form.php:477
|
311 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
312 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
313 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
314 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
315 |
msgid "Category"
|
316 |
msgstr "Categoria"
|
317 |
|
318 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
319 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
320 |
+
#: app/libraries/main.php:4363
|
321 |
msgid "Categories"
|
322 |
msgstr "Categorias"
|
323 |
|
392 |
#: app/features/events.php:296 app/features/events.php:2053
|
393 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
394 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
395 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
396 |
#: app/widgets/single.php:103
|
397 |
msgid "Event Cost"
|
398 |
msgstr "Custo do Evento"
|
399 |
|
400 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
401 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
402 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
403 |
#: app/skins/single/modern.php:184
|
404 |
msgid "Cost"
|
415 |
#: app/features/events.php:380 app/features/events.php:1237
|
416 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
417 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
418 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
419 |
#: app/modules/booking/steps/form.php:35
|
420 |
msgid "Name"
|
421 |
msgstr "Nome"
|
427 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
428 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
429 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
430 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
431 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
432 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
433 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
754 |
|
755 |
#: app/features/events.php:683 app/features/events.php:703
|
756 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
757 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
758 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
759 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
760 |
msgid "Speakers"
|
761 |
msgstr ""
|
762 |
|
772 |
msgstr "Links do Evento"
|
773 |
|
774 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
775 |
+
#: app/libraries/main.php:4394
|
776 |
msgid "Event Link"
|
777 |
msgstr "Link do Evento"
|
778 |
|
790 |
"padrão. Inserir link completo, incluindo http(s)://"
|
791 |
|
792 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
793 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
794 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
795 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
796 |
#: app/widgets/single.php:107
|
824 |
#: app/features/events.php:818 app/features/events.php:910
|
825 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
826 |
#: app/modules/booking/steps/tickets.php:40
|
827 |
+
#: app/skins/available_spot/tpl.php:138
|
828 |
msgid "Unlimited"
|
829 |
msgstr "Ilimitado"
|
830 |
|
833 |
msgstr "100"
|
834 |
|
835 |
#: app/features/events.php:838 app/libraries/book.php:60
|
836 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
837 |
msgid "Tickets"
|
838 |
msgstr "Bilhetes"
|
839 |
|
901 |
#: app/features/mec/meta_boxes/search_form.php:397
|
902 |
#: app/features/mec/meta_boxes/search_form.php:451
|
903 |
#: app/features/mec/meta_boxes/search_form.php:512
|
904 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
905 |
msgid "Label"
|
906 |
msgstr "Etiqueta"
|
907 |
|
1128 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1131 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1132 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1133 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1134 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1149 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1150 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1151 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1152 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1153 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1154 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1155 |
#: app/skins/single/modern.php:21
|
1289 |
msgstr "Remover Imagem"
|
1290 |
|
1291 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1292 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1293 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1294 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1295 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1296 |
msgid "Labels"
|
1297 |
msgstr "Etiquetas"
|
1298 |
|
1299 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1300 |
#: app/features/mec/meta_boxes/filter.php:138
|
1301 |
msgid "Tags"
|
1302 |
msgstr "Tags"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
#: app/features/labels.php:116 app/features/labels.php:141
|
2009 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
2010 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
2011 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
2012 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
2013 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2014 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2015 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
2016 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2017 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
2018 |
#, fuzzy
|
2019 |
#| msgid "Featured Image"
|
2020 |
msgid "Featured"
|
2021 |
msgstr "Imagem Destacada"
|
2022 |
|
2023 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2024 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
2025 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2026 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2027 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2028 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2029 |
#: app/skins/monthly_view/calendar.php:84
|
2030 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2031 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
2032 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2033 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
2034 |
msgid "Canceled"
|
2035 |
msgstr "Cancelado"
|
2036 |
|
2054 |
msgid "Event %s"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2058 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2059 |
+
#: app/libraries/main.php:4367
|
2060 |
msgid "Locations"
|
2061 |
msgstr "Localizações"
|
2062 |
|
2152 |
msgid "Don't show map in single event page"
|
2153 |
msgstr "Não mostrar mapa na página de evento individual"
|
2154 |
|
2155 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2156 |
#, fuzzy
|
2157 |
#| msgid "Search Locations"
|
2158 |
msgid "Other Locations"
|
2163 |
"You can select extra locations in addition to main location if you like."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: app/features/mec.php:144
|
2167 |
msgid ""
|
2168 |
"Activation faild. Please check your purchase code or license type."
|
2169 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: app/features/mec.php:144
|
2173 |
msgid "Troubleshooting"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: app/features/mec.php:179
|
2177 |
msgid ""
|
2178 |
"Your options is not in JSON format. Please insert correct options in this "
|
2179 |
"field and try again."
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: app/features/mec.php:183
|
2183 |
#, fuzzy
|
2184 |
#| msgid "Your booking cannot verify!"
|
2185 |
msgid "Your options field can not be empty!"
|
2186 |
msgstr "Sua reserva não pôde ser verificada!"
|
2187 |
|
2188 |
+
#: app/features/mec.php:187
|
2189 |
#, fuzzy
|
2190 |
#| msgid "Your booking successfully verified."
|
2191 |
msgid "Your options imported successfuly."
|
2192 |
msgstr "Sua reserva foi verificada com sucesso."
|
2193 |
|
2194 |
+
#: app/features/mec.php:274
|
2195 |
#, fuzzy
|
2196 |
#| msgid "Support"
|
2197 |
msgid "MEC - Support"
|
2198 |
msgstr "Suporte"
|
2199 |
|
2200 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2201 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2202 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2203 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2206 |
msgid "Support"
|
2207 |
msgstr "Suporte"
|
2208 |
|
2209 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2210 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2211 |
+
#: app/libraries/main.php:4369
|
2212 |
msgid "Organizers"
|
2213 |
msgstr "Organizadores"
|
2214 |
|
2215 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2216 |
#: app/features/mec/dashboard.php:164
|
2217 |
msgid "Shortcodes"
|
2218 |
msgstr "Códigos Curtos"
|
2219 |
|
2220 |
+
#: app/features/mec.php:303
|
2221 |
msgid "MEC - Settings"
|
2222 |
msgstr "CEM - Configurações"
|
2223 |
|
2224 |
+
#: app/features/mec.php:304
|
2225 |
#, fuzzy
|
2226 |
#| msgid "MEC - Settings"
|
2227 |
msgid "MEC - Addons"
|
2228 |
msgstr "CEM - Configurações"
|
2229 |
|
2230 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2231 |
msgid "Addons"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: app/features/mec.php:321
|
2235 |
msgid "Add Shortcode"
|
2236 |
msgstr "Adicionar Código Curto"
|
2237 |
|
2238 |
+
#: app/features/mec.php:322
|
2239 |
msgid "Add New Shortcode"
|
2240 |
msgstr "Adicionar Novo Código Curto"
|
2241 |
|
2242 |
+
#: app/features/mec.php:323
|
2243 |
msgid "No shortcodes found!"
|
2244 |
msgstr "Nenhum código curto encontrado!"
|
2245 |
|
2246 |
+
#: app/features/mec.php:324
|
2247 |
msgid "All Shortcodes"
|
2248 |
msgstr "Todos os Códigos Curtos"
|
2249 |
|
2250 |
+
#: app/features/mec.php:325
|
2251 |
msgid "Edit shortcodes"
|
2252 |
msgstr "Editar códigos curtos"
|
2253 |
|
2254 |
+
#: app/features/mec.php:326
|
2255 |
msgid "No shortcodes found in Trash!"
|
2256 |
msgstr "Nenhum código curto encontrado na Lixeira!"
|
2257 |
|
2258 |
+
#: app/features/mec.php:373
|
2259 |
msgid "Display Options"
|
2260 |
msgstr "Opções de Exibição"
|
2261 |
|
2262 |
+
#: app/features/mec.php:374
|
2263 |
msgid "Filter Options"
|
2264 |
msgstr "Opções de Filtro"
|
2265 |
|
2266 |
+
#: app/features/mec.php:376
|
2267 |
msgid "Search Form"
|
2268 |
msgstr "Formulário de Pesquisa"
|
2269 |
|
2271 |
msgid "Display content's images as Popup"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: app/features/mec.php:764
|
2275 |
msgid "Single Event Display Method"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: app/features/mec.php:769
|
2279 |
msgid "Separate Window"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: app/features/mec.php:770
|
2283 |
msgid "Modal 1"
|
2284 |
msgstr ""
|
2285 |
|
3228 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3229 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3230 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3231 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3232 |
+
#: app/libraries/skins.php:829
|
3233 |
msgid "Speaker"
|
3234 |
msgstr ""
|
3235 |
|
3241 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3242 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3243 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3244 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3245 |
#, fuzzy
|
3246 |
#| msgid "Tags"
|
3247 |
msgid "Tag"
|
3756 |
msgid "Remove suffix from calendars"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3760 |
msgid "Weekdays"
|
3761 |
msgstr "Dias da semana"
|
3762 |
|
4447 |
msgstr ""
|
4448 |
|
4449 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4450 |
+
#: app/libraries/main.php:4558
|
4451 |
msgid "Verified"
|
4452 |
msgstr "Verificado"
|
4453 |
|
5008 |
msgid "eg. https://webnus.net"
|
5009 |
msgstr "http://webnus.biz"
|
5010 |
|
5011 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
5012 |
#: app/skins/single.php:194
|
5013 |
msgid "Other Organizers"
|
5014 |
msgstr ""
|
5046 |
msgstr ""
|
5047 |
|
5048 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5049 |
+
#: app/libraries/main.php:4398
|
5050 |
msgid "Ticket"
|
5051 |
msgstr "Bilhete"
|
5052 |
|
5125 |
msgid "Discount"
|
5126 |
msgstr "Desconto"
|
5127 |
|
5128 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5129 |
+
#: app/modules/booking/default.php:381
|
5130 |
msgid "Download Invoice"
|
5131 |
msgstr ""
|
5132 |
|
5154 |
msgstr "dia"
|
5155 |
|
5156 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5157 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5158 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5159 |
msgid "days"
|
5160 |
msgstr "dias"
|
5161 |
|
5164 |
msgstr "hora"
|
5165 |
|
5166 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5167 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5168 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5169 |
msgid "hours"
|
5170 |
msgstr "horas"
|
5171 |
|
5174 |
msgstr "minuto"
|
5175 |
|
5176 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5177 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5178 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5179 |
msgid "minutes"
|
5180 |
msgstr "minutos"
|
5181 |
|
5184 |
msgstr "segundo"
|
5185 |
|
5186 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5187 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5188 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5189 |
msgid "seconds"
|
5190 |
msgstr "segundos"
|
5191 |
|
5197 |
msgid "Custom sidebar for single and modal page of MEC."
|
5198 |
msgstr ""
|
5199 |
|
5200 |
+
#: app/libraries/feed.php:83
|
5201 |
msgid "There is no excerpt because this is a protected post."
|
5202 |
msgstr "Não existe trecho porque esta é uma postagem protegida."
|
5203 |
|
5256 |
msgid "Slider View"
|
5257 |
msgstr "Visualização do Slider"
|
5258 |
|
5259 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5260 |
msgid "SU"
|
5261 |
msgstr "DOM"
|
5262 |
|
5263 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5264 |
msgid "MO"
|
5265 |
msgstr "SEG"
|
5266 |
|
5267 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5268 |
msgid "TU"
|
5269 |
msgstr "TER"
|
5270 |
|
5271 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5272 |
msgid "WE"
|
5273 |
msgstr "QUA"
|
5274 |
|
5275 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5276 |
msgid "TH"
|
5277 |
msgstr "QUI"
|
5278 |
|
5279 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5280 |
msgid "FR"
|
5281 |
msgstr "SEX"
|
5282 |
|
5283 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5284 |
msgid "SA"
|
5285 |
msgstr "SAB"
|
5286 |
|
5465 |
msgid "%s booked %s event."
|
5466 |
msgstr "Evento %s reservado %s."
|
5467 |
|
5468 |
+
#: app/libraries/main.php:4361
|
5469 |
msgid "Taxonomies"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
+
#: app/libraries/main.php:4363
|
5473 |
msgid "Category Plural Label"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: app/libraries/main.php:4364
|
5477 |
msgid "Category Singular Label"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
+
#: app/libraries/main.php:4365
|
5481 |
msgid "Label Plural Label"
|
5482 |
msgstr ""
|
5483 |
|
5484 |
+
#: app/libraries/main.php:4366
|
5485 |
msgid "Label Singular Label"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
+
#: app/libraries/main.php:4366
|
5489 |
msgid "label"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
+
#: app/libraries/main.php:4367
|
5493 |
msgid "Location Plural Label"
|
5494 |
msgstr ""
|
5495 |
|
5496 |
+
#: app/libraries/main.php:4368
|
5497 |
msgid "Location Singular Label"
|
5498 |
msgstr ""
|
5499 |
|
5500 |
+
#: app/libraries/main.php:4369
|
5501 |
msgid "Organizer Plural Label"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
+
#: app/libraries/main.php:4370
|
5505 |
msgid "Organizer Singular Label"
|
5506 |
msgstr ""
|
5507 |
|
5508 |
+
#: app/libraries/main.php:4371
|
5509 |
#, fuzzy
|
5510 |
#| msgid "Search Labels"
|
5511 |
msgid "Speaker Plural Label"
|
5512 |
msgstr "Pesquisar Etiquetas"
|
5513 |
|
5514 |
+
#: app/libraries/main.php:4372
|
5515 |
#, fuzzy
|
5516 |
#| msgid "Popular Labels"
|
5517 |
msgid "Speaker Singular Label"
|
5518 |
msgstr "Etiquetas Populares"
|
5519 |
|
5520 |
+
#: app/libraries/main.php:4378
|
5521 |
msgid "Sunday abbreviation"
|
5522 |
msgstr ""
|
5523 |
|
5524 |
+
#: app/libraries/main.php:4379
|
5525 |
msgid "Monday abbreviation"
|
5526 |
msgstr ""
|
5527 |
|
5528 |
+
#: app/libraries/main.php:4380
|
5529 |
msgid "Tuesday abbreviation"
|
5530 |
msgstr ""
|
5531 |
|
5532 |
+
#: app/libraries/main.php:4381
|
5533 |
msgid "Wednesday abbreviation"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: app/libraries/main.php:4382
|
5537 |
msgid "Thursday abbreviation"
|
5538 |
msgstr ""
|
5539 |
|
5540 |
+
#: app/libraries/main.php:4383
|
5541 |
msgid "Friday abbreviation"
|
5542 |
msgstr ""
|
5543 |
|
5544 |
+
#: app/libraries/main.php:4384
|
5545 |
msgid "Saturday abbreviation"
|
5546 |
msgstr ""
|
5547 |
|
5548 |
+
#: app/libraries/main.php:4388
|
5549 |
msgid "Others"
|
5550 |
msgstr ""
|
5551 |
|
5552 |
+
#: app/libraries/main.php:4390
|
5553 |
msgid "Booking Success Message"
|
5554 |
msgstr ""
|
5555 |
|
5556 |
+
#: app/libraries/main.php:4390
|
5557 |
msgid ""
|
5558 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5559 |
"needed, please check your email."
|
5561 |
"Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
|
5562 |
"reserva é necessária, por favor verifique seu e-mail."
|
5563 |
|
5564 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5565 |
msgid "Register Button"
|
5566 |
msgstr ""
|
5567 |
|
5568 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5569 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5570 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5571 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5572 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5573 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5574 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5575 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5576 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5577 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5578 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5579 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5580 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5581 |
msgid "REGISTER"
|
5582 |
msgstr "REGISTRAR"
|
5583 |
|
5584 |
+
#: app/libraries/main.php:4392
|
5585 |
msgid "View Detail Button"
|
5586 |
msgstr ""
|
5587 |
|
5588 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5589 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5590 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5591 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5592 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5593 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5594 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5595 |
+
#: app/skins/slider/render.php:305
|
5596 |
msgid "View Detail"
|
5597 |
msgstr "Ver Detalhes"
|
5598 |
|
5599 |
+
#: app/libraries/main.php:4393
|
5600 |
msgid "Event Detail Button"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5604 |
msgid "Event Detail"
|
5605 |
msgstr "Detalhes do Evento"
|
5606 |
|
5607 |
+
#: app/libraries/main.php:4395
|
5608 |
msgid "More Info Link"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
+
#: app/libraries/main.php:4398
|
5612 |
msgid "Ticket (Singular)"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
+
#: app/libraries/main.php:4399
|
5616 |
msgid "Tickets (Plural)"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
+
#: app/libraries/main.php:4466
|
5620 |
msgid "EventON"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: app/libraries/main.php:4467
|
5624 |
msgid "The Events Calendar"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: app/libraries/main.php:4468
|
5628 |
msgid "Events Schedule WP Plugin"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: app/libraries/main.php:4469
|
5632 |
msgid "Calendarize It"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: app/libraries/main.php:4543
|
5636 |
msgid "Confirmed"
|
5637 |
msgstr "Confirmado"
|
5638 |
|
5639 |
+
#: app/libraries/main.php:4544
|
5640 |
msgid "Rejected"
|
5641 |
msgstr "Recusado"
|
5642 |
|
5643 |
+
#: app/libraries/main.php:4545
|
5644 |
msgid "Pending"
|
5645 |
msgstr "Pendente"
|
5646 |
|
5647 |
+
#: app/libraries/main.php:4560
|
5648 |
msgid "Waiting"
|
5649 |
msgstr "Aguardando"
|
5650 |
|
5664 |
msgid "A new booking is received."
|
5665 |
msgstr "Uma nova reserva foi recebida."
|
5666 |
|
5667 |
+
#: app/libraries/notifications.php:338
|
5668 |
msgid "A new event is added."
|
5669 |
msgstr "Um novo evento foi adicionado."
|
5670 |
|
5671 |
+
#: app/libraries/notifications.php:509
|
5672 |
msgid "to"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5676 |
msgid "+ Add to Google Calendar"
|
5677 |
msgstr "+ Adicionar ao Calendário do Google"
|
5678 |
|
5679 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5680 |
msgid "+ iCal export"
|
5681 |
msgstr "+ Exportar para iCal"
|
5682 |
|
5683 |
+
#: app/libraries/notifications.php:582
|
5684 |
msgid "Yes"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
+
#: app/libraries/notifications.php:582
|
5688 |
msgid "No"
|
5689 |
msgstr ""
|
5690 |
|
5699 |
msgid "All of the day"
|
5700 |
msgstr "Durante o dia todo"
|
5701 |
|
5702 |
+
#: app/libraries/skins.php:902
|
5703 |
msgid "Ignore month and years"
|
5704 |
msgstr "Ignore meses e anos"
|
5705 |
|
5741 |
msgstr ""
|
5742 |
|
5743 |
#: app/modules/booking/steps/form.php:162
|
5744 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5745 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5746 |
msgid "Next"
|
5747 |
msgstr "Próximo"
|
5748 |
|
5866 |
msgstr "Nenhum evento encontrado!"
|
5867 |
|
5868 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5869 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5870 |
msgid "Load More"
|
5871 |
msgstr "Carregar Mais"
|
5872 |
|
5873 |
+
#: app/skins/available_spot/tpl.php:138
|
5874 |
msgid "Available Spot(s):"
|
5875 |
msgstr ""
|
5876 |
|
5880 |
msgid "View All"
|
5881 |
msgstr "Ver Etiqueta"
|
5882 |
|
5883 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5884 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5885 |
+
#: app/skins/list/render.php:119
|
5886 |
msgid "EVENT DETAIL"
|
5887 |
msgstr "DETALHES DO EVENTO"
|
5888 |
|
5889 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5890 |
+
#: app/skins/countdown/tpl.php:206
|
5891 |
#, php-format
|
5892 |
msgid "%s Upcoming Event"
|
5893 |
msgstr "Próximos Eventos %s"
|
5894 |
|
5895 |
+
#: app/skins/cover/tpl.php:81
|
5896 |
msgid "featured event"
|
5897 |
msgstr "evento em destaque"
|
5898 |
|
5899 |
+
#: app/skins/daily_view/render.php:78
|
5900 |
msgid "No event"
|
5901 |
msgstr "Sem eventos"
|
5902 |
|
5909 |
msgstr ""
|
5910 |
|
5911 |
#: app/skins/monthly_view/calendar.php:66
|
5912 |
+
#: app/skins/monthly_view/calendar.php:152
|
5913 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5914 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5915 |
#, php-format
|
5916 |
msgid "Events for %s"
|
5917 |
msgstr "Eventos para %s"
|
5918 |
|
5919 |
+
#: app/skins/monthly_view/calendar.php:154
|
5920 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5921 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5922 |
msgid "No Events"
|
5923 |
msgstr "Sem Eventos"
|
5924 |
|
languages/modern-events-calendar-lite-ru_RU.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-ru_RU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
|
8 |
"Language: ru_RU\n"
|
@@ -31,8 +31,8 @@ msgstr "Календарь событий"
|
|
31 |
msgid "Content"
|
32 |
msgstr "Содержание"
|
33 |
|
34 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
35 |
-
#: app/features/mec.php:
|
36 |
msgid "Shortcode"
|
37 |
msgstr "Шорткод"
|
38 |
|
@@ -61,7 +61,7 @@ msgstr ""
|
|
61 |
msgid "Event Color"
|
62 |
msgstr "Цвет события"
|
63 |
|
64 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
65 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
66 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
67 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -266,7 +266,7 @@ msgstr "События"
|
|
266 |
msgid "Event"
|
267 |
msgstr "Событие"
|
268 |
|
269 |
-
#: app/features/events.php:134 app/features/mec.php:
|
270 |
msgid "Add Event"
|
271 |
msgstr "Добавить событие"
|
272 |
|
@@ -306,16 +306,16 @@ msgstr "Событий в корзине не найдено!"
|
|
306 |
#: app/features/mec/meta_boxes/search_form.php:362
|
307 |
#: app/features/mec/meta_boxes/search_form.php:416
|
308 |
#: app/features/mec/meta_boxes/search_form.php:477
|
309 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
310 |
-
#: app/libraries/skins.php:
|
311 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
312 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
313 |
msgid "Category"
|
314 |
msgstr "Категория"
|
315 |
|
316 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
317 |
-
#: app/features/mec.php:
|
318 |
-
#: app/libraries/main.php:
|
319 |
msgid "Categories"
|
320 |
msgstr "Категории"
|
321 |
|
@@ -390,13 +390,13 @@ msgstr "Детали события"
|
|
390 |
#: app/features/events.php:296 app/features/events.php:2053
|
391 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
392 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
393 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
394 |
#: app/widgets/single.php:103
|
395 |
msgid "Event Cost"
|
396 |
msgstr "Цена события"
|
397 |
|
398 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
399 |
-
#: app/libraries/main.php:
|
400 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
401 |
#: app/skins/single/modern.php:184
|
402 |
msgid "Cost"
|
@@ -413,7 +413,7 @@ msgstr ""
|
|
413 |
#: app/features/events.php:380 app/features/events.php:1237
|
414 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
415 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
416 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
417 |
#: app/modules/booking/steps/form.php:35
|
418 |
msgid "Name"
|
419 |
msgstr "Имя"
|
@@ -425,7 +425,7 @@ msgstr "Имя"
|
|
425 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
426 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
427 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
428 |
-
#: app/libraries/notifications.php:
|
429 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
430 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
431 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -750,9 +750,9 @@ msgstr "Описание"
|
|
750 |
|
751 |
#: app/features/events.php:683 app/features/events.php:703
|
752 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
753 |
-
#: app/features/mec.php:
|
754 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
755 |
-
#: app/libraries/main.php:
|
756 |
msgid "Speakers"
|
757 |
msgstr ""
|
758 |
|
@@ -768,7 +768,7 @@ msgid "Event Links"
|
|
768 |
msgstr "Ссылки события"
|
769 |
|
770 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
771 |
-
#: app/libraries/main.php:
|
772 |
msgid "Event Link"
|
773 |
msgstr "Ссылка события"
|
774 |
|
@@ -786,7 +786,7 @@ msgstr ""
|
|
786 |
"умолчанию. Вставьте ссылку включая http(s)://"
|
787 |
|
788 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
789 |
-
#: app/libraries/main.php:
|
790 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
791 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
792 |
#: app/widgets/single.php:107
|
@@ -820,7 +820,7 @@ msgstr "Предел бронирования"
|
|
820 |
#: app/features/events.php:818 app/features/events.php:910
|
821 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
822 |
#: app/modules/booking/steps/tickets.php:40
|
823 |
-
#: app/skins/available_spot/tpl.php:
|
824 |
msgid "Unlimited"
|
825 |
msgstr "Без ограничений"
|
826 |
|
@@ -829,7 +829,7 @@ msgid "100"
|
|
829 |
msgstr "100"
|
830 |
|
831 |
#: app/features/events.php:838 app/libraries/book.php:60
|
832 |
-
#: app/libraries/main.php:
|
833 |
msgid "Tickets"
|
834 |
msgstr "Билеты"
|
835 |
|
@@ -897,7 +897,7 @@ msgstr "Метка цены"
|
|
897 |
#: app/features/mec/meta_boxes/search_form.php:397
|
898 |
#: app/features/mec/meta_boxes/search_form.php:451
|
899 |
#: app/features/mec/meta_boxes/search_form.php:512
|
900 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
901 |
msgid "Label"
|
902 |
msgstr "Метка"
|
903 |
|
@@ -1124,7 +1124,7 @@ msgstr ""
|
|
1124 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1125 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1126 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1127 |
-
#: app/libraries/main.php:
|
1128 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1129 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1130 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1145,7 +1145,7 @@ msgstr "Места"
|
|
1145 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1146 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1147 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1148 |
-
#: app/libraries/main.php:
|
1149 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1150 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1151 |
#: app/skins/single/modern.php:21
|
@@ -1285,14 +1285,14 @@ msgid "Remove Image"
|
|
1285 |
msgstr "Удалить изображение"
|
1286 |
|
1287 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1288 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1289 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1290 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1291 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1292 |
msgid "Labels"
|
1293 |
msgstr "Метки"
|
1294 |
|
1295 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1296 |
#: app/features/mec/meta_boxes/filter.php:138
|
1297 |
msgid "Tags"
|
1298 |
msgstr "Теги"
|
@@ -1949,31 +1949,31 @@ msgid "Normal"
|
|
1949 |
msgstr ""
|
1950 |
|
1951 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1952 |
-
#: app/skins/agenda/render.php:
|
1953 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1954 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
1955 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1956 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1957 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1958 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
1959 |
-
#: app/skins/timetable/render.php:
|
1960 |
-
#: app/skins/weekly_view/render.php:
|
1961 |
#, fuzzy
|
1962 |
#| msgid "Featured Image"
|
1963 |
msgid "Featured"
|
1964 |
msgstr "Избранное изображение"
|
1965 |
|
1966 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1967 |
-
#: app/libraries/main.php:
|
1968 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1969 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1970 |
-
#: app/skins/daily_view/render.php:
|
1971 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1972 |
#: app/skins/monthly_view/calendar.php:84
|
1973 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1974 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
1975 |
-
#: app/skins/timetable/render.php:
|
1976 |
-
#: app/skins/weekly_view/render.php:
|
1977 |
msgid "Canceled"
|
1978 |
msgstr "Отменено"
|
1979 |
|
@@ -1997,9 +1997,9 @@ msgstr "Slug"
|
|
1997 |
msgid "Event %s"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2001 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2002 |
-
#: app/libraries/main.php:
|
2003 |
msgid "Locations"
|
2004 |
msgstr "Места"
|
2005 |
|
@@ -2095,7 +2095,7 @@ msgstr "Выберите изображение"
|
|
2095 |
msgid "Don't show map in single event page"
|
2096 |
msgstr "Не отображать карту на странице одиночного события"
|
2097 |
|
2098 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2099 |
#, fuzzy
|
2100 |
#| msgid "Search Locations"
|
2101 |
msgid "Other Locations"
|
@@ -2106,41 +2106,41 @@ msgid ""
|
|
2106 |
"You can select extra locations in addition to main location if you like."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: app/features/mec.php:
|
2110 |
msgid ""
|
2111 |
"Activation faild. Please check your purchase code or license type."
|
2112 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: app/features/mec.php:
|
2116 |
msgid "Troubleshooting"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: app/features/mec.php:
|
2120 |
msgid ""
|
2121 |
"Your options is not in JSON format. Please insert correct options in this "
|
2122 |
"field and try again."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: app/features/mec.php:
|
2126 |
#, fuzzy
|
2127 |
#| msgid "Your booking cannot verify!"
|
2128 |
msgid "Your options field can not be empty!"
|
2129 |
msgstr "Ваше бронирование не может быть верифицировано!"
|
2130 |
|
2131 |
-
#: app/features/mec.php:
|
2132 |
#, fuzzy
|
2133 |
#| msgid "Your booking successfully verified."
|
2134 |
msgid "Your options imported successfuly."
|
2135 |
msgstr "Ваше бронирование успешно верифицировано."
|
2136 |
|
2137 |
-
#: app/features/mec.php:
|
2138 |
#, fuzzy
|
2139 |
#| msgid "Support"
|
2140 |
msgid "MEC - Support"
|
2141 |
msgstr "Поддержка"
|
2142 |
|
2143 |
-
#: app/features/mec.php:
|
2144 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2145 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2146 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2149,64 +2149,64 @@ msgstr "Поддержка"
|
|
2149 |
msgid "Support"
|
2150 |
msgstr "Поддержка"
|
2151 |
|
2152 |
-
#: app/features/mec.php:
|
2153 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2154 |
-
#: app/libraries/main.php:
|
2155 |
msgid "Organizers"
|
2156 |
msgstr "Оранизаторы"
|
2157 |
|
2158 |
-
#: app/features/mec.php:
|
2159 |
#: app/features/mec/dashboard.php:164
|
2160 |
msgid "Shortcodes"
|
2161 |
msgstr "Шорткоды"
|
2162 |
|
2163 |
-
#: app/features/mec.php:
|
2164 |
msgid "MEC - Settings"
|
2165 |
msgstr "MEC - Настройки"
|
2166 |
|
2167 |
-
#: app/features/mec.php:
|
2168 |
#, fuzzy
|
2169 |
#| msgid "MEC - Settings"
|
2170 |
msgid "MEC - Addons"
|
2171 |
msgstr "MEC - Настройки"
|
2172 |
|
2173 |
-
#: app/features/mec.php:
|
2174 |
msgid "Addons"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: app/features/mec.php:
|
2178 |
msgid "Add Shortcode"
|
2179 |
msgstr "Добавить шорткод"
|
2180 |
|
2181 |
-
#: app/features/mec.php:
|
2182 |
msgid "Add New Shortcode"
|
2183 |
msgstr "Добавить новый Шорткод"
|
2184 |
|
2185 |
-
#: app/features/mec.php:
|
2186 |
msgid "No shortcodes found!"
|
2187 |
msgstr "Не найдено ни одного шорткода!"
|
2188 |
|
2189 |
-
#: app/features/mec.php:
|
2190 |
msgid "All Shortcodes"
|
2191 |
msgstr "Все шорткоды"
|
2192 |
|
2193 |
-
#: app/features/mec.php:
|
2194 |
msgid "Edit shortcodes"
|
2195 |
msgstr "Редактировать шорткод"
|
2196 |
|
2197 |
-
#: app/features/mec.php:
|
2198 |
msgid "No shortcodes found in Trash!"
|
2199 |
msgstr "В корзине не найдено ни одного шорткода!"
|
2200 |
|
2201 |
-
#: app/features/mec.php:
|
2202 |
msgid "Display Options"
|
2203 |
msgstr "Опции отображения"
|
2204 |
|
2205 |
-
#: app/features/mec.php:
|
2206 |
msgid "Filter Options"
|
2207 |
msgstr "Опции фильтра"
|
2208 |
|
2209 |
-
#: app/features/mec.php:
|
2210 |
msgid "Search Form"
|
2211 |
msgstr "Форма поиска"
|
2212 |
|
@@ -2214,15 +2214,15 @@ msgstr "Форма поиска"
|
|
2214 |
msgid "Display content's images as Popup"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: app/features/mec.php:
|
2218 |
msgid "Single Event Display Method"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: app/features/mec.php:
|
2222 |
msgid "Separate Window"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: app/features/mec.php:
|
2226 |
msgid "Modal 1"
|
2227 |
msgstr ""
|
2228 |
|
@@ -3171,8 +3171,8 @@ msgstr "Выключено"
|
|
3171 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3172 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3173 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3174 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3175 |
-
#: app/libraries/skins.php:
|
3176 |
msgid "Speaker"
|
3177 |
msgstr ""
|
3178 |
|
@@ -3184,7 +3184,7 @@ msgstr ""
|
|
3184 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3185 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3186 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3187 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3188 |
#, fuzzy
|
3189 |
#| msgid "Tags"
|
3190 |
msgid "Tag"
|
@@ -3693,7 +3693,7 @@ msgstr ""
|
|
3693 |
msgid "Remove suffix from calendars"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3697 |
msgid "Weekdays"
|
3698 |
msgstr ""
|
3699 |
|
@@ -4374,7 +4374,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4374 |
msgstr ""
|
4375 |
|
4376 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4377 |
-
#: app/libraries/main.php:
|
4378 |
msgid "Verified"
|
4379 |
msgstr "Проверено"
|
4380 |
|
@@ -4929,7 +4929,7 @@ msgstr "напр. veselyj@chelovec.com"
|
|
4929 |
msgid "eg. https://webnus.net"
|
4930 |
msgstr ""
|
4931 |
|
4932 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
4933 |
#: app/skins/single.php:194
|
4934 |
msgid "Other Organizers"
|
4935 |
msgstr ""
|
@@ -4967,7 +4967,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
4967 |
msgstr ""
|
4968 |
|
4969 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4970 |
-
#: app/libraries/main.php:
|
4971 |
msgid "Ticket"
|
4972 |
msgstr "Билет"
|
4973 |
|
@@ -5044,8 +5044,8 @@ msgstr ""
|
|
5044 |
msgid "Discount"
|
5045 |
msgstr "Скидка"
|
5046 |
|
5047 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5048 |
-
#: app/modules/booking/default.php:
|
5049 |
msgid "Download Invoice"
|
5050 |
msgstr ""
|
5051 |
|
@@ -5073,8 +5073,8 @@ msgid "day"
|
|
5073 |
msgstr "день"
|
5074 |
|
5075 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5076 |
-
#: app/skins/available_spot/tpl.php:
|
5077 |
-
#: app/skins/countdown/tpl.php:
|
5078 |
msgid "days"
|
5079 |
msgstr "дни"
|
5080 |
|
@@ -5083,8 +5083,8 @@ msgid "hour"
|
|
5083 |
msgstr "час"
|
5084 |
|
5085 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5086 |
-
#: app/skins/available_spot/tpl.php:
|
5087 |
-
#: app/skins/countdown/tpl.php:
|
5088 |
msgid "hours"
|
5089 |
msgstr "часы"
|
5090 |
|
@@ -5093,8 +5093,8 @@ msgid "minute"
|
|
5093 |
msgstr "минута"
|
5094 |
|
5095 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5096 |
-
#: app/skins/available_spot/tpl.php:
|
5097 |
-
#: app/skins/countdown/tpl.php:
|
5098 |
msgid "minutes"
|
5099 |
msgstr "минуты"
|
5100 |
|
@@ -5103,8 +5103,8 @@ msgid "second"
|
|
5103 |
msgstr "секунда"
|
5104 |
|
5105 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5106 |
-
#: app/skins/available_spot/tpl.php:
|
5107 |
-
#: app/skins/countdown/tpl.php:
|
5108 |
msgid "seconds"
|
5109 |
msgstr "секунды"
|
5110 |
|
@@ -5116,7 +5116,7 @@ msgstr ""
|
|
5116 |
msgid "Custom sidebar for single and modal page of MEC."
|
5117 |
msgstr ""
|
5118 |
|
5119 |
-
#: app/libraries/feed.php:
|
5120 |
msgid "There is no excerpt because this is a protected post."
|
5121 |
msgstr "Исключения отсутствуют так как данная запись защищена."
|
5122 |
|
@@ -5175,31 +5175,31 @@ msgstr "Карусель"
|
|
5175 |
msgid "Slider View"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5179 |
msgid "SU"
|
5180 |
msgstr "Вс"
|
5181 |
|
5182 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5183 |
msgid "MO"
|
5184 |
msgstr "Пн"
|
5185 |
|
5186 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5187 |
msgid "TU"
|
5188 |
msgstr "Вт"
|
5189 |
|
5190 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5191 |
msgid "WE"
|
5192 |
msgstr "Ср"
|
5193 |
|
5194 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5195 |
msgid "TH"
|
5196 |
msgstr "Чт"
|
5197 |
|
5198 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5199 |
msgid "FR"
|
5200 |
msgstr "Пт"
|
5201 |
|
5202 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5203 |
msgid "SA"
|
5204 |
msgstr "Сб"
|
5205 |
|
@@ -5384,95 +5384,95 @@ msgstr ""
|
|
5384 |
msgid "%s booked %s event."
|
5385 |
msgstr ""
|
5386 |
|
5387 |
-
#: app/libraries/main.php:
|
5388 |
msgid "Taxonomies"
|
5389 |
msgstr ""
|
5390 |
|
5391 |
-
#: app/libraries/main.php:
|
5392 |
msgid "Category Plural Label"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
-
#: app/libraries/main.php:
|
5396 |
msgid "Category Singular Label"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#: app/libraries/main.php:
|
5400 |
msgid "Label Plural Label"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#: app/libraries/main.php:
|
5404 |
msgid "Label Singular Label"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#: app/libraries/main.php:
|
5408 |
msgid "label"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#: app/libraries/main.php:
|
5412 |
msgid "Location Plural Label"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
-
#: app/libraries/main.php:
|
5416 |
msgid "Location Singular Label"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
-
#: app/libraries/main.php:
|
5420 |
msgid "Organizer Plural Label"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
-
#: app/libraries/main.php:
|
5424 |
msgid "Organizer Singular Label"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#: app/libraries/main.php:
|
5428 |
#, fuzzy
|
5429 |
#| msgid "Search Labels"
|
5430 |
msgid "Speaker Plural Label"
|
5431 |
msgstr "Поиск метки"
|
5432 |
|
5433 |
-
#: app/libraries/main.php:
|
5434 |
#, fuzzy
|
5435 |
#| msgid "Popular Labels"
|
5436 |
msgid "Speaker Singular Label"
|
5437 |
msgstr "Популярные метки"
|
5438 |
|
5439 |
-
#: app/libraries/main.php:
|
5440 |
msgid "Sunday abbreviation"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
-
#: app/libraries/main.php:
|
5444 |
msgid "Monday abbreviation"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
-
#: app/libraries/main.php:
|
5448 |
msgid "Tuesday abbreviation"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
-
#: app/libraries/main.php:
|
5452 |
msgid "Wednesday abbreviation"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#: app/libraries/main.php:
|
5456 |
msgid "Thursday abbreviation"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#: app/libraries/main.php:
|
5460 |
msgid "Friday abbreviation"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: app/libraries/main.php:
|
5464 |
msgid "Saturday abbreviation"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
#: app/libraries/main.php:
|
5468 |
msgid "Others"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#: app/libraries/main.php:
|
5472 |
msgid "Booking Success Message"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: app/libraries/main.php:
|
5476 |
msgid ""
|
5477 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5478 |
"needed, please check your email."
|
@@ -5480,90 +5480,90 @@ msgstr ""
|
|
5480 |
"Благодарим за бронирование. Возможно потребуется дополнительная верификация "
|
5481 |
"ваших билетов. Пожалуйста проверьте вашу электронную почту."
|
5482 |
|
5483 |
-
#: app/libraries/main.php:
|
5484 |
msgid "Register Button"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: app/libraries/main.php:
|
5488 |
-
#: app/skins/carousel/render.php:
|
5489 |
-
#: app/skins/grid/render.php:
|
5490 |
-
#: app/skins/grid/render.php:
|
5491 |
-
#: app/skins/list/render.php:
|
5492 |
-
#: app/skins/masonry/render.php:
|
5493 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5494 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5495 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5496 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5497 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5498 |
-
#: app/skins/slider/render.php:
|
5499 |
-
#: app/skins/slider/render.php:
|
5500 |
msgid "REGISTER"
|
5501 |
msgstr "РЕГИСТРАЦИЯ"
|
5502 |
|
5503 |
-
#: app/libraries/main.php:
|
5504 |
msgid "View Detail Button"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: app/libraries/main.php:
|
5508 |
-
#: app/skins/carousel/render.php:
|
5509 |
-
#: app/skins/grid/render.php:
|
5510 |
-
#: app/skins/grid/render.php:
|
5511 |
-
#: app/skins/list/render.php:
|
5512 |
-
#: app/skins/slider/render.php:
|
5513 |
-
#: app/skins/slider/render.php:
|
5514 |
-
#: app/skins/slider/render.php:
|
5515 |
msgid "View Detail"
|
5516 |
msgstr "Подробнее"
|
5517 |
|
5518 |
-
#: app/libraries/main.php:
|
5519 |
msgid "Event Detail Button"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: app/libraries/main.php:
|
5523 |
msgid "Event Detail"
|
5524 |
msgstr "Детали события"
|
5525 |
|
5526 |
-
#: app/libraries/main.php:
|
5527 |
msgid "More Info Link"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: app/libraries/main.php:
|
5531 |
msgid "Ticket (Singular)"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
-
#: app/libraries/main.php:
|
5535 |
msgid "Tickets (Plural)"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
-
#: app/libraries/main.php:
|
5539 |
msgid "EventON"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
-
#: app/libraries/main.php:
|
5543 |
msgid "The Events Calendar"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: app/libraries/main.php:
|
5547 |
msgid "Events Schedule WP Plugin"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: app/libraries/main.php:
|
5551 |
msgid "Calendarize It"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
-
#: app/libraries/main.php:
|
5555 |
msgid "Confirmed"
|
5556 |
msgstr "Подтверждено"
|
5557 |
|
5558 |
-
#: app/libraries/main.php:
|
5559 |
msgid "Rejected"
|
5560 |
msgstr "Отклонено"
|
5561 |
|
5562 |
-
#: app/libraries/main.php:
|
5563 |
msgid "Pending"
|
5564 |
msgstr "В очереди"
|
5565 |
|
5566 |
-
#: app/libraries/main.php:
|
5567 |
msgid "Waiting"
|
5568 |
msgstr "Ожидает"
|
5569 |
|
@@ -5583,27 +5583,27 @@ msgstr "Ваше бронирование подтверждено."
|
|
5583 |
msgid "A new booking is received."
|
5584 |
msgstr "Получено новое бронирование."
|
5585 |
|
5586 |
-
#: app/libraries/notifications.php:
|
5587 |
msgid "A new event is added."
|
5588 |
msgstr "Новое событие добавлено."
|
5589 |
|
5590 |
-
#: app/libraries/notifications.php:
|
5591 |
msgid "to"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: app/libraries/notifications.php:
|
5595 |
msgid "+ Add to Google Calendar"
|
5596 |
msgstr "+ Добавить в Google Calendar"
|
5597 |
|
5598 |
-
#: app/libraries/notifications.php:
|
5599 |
msgid "+ iCal export"
|
5600 |
msgstr "+ iCal экспорт"
|
5601 |
|
5602 |
-
#: app/libraries/notifications.php:
|
5603 |
msgid "Yes"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: app/libraries/notifications.php:
|
5607 |
msgid "No"
|
5608 |
msgstr ""
|
5609 |
|
@@ -5618,7 +5618,7 @@ msgstr "Контроллер скина не существует."
|
|
5618 |
msgid "All of the day"
|
5619 |
msgstr "На весь день"
|
5620 |
|
5621 |
-
#: app/libraries/skins.php:
|
5622 |
msgid "Ignore month and years"
|
5623 |
msgstr ""
|
5624 |
|
@@ -5660,8 +5660,8 @@ msgid "Fill other attendees information like the first form."
|
|
5660 |
msgstr ""
|
5661 |
|
5662 |
#: app/modules/booking/steps/form.php:162
|
5663 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5664 |
-
#: app/skins/countdown/tpl.php:
|
5665 |
msgid "Next"
|
5666 |
msgstr "Далее"
|
5667 |
|
@@ -5785,11 +5785,11 @@ msgid "No event found!"
|
|
5785 |
msgstr "Событие не найдено!"
|
5786 |
|
5787 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5788 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5789 |
msgid "Load More"
|
5790 |
msgstr "Загрузить ещё"
|
5791 |
|
5792 |
-
#: app/skins/available_spot/tpl.php:
|
5793 |
msgid "Available Spot(s):"
|
5794 |
msgstr ""
|
5795 |
|
@@ -5799,23 +5799,23 @@ msgstr ""
|
|
5799 |
msgid "View All"
|
5800 |
msgstr "Просмотр метки"
|
5801 |
|
5802 |
-
#: app/skins/carousel/render.php:
|
5803 |
-
#: app/skins/countdown/tpl.php:
|
5804 |
-
#: app/skins/list/render.php:
|
5805 |
msgid "EVENT DETAIL"
|
5806 |
msgstr "ДЕТАЛИ СОБЫТИЯ"
|
5807 |
|
5808 |
-
#: app/skins/countdown/tpl.php:
|
5809 |
-
#: app/skins/countdown/tpl.php:
|
5810 |
#, php-format
|
5811 |
msgid "%s Upcoming Event"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
-
#: app/skins/cover/tpl.php:
|
5815 |
msgid "featured event"
|
5816 |
msgstr "избранное событие"
|
5817 |
|
5818 |
-
#: app/skins/daily_view/render.php:
|
5819 |
msgid "No event"
|
5820 |
msgstr "События отсутствуют"
|
5821 |
|
@@ -5828,16 +5828,16 @@ msgid "All"
|
|
5828 |
msgstr ""
|
5829 |
|
5830 |
#: app/skins/monthly_view/calendar.php:66
|
5831 |
-
#: app/skins/monthly_view/calendar.php:
|
5832 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5833 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5834 |
#, php-format
|
5835 |
msgid "Events for %s"
|
5836 |
msgstr "События для %s"
|
5837 |
|
5838 |
-
#: app/skins/monthly_view/calendar.php:
|
5839 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5840 |
-
#: app/skins/timetable/render.php:
|
5841 |
msgid "No Events"
|
5842 |
msgstr "События отсутствуют"
|
5843 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:43+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:43+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
|
8 |
"Language: ru_RU\n"
|
31 |
msgid "Content"
|
32 |
msgstr "Содержание"
|
33 |
|
34 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
35 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
36 |
msgid "Shortcode"
|
37 |
msgstr "Шорткод"
|
38 |
|
61 |
msgid "Event Color"
|
62 |
msgstr "Цвет события"
|
63 |
|
64 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
65 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
66 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
67 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
266 |
msgid "Event"
|
267 |
msgstr "Событие"
|
268 |
|
269 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
270 |
msgid "Add Event"
|
271 |
msgstr "Добавить событие"
|
272 |
|
306 |
#: app/features/mec/meta_boxes/search_form.php:362
|
307 |
#: app/features/mec/meta_boxes/search_form.php:416
|
308 |
#: app/features/mec/meta_boxes/search_form.php:477
|
309 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
310 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
311 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
312 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
313 |
msgid "Category"
|
314 |
msgstr "Категория"
|
315 |
|
316 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
317 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
318 |
+
#: app/libraries/main.php:4363
|
319 |
msgid "Categories"
|
320 |
msgstr "Категории"
|
321 |
|
390 |
#: app/features/events.php:296 app/features/events.php:2053
|
391 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
392 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
393 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
394 |
#: app/widgets/single.php:103
|
395 |
msgid "Event Cost"
|
396 |
msgstr "Цена события"
|
397 |
|
398 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
399 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
400 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
401 |
#: app/skins/single/modern.php:184
|
402 |
msgid "Cost"
|
413 |
#: app/features/events.php:380 app/features/events.php:1237
|
414 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
415 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
416 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
417 |
#: app/modules/booking/steps/form.php:35
|
418 |
msgid "Name"
|
419 |
msgstr "Имя"
|
425 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
426 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
427 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
428 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
429 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
430 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
431 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
750 |
|
751 |
#: app/features/events.php:683 app/features/events.php:703
|
752 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
753 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
754 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
755 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
756 |
msgid "Speakers"
|
757 |
msgstr ""
|
758 |
|
768 |
msgstr "Ссылки события"
|
769 |
|
770 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
771 |
+
#: app/libraries/main.php:4394
|
772 |
msgid "Event Link"
|
773 |
msgstr "Ссылка события"
|
774 |
|
786 |
"умолчанию. Вставьте ссылку включая http(s)://"
|
787 |
|
788 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
789 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
790 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
791 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
792 |
#: app/widgets/single.php:107
|
820 |
#: app/features/events.php:818 app/features/events.php:910
|
821 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
822 |
#: app/modules/booking/steps/tickets.php:40
|
823 |
+
#: app/skins/available_spot/tpl.php:138
|
824 |
msgid "Unlimited"
|
825 |
msgstr "Без ограничений"
|
826 |
|
829 |
msgstr "100"
|
830 |
|
831 |
#: app/features/events.php:838 app/libraries/book.php:60
|
832 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
833 |
msgid "Tickets"
|
834 |
msgstr "Билеты"
|
835 |
|
897 |
#: app/features/mec/meta_boxes/search_form.php:397
|
898 |
#: app/features/mec/meta_boxes/search_form.php:451
|
899 |
#: app/features/mec/meta_boxes/search_form.php:512
|
900 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
901 |
msgid "Label"
|
902 |
msgstr "Метка"
|
903 |
|
1124 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1125 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1126 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1127 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1128 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1129 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1130 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1145 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1146 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1147 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1148 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1149 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1150 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1151 |
#: app/skins/single/modern.php:21
|
1285 |
msgstr "Удалить изображение"
|
1286 |
|
1287 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1288 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1289 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1290 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1291 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1292 |
msgid "Labels"
|
1293 |
msgstr "Метки"
|
1294 |
|
1295 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1296 |
#: app/features/mec/meta_boxes/filter.php:138
|
1297 |
msgid "Tags"
|
1298 |
msgstr "Теги"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1952 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
1953 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1954 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
1955 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1956 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1957 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1958 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
1959 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
1960 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
1961 |
#, fuzzy
|
1962 |
#| msgid "Featured Image"
|
1963 |
msgid "Featured"
|
1964 |
msgstr "Избранное изображение"
|
1965 |
|
1966 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1967 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
1968 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1969 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1970 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
1971 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1972 |
#: app/skins/monthly_view/calendar.php:84
|
1973 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1974 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
1975 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
1976 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
1977 |
msgid "Canceled"
|
1978 |
msgstr "Отменено"
|
1979 |
|
1997 |
msgid "Event %s"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2001 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2002 |
+
#: app/libraries/main.php:4367
|
2003 |
msgid "Locations"
|
2004 |
msgstr "Места"
|
2005 |
|
2095 |
msgid "Don't show map in single event page"
|
2096 |
msgstr "Не отображать карту на странице одиночного события"
|
2097 |
|
2098 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2099 |
#, fuzzy
|
2100 |
#| msgid "Search Locations"
|
2101 |
msgid "Other Locations"
|
2106 |
"You can select extra locations in addition to main location if you like."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: app/features/mec.php:144
|
2110 |
msgid ""
|
2111 |
"Activation faild. Please check your purchase code or license type."
|
2112 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: app/features/mec.php:144
|
2116 |
msgid "Troubleshooting"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: app/features/mec.php:179
|
2120 |
msgid ""
|
2121 |
"Your options is not in JSON format. Please insert correct options in this "
|
2122 |
"field and try again."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: app/features/mec.php:183
|
2126 |
#, fuzzy
|
2127 |
#| msgid "Your booking cannot verify!"
|
2128 |
msgid "Your options field can not be empty!"
|
2129 |
msgstr "Ваше бронирование не может быть верифицировано!"
|
2130 |
|
2131 |
+
#: app/features/mec.php:187
|
2132 |
#, fuzzy
|
2133 |
#| msgid "Your booking successfully verified."
|
2134 |
msgid "Your options imported successfuly."
|
2135 |
msgstr "Ваше бронирование успешно верифицировано."
|
2136 |
|
2137 |
+
#: app/features/mec.php:274
|
2138 |
#, fuzzy
|
2139 |
#| msgid "Support"
|
2140 |
msgid "MEC - Support"
|
2141 |
msgstr "Поддержка"
|
2142 |
|
2143 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2144 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2145 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2146 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2149 |
msgid "Support"
|
2150 |
msgstr "Поддержка"
|
2151 |
|
2152 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2153 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2154 |
+
#: app/libraries/main.php:4369
|
2155 |
msgid "Organizers"
|
2156 |
msgstr "Оранизаторы"
|
2157 |
|
2158 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2159 |
#: app/features/mec/dashboard.php:164
|
2160 |
msgid "Shortcodes"
|
2161 |
msgstr "Шорткоды"
|
2162 |
|
2163 |
+
#: app/features/mec.php:303
|
2164 |
msgid "MEC - Settings"
|
2165 |
msgstr "MEC - Настройки"
|
2166 |
|
2167 |
+
#: app/features/mec.php:304
|
2168 |
#, fuzzy
|
2169 |
#| msgid "MEC - Settings"
|
2170 |
msgid "MEC - Addons"
|
2171 |
msgstr "MEC - Настройки"
|
2172 |
|
2173 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2174 |
msgid "Addons"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: app/features/mec.php:321
|
2178 |
msgid "Add Shortcode"
|
2179 |
msgstr "Добавить шорткод"
|
2180 |
|
2181 |
+
#: app/features/mec.php:322
|
2182 |
msgid "Add New Shortcode"
|
2183 |
msgstr "Добавить новый Шорткод"
|
2184 |
|
2185 |
+
#: app/features/mec.php:323
|
2186 |
msgid "No shortcodes found!"
|
2187 |
msgstr "Не найдено ни одного шорткода!"
|
2188 |
|
2189 |
+
#: app/features/mec.php:324
|
2190 |
msgid "All Shortcodes"
|
2191 |
msgstr "Все шорткоды"
|
2192 |
|
2193 |
+
#: app/features/mec.php:325
|
2194 |
msgid "Edit shortcodes"
|
2195 |
msgstr "Редактировать шорткод"
|
2196 |
|
2197 |
+
#: app/features/mec.php:326
|
2198 |
msgid "No shortcodes found in Trash!"
|
2199 |
msgstr "В корзине не найдено ни одного шорткода!"
|
2200 |
|
2201 |
+
#: app/features/mec.php:373
|
2202 |
msgid "Display Options"
|
2203 |
msgstr "Опции отображения"
|
2204 |
|
2205 |
+
#: app/features/mec.php:374
|
2206 |
msgid "Filter Options"
|
2207 |
msgstr "Опции фильтра"
|
2208 |
|
2209 |
+
#: app/features/mec.php:376
|
2210 |
msgid "Search Form"
|
2211 |
msgstr "Форма поиска"
|
2212 |
|
2214 |
msgid "Display content's images as Popup"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: app/features/mec.php:764
|
2218 |
msgid "Single Event Display Method"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: app/features/mec.php:769
|
2222 |
msgid "Separate Window"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: app/features/mec.php:770
|
2226 |
msgid "Modal 1"
|
2227 |
msgstr ""
|
2228 |
|
3171 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3172 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3173 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3174 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3175 |
+
#: app/libraries/skins.php:829
|
3176 |
msgid "Speaker"
|
3177 |
msgstr ""
|
3178 |
|
3184 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3185 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3186 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3187 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3188 |
#, fuzzy
|
3189 |
#| msgid "Tags"
|
3190 |
msgid "Tag"
|
3693 |
msgid "Remove suffix from calendars"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3697 |
msgid "Weekdays"
|
3698 |
msgstr ""
|
3699 |
|
4374 |
msgstr ""
|
4375 |
|
4376 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4377 |
+
#: app/libraries/main.php:4558
|
4378 |
msgid "Verified"
|
4379 |
msgstr "Проверено"
|
4380 |
|
4929 |
msgid "eg. https://webnus.net"
|
4930 |
msgstr ""
|
4931 |
|
4932 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
4933 |
#: app/skins/single.php:194
|
4934 |
msgid "Other Organizers"
|
4935 |
msgstr ""
|
4967 |
msgstr ""
|
4968 |
|
4969 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4970 |
+
#: app/libraries/main.php:4398
|
4971 |
msgid "Ticket"
|
4972 |
msgstr "Билет"
|
4973 |
|
5044 |
msgid "Discount"
|
5045 |
msgstr "Скидка"
|
5046 |
|
5047 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5048 |
+
#: app/modules/booking/default.php:381
|
5049 |
msgid "Download Invoice"
|
5050 |
msgstr ""
|
5051 |
|
5073 |
msgstr "день"
|
5074 |
|
5075 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5076 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5077 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5078 |
msgid "days"
|
5079 |
msgstr "дни"
|
5080 |
|
5083 |
msgstr "час"
|
5084 |
|
5085 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5086 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5087 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5088 |
msgid "hours"
|
5089 |
msgstr "часы"
|
5090 |
|
5093 |
msgstr "минута"
|
5094 |
|
5095 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5096 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5097 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5098 |
msgid "minutes"
|
5099 |
msgstr "минуты"
|
5100 |
|
5103 |
msgstr "секунда"
|
5104 |
|
5105 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5106 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5107 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5108 |
msgid "seconds"
|
5109 |
msgstr "секунды"
|
5110 |
|
5116 |
msgid "Custom sidebar for single and modal page of MEC."
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: app/libraries/feed.php:83
|
5120 |
msgid "There is no excerpt because this is a protected post."
|
5121 |
msgstr "Исключения отсутствуют так как данная запись защищена."
|
5122 |
|
5175 |
msgid "Slider View"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5179 |
msgid "SU"
|
5180 |
msgstr "Вс"
|
5181 |
|
5182 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5183 |
msgid "MO"
|
5184 |
msgstr "Пн"
|
5185 |
|
5186 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5187 |
msgid "TU"
|
5188 |
msgstr "Вт"
|
5189 |
|
5190 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5191 |
msgid "WE"
|
5192 |
msgstr "Ср"
|
5193 |
|
5194 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5195 |
msgid "TH"
|
5196 |
msgstr "Чт"
|
5197 |
|
5198 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5199 |
msgid "FR"
|
5200 |
msgstr "Пт"
|
5201 |
|
5202 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5203 |
msgid "SA"
|
5204 |
msgstr "Сб"
|
5205 |
|
5384 |
msgid "%s booked %s event."
|
5385 |
msgstr ""
|
5386 |
|
5387 |
+
#: app/libraries/main.php:4361
|
5388 |
msgid "Taxonomies"
|
5389 |
msgstr ""
|
5390 |
|
5391 |
+
#: app/libraries/main.php:4363
|
5392 |
msgid "Category Plural Label"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
+
#: app/libraries/main.php:4364
|
5396 |
msgid "Category Singular Label"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
+
#: app/libraries/main.php:4365
|
5400 |
msgid "Label Plural Label"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: app/libraries/main.php:4366
|
5404 |
msgid "Label Singular Label"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: app/libraries/main.php:4366
|
5408 |
msgid "label"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: app/libraries/main.php:4367
|
5412 |
msgid "Location Plural Label"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
+
#: app/libraries/main.php:4368
|
5416 |
msgid "Location Singular Label"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: app/libraries/main.php:4369
|
5420 |
msgid "Organizer Plural Label"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
+
#: app/libraries/main.php:4370
|
5424 |
msgid "Organizer Singular Label"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
+
#: app/libraries/main.php:4371
|
5428 |
#, fuzzy
|
5429 |
#| msgid "Search Labels"
|
5430 |
msgid "Speaker Plural Label"
|
5431 |
msgstr "Поиск метки"
|
5432 |
|
5433 |
+
#: app/libraries/main.php:4372
|
5434 |
#, fuzzy
|
5435 |
#| msgid "Popular Labels"
|
5436 |
msgid "Speaker Singular Label"
|
5437 |
msgstr "Популярные метки"
|
5438 |
|
5439 |
+
#: app/libraries/main.php:4378
|
5440 |
msgid "Sunday abbreviation"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
+
#: app/libraries/main.php:4379
|
5444 |
msgid "Monday abbreviation"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
+
#: app/libraries/main.php:4380
|
5448 |
msgid "Tuesday abbreviation"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
+
#: app/libraries/main.php:4381
|
5452 |
msgid "Wednesday abbreviation"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
+
#: app/libraries/main.php:4382
|
5456 |
msgid "Thursday abbreviation"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
+
#: app/libraries/main.php:4383
|
5460 |
msgid "Friday abbreviation"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: app/libraries/main.php:4384
|
5464 |
msgid "Saturday abbreviation"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: app/libraries/main.php:4388
|
5468 |
msgid "Others"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: app/libraries/main.php:4390
|
5472 |
msgid "Booking Success Message"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
+
#: app/libraries/main.php:4390
|
5476 |
msgid ""
|
5477 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5478 |
"needed, please check your email."
|
5480 |
"Благодарим за бронирование. Возможно потребуется дополнительная верификация "
|
5481 |
"ваших билетов. Пожалуйста проверьте вашу электронную почту."
|
5482 |
|
5483 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5484 |
msgid "Register Button"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5488 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5489 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5490 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5491 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5492 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5493 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5494 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5495 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5496 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5497 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5498 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5499 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5500 |
msgid "REGISTER"
|
5501 |
msgstr "РЕГИСТРАЦИЯ"
|
5502 |
|
5503 |
+
#: app/libraries/main.php:4392
|
5504 |
msgid "View Detail Button"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5508 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5509 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5510 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5511 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5512 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5513 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5514 |
+
#: app/skins/slider/render.php:305
|
5515 |
msgid "View Detail"
|
5516 |
msgstr "Подробнее"
|
5517 |
|
5518 |
+
#: app/libraries/main.php:4393
|
5519 |
msgid "Event Detail Button"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5523 |
msgid "Event Detail"
|
5524 |
msgstr "Детали события"
|
5525 |
|
5526 |
+
#: app/libraries/main.php:4395
|
5527 |
msgid "More Info Link"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
+
#: app/libraries/main.php:4398
|
5531 |
msgid "Ticket (Singular)"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
+
#: app/libraries/main.php:4399
|
5535 |
msgid "Tickets (Plural)"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
+
#: app/libraries/main.php:4466
|
5539 |
msgid "EventON"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
+
#: app/libraries/main.php:4467
|
5543 |
msgid "The Events Calendar"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
+
#: app/libraries/main.php:4468
|
5547 |
msgid "Events Schedule WP Plugin"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: app/libraries/main.php:4469
|
5551 |
msgid "Calendarize It"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: app/libraries/main.php:4543
|
5555 |
msgid "Confirmed"
|
5556 |
msgstr "Подтверждено"
|
5557 |
|
5558 |
+
#: app/libraries/main.php:4544
|
5559 |
msgid "Rejected"
|
5560 |
msgstr "Отклонено"
|
5561 |
|
5562 |
+
#: app/libraries/main.php:4545
|
5563 |
msgid "Pending"
|
5564 |
msgstr "В очереди"
|
5565 |
|
5566 |
+
#: app/libraries/main.php:4560
|
5567 |
msgid "Waiting"
|
5568 |
msgstr "Ожидает"
|
5569 |
|
5583 |
msgid "A new booking is received."
|
5584 |
msgstr "Получено новое бронирование."
|
5585 |
|
5586 |
+
#: app/libraries/notifications.php:338
|
5587 |
msgid "A new event is added."
|
5588 |
msgstr "Новое событие добавлено."
|
5589 |
|
5590 |
+
#: app/libraries/notifications.php:509
|
5591 |
msgid "to"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5595 |
msgid "+ Add to Google Calendar"
|
5596 |
msgstr "+ Добавить в Google Calendar"
|
5597 |
|
5598 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5599 |
msgid "+ iCal export"
|
5600 |
msgstr "+ iCal экспорт"
|
5601 |
|
5602 |
+
#: app/libraries/notifications.php:582
|
5603 |
msgid "Yes"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
+
#: app/libraries/notifications.php:582
|
5607 |
msgid "No"
|
5608 |
msgstr ""
|
5609 |
|
5618 |
msgid "All of the day"
|
5619 |
msgstr "На весь день"
|
5620 |
|
5621 |
+
#: app/libraries/skins.php:902
|
5622 |
msgid "Ignore month and years"
|
5623 |
msgstr ""
|
5624 |
|
5660 |
msgstr ""
|
5661 |
|
5662 |
#: app/modules/booking/steps/form.php:162
|
5663 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5664 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5665 |
msgid "Next"
|
5666 |
msgstr "Далее"
|
5667 |
|
5785 |
msgstr "Событие не найдено!"
|
5786 |
|
5787 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5788 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5789 |
msgid "Load More"
|
5790 |
msgstr "Загрузить ещё"
|
5791 |
|
5792 |
+
#: app/skins/available_spot/tpl.php:138
|
5793 |
msgid "Available Spot(s):"
|
5794 |
msgstr ""
|
5795 |
|
5799 |
msgid "View All"
|
5800 |
msgstr "Просмотр метки"
|
5801 |
|
5802 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5803 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5804 |
+
#: app/skins/list/render.php:119
|
5805 |
msgid "EVENT DETAIL"
|
5806 |
msgstr "ДЕТАЛИ СОБЫТИЯ"
|
5807 |
|
5808 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5809 |
+
#: app/skins/countdown/tpl.php:206
|
5810 |
#, php-format
|
5811 |
msgid "%s Upcoming Event"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
+
#: app/skins/cover/tpl.php:81
|
5815 |
msgid "featured event"
|
5816 |
msgstr "избранное событие"
|
5817 |
|
5818 |
+
#: app/skins/daily_view/render.php:78
|
5819 |
msgid "No event"
|
5820 |
msgstr "События отсутствуют"
|
5821 |
|
5828 |
msgstr ""
|
5829 |
|
5830 |
#: app/skins/monthly_view/calendar.php:66
|
5831 |
+
#: app/skins/monthly_view/calendar.php:152
|
5832 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5833 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5834 |
#, php-format
|
5835 |
msgid "Events for %s"
|
5836 |
msgstr "События для %s"
|
5837 |
|
5838 |
+
#: app/skins/monthly_view/calendar.php:154
|
5839 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5840 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5841 |
msgid "No Events"
|
5842 |
msgstr "События отсутствуют"
|
5843 |
|
languages/modern-events-calendar-lite-sv_SE.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-sv_SE.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: Mats Vallström <walle@mtre.se>\n"
|
7 |
"Language-Team: Mats Vallström <walle@mtre.se>\n"
|
8 |
"Language: sv_SE\n"
|
@@ -30,8 +30,8 @@ msgstr "Modern Events Calendar"
|
|
30 |
msgid "Content"
|
31 |
msgstr "Innehåll"
|
32 |
|
33 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
34 |
-
#: app/features/mec.php:
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Shortcode"
|
37 |
|
@@ -62,7 +62,7 @@ msgstr "Markera allt"
|
|
62 |
msgid "Event Color"
|
63 |
msgstr "Evenemangs-färg"
|
64 |
|
65 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
66 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
67 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
68 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -267,7 +267,7 @@ msgstr "Evenemang"
|
|
267 |
msgid "Event"
|
268 |
msgstr "Evenemang"
|
269 |
|
270 |
-
#: app/features/events.php:134 app/features/mec.php:
|
271 |
msgid "Add Event"
|
272 |
msgstr "Lägg till evenemang"
|
273 |
|
@@ -307,16 +307,16 @@ msgstr "Inga raderade evenemang hittades!"
|
|
307 |
#: app/features/mec/meta_boxes/search_form.php:362
|
308 |
#: app/features/mec/meta_boxes/search_form.php:416
|
309 |
#: app/features/mec/meta_boxes/search_form.php:477
|
310 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
311 |
-
#: app/libraries/skins.php:
|
312 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
313 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
314 |
msgid "Category"
|
315 |
msgstr "Kategori"
|
316 |
|
317 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
318 |
-
#: app/features/mec.php:
|
319 |
-
#: app/libraries/main.php:
|
320 |
msgid "Categories"
|
321 |
msgstr "Kategorier"
|
322 |
|
@@ -391,13 +391,13 @@ msgstr "Evenemangsdetaljer"
|
|
391 |
#: app/features/events.php:296 app/features/events.php:2053
|
392 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
393 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
394 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
395 |
#: app/widgets/single.php:103
|
396 |
msgid "Event Cost"
|
397 |
msgstr "Evenemangskostnader"
|
398 |
|
399 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
400 |
-
#: app/libraries/main.php:
|
401 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
402 |
#: app/skins/single/modern.php:184
|
403 |
msgid "Cost"
|
@@ -414,7 +414,7 @@ msgstr "Gäst-data"
|
|
414 |
#: app/features/events.php:380 app/features/events.php:1237
|
415 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
417 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
418 |
#: app/modules/booking/steps/form.php:35
|
419 |
msgid "Name"
|
420 |
msgstr "Namn"
|
@@ -426,7 +426,7 @@ msgstr "Namn"
|
|
426 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
427 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
428 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
429 |
-
#: app/libraries/notifications.php:
|
430 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
431 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -753,9 +753,9 @@ msgstr "Beskrivning"
|
|
753 |
|
754 |
#: app/features/events.php:683 app/features/events.php:703
|
755 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
756 |
-
#: app/features/mec.php:
|
757 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
758 |
-
#: app/libraries/main.php:
|
759 |
msgid "Speakers"
|
760 |
msgstr ""
|
761 |
|
@@ -771,7 +771,7 @@ msgid "Event Links"
|
|
771 |
msgstr "Evenemangs-länkar"
|
772 |
|
773 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
774 |
-
#: app/libraries/main.php:
|
775 |
msgid "Event Link"
|
776 |
msgstr "Evenemangs-länk"
|
777 |
|
@@ -789,7 +789,7 @@ msgstr ""
|
|
789 |
"länk inklusive http(s)://"
|
790 |
|
791 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
792 |
-
#: app/libraries/main.php:
|
793 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
794 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
795 |
#: app/widgets/single.php:107
|
@@ -823,7 +823,7 @@ msgstr "Totala boknings-begränsningar"
|
|
823 |
#: app/features/events.php:818 app/features/events.php:910
|
824 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
825 |
#: app/modules/booking/steps/tickets.php:40
|
826 |
-
#: app/skins/available_spot/tpl.php:
|
827 |
msgid "Unlimited"
|
828 |
msgstr "Obegränsad"
|
829 |
|
@@ -832,7 +832,7 @@ msgid "100"
|
|
832 |
msgstr "100"
|
833 |
|
834 |
#: app/features/events.php:838 app/libraries/book.php:60
|
835 |
-
#: app/libraries/main.php:
|
836 |
msgid "Tickets"
|
837 |
msgstr "Biljetter"
|
838 |
|
@@ -900,7 +900,7 @@ msgstr "Pris-märkning"
|
|
900 |
#: app/features/mec/meta_boxes/search_form.php:397
|
901 |
#: app/features/mec/meta_boxes/search_form.php:451
|
902 |
#: app/features/mec/meta_boxes/search_form.php:512
|
903 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
904 |
msgid "Label"
|
905 |
msgstr "Etikett"
|
906 |
|
@@ -1127,7 +1127,7 @@ msgstr "arrangörer"
|
|
1127 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1128 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1130 |
-
#: app/libraries/main.php:
|
1131 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1132 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1133 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1148,7 +1148,7 @@ msgstr "Platser"
|
|
1148 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1149 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1150 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1151 |
-
#: app/libraries/main.php:
|
1152 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1153 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1154 |
#: app/skins/single/modern.php:21
|
@@ -1288,14 +1288,14 @@ msgid "Remove Image"
|
|
1288 |
msgstr "Ta bort bild"
|
1289 |
|
1290 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1291 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1292 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1293 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1294 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1295 |
msgid "Labels"
|
1296 |
msgstr "Etiketter"
|
1297 |
|
1298 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1299 |
#: app/features/mec/meta_boxes/filter.php:138
|
1300 |
msgid "Tags"
|
1301 |
msgstr "Taggar"
|
@@ -1992,31 +1992,31 @@ msgid "Normal"
|
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1995 |
-
#: app/skins/agenda/render.php:
|
1996 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1997 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
1998 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1999 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2000 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2001 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
2002 |
-
#: app/skins/timetable/render.php:
|
2003 |
-
#: app/skins/weekly_view/render.php:
|
2004 |
#, fuzzy
|
2005 |
#| msgid "Featured Image"
|
2006 |
msgid "Featured"
|
2007 |
msgstr "Utvald bild"
|
2008 |
|
2009 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2010 |
-
#: app/libraries/main.php:
|
2011 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2012 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2013 |
-
#: app/skins/daily_view/render.php:
|
2014 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2015 |
#: app/skins/monthly_view/calendar.php:84
|
2016 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2017 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
2018 |
-
#: app/skins/timetable/render.php:
|
2019 |
-
#: app/skins/weekly_view/render.php:
|
2020 |
msgid "Canceled"
|
2021 |
msgstr "Avbruten"
|
2022 |
|
@@ -2040,9 +2040,9 @@ msgstr "Slug"
|
|
2040 |
msgid "Event %s"
|
2041 |
msgstr "Evenemang %s"
|
2042 |
|
2043 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2044 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2045 |
-
#: app/libraries/main.php:
|
2046 |
msgid "Locations"
|
2047 |
msgstr "Platser"
|
2048 |
|
@@ -2138,7 +2138,7 @@ msgstr "Välj bild"
|
|
2138 |
msgid "Don't show map in single event page"
|
2139 |
msgstr "Visa Inte karta på sidan för enstaka evenemang"
|
2140 |
|
2141 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2142 |
#, fuzzy
|
2143 |
#| msgid "Search Locations"
|
2144 |
msgid "Other Locations"
|
@@ -2149,41 +2149,41 @@ msgid ""
|
|
2149 |
"You can select extra locations in addition to main location if you like."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: app/features/mec.php:
|
2153 |
msgid ""
|
2154 |
"Activation faild. Please check your purchase code or license type."
|
2155 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: app/features/mec.php:
|
2159 |
msgid "Troubleshooting"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: app/features/mec.php:
|
2163 |
msgid ""
|
2164 |
"Your options is not in JSON format. Please insert correct options in this "
|
2165 |
"field and try again."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: app/features/mec.php:
|
2169 |
#, fuzzy
|
2170 |
#| msgid "Your booking cannot verify!"
|
2171 |
msgid "Your options field can not be empty!"
|
2172 |
msgstr "Din bokning kan inte verifieras!"
|
2173 |
|
2174 |
-
#: app/features/mec.php:
|
2175 |
#, fuzzy
|
2176 |
#| msgid "Your booking successfully verified."
|
2177 |
msgid "Your options imported successfuly."
|
2178 |
msgstr "Din bokning är bekräftad."
|
2179 |
|
2180 |
-
#: app/features/mec.php:
|
2181 |
#, fuzzy
|
2182 |
#| msgid "Support"
|
2183 |
msgid "MEC - Support"
|
2184 |
msgstr "Support"
|
2185 |
|
2186 |
-
#: app/features/mec.php:
|
2187 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2188 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2189 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2192,64 +2192,64 @@ msgstr "Support"
|
|
2192 |
msgid "Support"
|
2193 |
msgstr "Support"
|
2194 |
|
2195 |
-
#: app/features/mec.php:
|
2196 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2197 |
-
#: app/libraries/main.php:
|
2198 |
msgid "Organizers"
|
2199 |
msgstr "Arrangörer"
|
2200 |
|
2201 |
-
#: app/features/mec.php:
|
2202 |
#: app/features/mec/dashboard.php:164
|
2203 |
msgid "Shortcodes"
|
2204 |
msgstr "Shortcodes"
|
2205 |
|
2206 |
-
#: app/features/mec.php:
|
2207 |
msgid "MEC - Settings"
|
2208 |
msgstr "MEC - Inställningar"
|
2209 |
|
2210 |
-
#: app/features/mec.php:
|
2211 |
#, fuzzy
|
2212 |
#| msgid "MEC - Settings"
|
2213 |
msgid "MEC - Addons"
|
2214 |
msgstr "MEC - Inställningar"
|
2215 |
|
2216 |
-
#: app/features/mec.php:
|
2217 |
msgid "Addons"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: app/features/mec.php:
|
2221 |
msgid "Add Shortcode"
|
2222 |
msgstr "Lägg till shortcode"
|
2223 |
|
2224 |
-
#: app/features/mec.php:
|
2225 |
msgid "Add New Shortcode"
|
2226 |
msgstr "Lägg till en ny shortcode"
|
2227 |
|
2228 |
-
#: app/features/mec.php:
|
2229 |
msgid "No shortcodes found!"
|
2230 |
msgstr "Inga shortcodes hittades!"
|
2231 |
|
2232 |
-
#: app/features/mec.php:
|
2233 |
msgid "All Shortcodes"
|
2234 |
msgstr "Alla shortcodes"
|
2235 |
|
2236 |
-
#: app/features/mec.php:
|
2237 |
msgid "Edit shortcodes"
|
2238 |
msgstr "Redigera shortcodes"
|
2239 |
|
2240 |
-
#: app/features/mec.php:
|
2241 |
msgid "No shortcodes found in Trash!"
|
2242 |
msgstr "Inga raderade shortcodes hittades!"
|
2243 |
|
2244 |
-
#: app/features/mec.php:
|
2245 |
msgid "Display Options"
|
2246 |
msgstr "Visningsalternativ"
|
2247 |
|
2248 |
-
#: app/features/mec.php:
|
2249 |
msgid "Filter Options"
|
2250 |
msgstr "Filteralternativ"
|
2251 |
|
2252 |
-
#: app/features/mec.php:
|
2253 |
msgid "Search Form"
|
2254 |
msgstr "Sökformulär"
|
2255 |
|
@@ -2257,15 +2257,15 @@ msgstr "Sökformulär"
|
|
2257 |
msgid "Display content's images as Popup"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: app/features/mec.php:
|
2261 |
msgid "Single Event Display Method"
|
2262 |
msgstr "Enstaka evenemangs visnings-format"
|
2263 |
|
2264 |
-
#: app/features/mec.php:
|
2265 |
msgid "Separate Window"
|
2266 |
msgstr "Separat fönster"
|
2267 |
|
2268 |
-
#: app/features/mec.php:
|
2269 |
msgid "Modal 1"
|
2270 |
msgstr "Stil 1"
|
2271 |
|
@@ -3221,8 +3221,8 @@ msgstr "Avaktiverad"
|
|
3221 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3222 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3223 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3224 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3225 |
-
#: app/libraries/skins.php:
|
3226 |
msgid "Speaker"
|
3227 |
msgstr ""
|
3228 |
|
@@ -3234,7 +3234,7 @@ msgstr ""
|
|
3234 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3235 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3236 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3237 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3238 |
#, fuzzy
|
3239 |
#| msgid "Tags"
|
3240 |
msgid "Tag"
|
@@ -3744,7 +3744,7 @@ msgstr "Utelämna datum-ändelse"
|
|
3744 |
msgid "Remove suffix from calendars"
|
3745 |
msgstr "Ta bort ändelser från kalendrar"
|
3746 |
|
3747 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3748 |
msgid "Weekdays"
|
3749 |
msgstr "Veckodagar"
|
3750 |
|
@@ -4444,7 +4444,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4444 |
msgstr ""
|
4445 |
|
4446 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4447 |
-
#: app/libraries/main.php:
|
4448 |
msgid "Verified"
|
4449 |
msgstr "Verifierad"
|
4450 |
|
@@ -5002,7 +5002,7 @@ msgstr "t.ex. tage@testlund.se"
|
|
5002 |
msgid "eg. https://webnus.net"
|
5003 |
msgstr "http://webnus.biz"
|
5004 |
|
5005 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
5006 |
#: app/skins/single.php:194
|
5007 |
msgid "Other Organizers"
|
5008 |
msgstr ""
|
@@ -5040,7 +5040,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
5040 |
msgstr ""
|
5041 |
|
5042 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5043 |
-
#: app/libraries/main.php:
|
5044 |
msgid "Ticket"
|
5045 |
msgstr "Biljett"
|
5046 |
|
@@ -5119,8 +5119,8 @@ msgstr ""
|
|
5119 |
msgid "Discount"
|
5120 |
msgstr "Avdrag"
|
5121 |
|
5122 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5123 |
-
#: app/modules/booking/default.php:
|
5124 |
msgid "Download Invoice"
|
5125 |
msgstr ""
|
5126 |
|
@@ -5148,8 +5148,8 @@ msgid "day"
|
|
5148 |
msgstr "dag"
|
5149 |
|
5150 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5151 |
-
#: app/skins/available_spot/tpl.php:
|
5152 |
-
#: app/skins/countdown/tpl.php:
|
5153 |
msgid "days"
|
5154 |
msgstr "dagar"
|
5155 |
|
@@ -5158,8 +5158,8 @@ msgid "hour"
|
|
5158 |
msgstr "timme"
|
5159 |
|
5160 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5161 |
-
#: app/skins/available_spot/tpl.php:
|
5162 |
-
#: app/skins/countdown/tpl.php:
|
5163 |
msgid "hours"
|
5164 |
msgstr "timmar"
|
5165 |
|
@@ -5168,8 +5168,8 @@ msgid "minute"
|
|
5168 |
msgstr "minut"
|
5169 |
|
5170 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5171 |
-
#: app/skins/available_spot/tpl.php:
|
5172 |
-
#: app/skins/countdown/tpl.php:
|
5173 |
msgid "minutes"
|
5174 |
msgstr "minuter"
|
5175 |
|
@@ -5178,8 +5178,8 @@ msgid "second"
|
|
5178 |
msgstr "andra"
|
5179 |
|
5180 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5181 |
-
#: app/skins/available_spot/tpl.php:
|
5182 |
-
#: app/skins/countdown/tpl.php:
|
5183 |
msgid "seconds"
|
5184 |
msgstr "sekunder"
|
5185 |
|
@@ -5191,7 +5191,7 @@ msgstr ""
|
|
5191 |
msgid "Custom sidebar for single and modal page of MEC."
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: app/libraries/feed.php:
|
5195 |
msgid "There is no excerpt because this is a protected post."
|
5196 |
msgstr "Det finns inget utdrag eftersom det här är ett skyddat inlägg."
|
5197 |
|
@@ -5250,31 +5250,31 @@ msgstr "Karusell-vy (Carousel View)"
|
|
5250 |
msgid "Slider View"
|
5251 |
msgstr "Bildspel"
|
5252 |
|
5253 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5254 |
msgid "SU"
|
5255 |
msgstr "Sön"
|
5256 |
|
5257 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5258 |
msgid "MO"
|
5259 |
msgstr "Mån"
|
5260 |
|
5261 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5262 |
msgid "TU"
|
5263 |
msgstr "Tis"
|
5264 |
|
5265 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5266 |
msgid "WE"
|
5267 |
msgstr "Ons"
|
5268 |
|
5269 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5270 |
msgid "TH"
|
5271 |
msgstr "Tor"
|
5272 |
|
5273 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5274 |
msgid "FR"
|
5275 |
msgstr "Fre"
|
5276 |
|
5277 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5278 |
msgid "SA"
|
5279 |
msgstr "Lör"
|
5280 |
|
@@ -5459,95 +5459,95 @@ msgstr "Bokade ett evenemang."
|
|
5459 |
msgid "%s booked %s event."
|
5460 |
msgstr "%s bokade %s evenemang."
|
5461 |
|
5462 |
-
#: app/libraries/main.php:
|
5463 |
msgid "Taxonomies"
|
5464 |
msgstr "Taxonomier"
|
5465 |
|
5466 |
-
#: app/libraries/main.php:
|
5467 |
msgid "Category Plural Label"
|
5468 |
msgstr "Kategori (plural etikett)"
|
5469 |
|
5470 |
-
#: app/libraries/main.php:
|
5471 |
msgid "Category Singular Label"
|
5472 |
msgstr "Kategori (singular etikett)"
|
5473 |
|
5474 |
-
#: app/libraries/main.php:
|
5475 |
msgid "Label Plural Label"
|
5476 |
msgstr "Etikett (plural etikett)"
|
5477 |
|
5478 |
-
#: app/libraries/main.php:
|
5479 |
msgid "Label Singular Label"
|
5480 |
msgstr "Etikett (singular etikett)"
|
5481 |
|
5482 |
-
#: app/libraries/main.php:
|
5483 |
msgid "label"
|
5484 |
msgstr "etikett"
|
5485 |
|
5486 |
-
#: app/libraries/main.php:
|
5487 |
msgid "Location Plural Label"
|
5488 |
msgstr "Plats (plural etikett)"
|
5489 |
|
5490 |
-
#: app/libraries/main.php:
|
5491 |
msgid "Location Singular Label"
|
5492 |
msgstr "Plats (singular etikett)"
|
5493 |
|
5494 |
-
#: app/libraries/main.php:
|
5495 |
msgid "Organizer Plural Label"
|
5496 |
msgstr "Arrangör (plural etikett)"
|
5497 |
|
5498 |
-
#: app/libraries/main.php:
|
5499 |
msgid "Organizer Singular Label"
|
5500 |
msgstr "Arrangör (singular etikett)"
|
5501 |
|
5502 |
-
#: app/libraries/main.php:
|
5503 |
#, fuzzy
|
5504 |
#| msgid "Label Plural Label"
|
5505 |
msgid "Speaker Plural Label"
|
5506 |
msgstr "Etikett (plural etikett)"
|
5507 |
|
5508 |
-
#: app/libraries/main.php:
|
5509 |
#, fuzzy
|
5510 |
#| msgid "Label Singular Label"
|
5511 |
msgid "Speaker Singular Label"
|
5512 |
msgstr "Etikett (singular etikett)"
|
5513 |
|
5514 |
-
#: app/libraries/main.php:
|
5515 |
msgid "Sunday abbreviation"
|
5516 |
msgstr "Söndag förkortning"
|
5517 |
|
5518 |
-
#: app/libraries/main.php:
|
5519 |
msgid "Monday abbreviation"
|
5520 |
msgstr "Måndag förkortning"
|
5521 |
|
5522 |
-
#: app/libraries/main.php:
|
5523 |
msgid "Tuesday abbreviation"
|
5524 |
msgstr "Tisdag förkortning"
|
5525 |
|
5526 |
-
#: app/libraries/main.php:
|
5527 |
msgid "Wednesday abbreviation"
|
5528 |
msgstr "Onsdag förkortning"
|
5529 |
|
5530 |
-
#: app/libraries/main.php:
|
5531 |
msgid "Thursday abbreviation"
|
5532 |
msgstr "Torsdag förkortning"
|
5533 |
|
5534 |
-
#: app/libraries/main.php:
|
5535 |
msgid "Friday abbreviation"
|
5536 |
msgstr "Fredag förkortning"
|
5537 |
|
5538 |
-
#: app/libraries/main.php:
|
5539 |
msgid "Saturday abbreviation"
|
5540 |
msgstr "Lördag förkortning"
|
5541 |
|
5542 |
-
#: app/libraries/main.php:
|
5543 |
msgid "Others"
|
5544 |
msgstr "Andra"
|
5545 |
|
5546 |
-
#: app/libraries/main.php:
|
5547 |
msgid "Booking Success Message"
|
5548 |
msgstr "Meddelande om Framgångsrik bokning"
|
5549 |
|
5550 |
-
#: app/libraries/main.php:
|
5551 |
msgid ""
|
5552 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5553 |
"needed, please check your email."
|
@@ -5555,90 +5555,90 @@ msgstr ""
|
|
5555 |
"Tack för din bokning. Dina biljetter är bokade. Verifikation kan behövas, "
|
5556 |
"kontrollera din e-post."
|
5557 |
|
5558 |
-
#: app/libraries/main.php:
|
5559 |
msgid "Register Button"
|
5560 |
msgstr "Knappen Registrera"
|
5561 |
|
5562 |
-
#: app/libraries/main.php:
|
5563 |
-
#: app/skins/carousel/render.php:
|
5564 |
-
#: app/skins/grid/render.php:
|
5565 |
-
#: app/skins/grid/render.php:
|
5566 |
-
#: app/skins/list/render.php:
|
5567 |
-
#: app/skins/masonry/render.php:
|
5568 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5569 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5570 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5571 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5572 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5573 |
-
#: app/skins/slider/render.php:
|
5574 |
-
#: app/skins/slider/render.php:
|
5575 |
msgid "REGISTER"
|
5576 |
msgstr "REGISTER"
|
5577 |
|
5578 |
-
#: app/libraries/main.php:
|
5579 |
msgid "View Detail Button"
|
5580 |
msgstr "Knappen Visa detaljer"
|
5581 |
|
5582 |
-
#: app/libraries/main.php:
|
5583 |
-
#: app/skins/carousel/render.php:
|
5584 |
-
#: app/skins/grid/render.php:
|
5585 |
-
#: app/skins/grid/render.php:
|
5586 |
-
#: app/skins/list/render.php:
|
5587 |
-
#: app/skins/slider/render.php:
|
5588 |
-
#: app/skins/slider/render.php:
|
5589 |
-
#: app/skins/slider/render.php:
|
5590 |
msgid "View Detail"
|
5591 |
msgstr "Visa detaljer"
|
5592 |
|
5593 |
-
#: app/libraries/main.php:
|
5594 |
msgid "Event Detail Button"
|
5595 |
msgstr "Knappen Evenemagsdetaljer"
|
5596 |
|
5597 |
-
#: app/libraries/main.php:
|
5598 |
msgid "Event Detail"
|
5599 |
msgstr "Evenemangsdetalj"
|
5600 |
|
5601 |
-
#: app/libraries/main.php:
|
5602 |
msgid "More Info Link"
|
5603 |
msgstr "Länken ”Mer information”"
|
5604 |
|
5605 |
-
#: app/libraries/main.php:
|
5606 |
msgid "Ticket (Singular)"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: app/libraries/main.php:
|
5610 |
msgid "Tickets (Plural)"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: app/libraries/main.php:
|
5614 |
msgid "EventON"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: app/libraries/main.php:
|
5618 |
msgid "The Events Calendar"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: app/libraries/main.php:
|
5622 |
msgid "Events Schedule WP Plugin"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: app/libraries/main.php:
|
5626 |
msgid "Calendarize It"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: app/libraries/main.php:
|
5630 |
msgid "Confirmed"
|
5631 |
msgstr "Bekräftad"
|
5632 |
|
5633 |
-
#: app/libraries/main.php:
|
5634 |
msgid "Rejected"
|
5635 |
msgstr "Avvisad"
|
5636 |
|
5637 |
-
#: app/libraries/main.php:
|
5638 |
msgid "Pending"
|
5639 |
msgstr "Väntande"
|
5640 |
|
5641 |
-
#: app/libraries/main.php:
|
5642 |
msgid "Waiting"
|
5643 |
msgstr "Väntar"
|
5644 |
|
@@ -5658,27 +5658,27 @@ msgstr "Din bokning är bekräftad."
|
|
5658 |
msgid "A new booking is received."
|
5659 |
msgstr "En ny bokning är mottagen."
|
5660 |
|
5661 |
-
#: app/libraries/notifications.php:
|
5662 |
msgid "A new event is added."
|
5663 |
msgstr "Ett nytt evenemang läggs till."
|
5664 |
|
5665 |
-
#: app/libraries/notifications.php:
|
5666 |
msgid "to"
|
5667 |
msgstr ""
|
5668 |
|
5669 |
-
#: app/libraries/notifications.php:
|
5670 |
msgid "+ Add to Google Calendar"
|
5671 |
msgstr "+ Lägg till i Google Kalender"
|
5672 |
|
5673 |
-
#: app/libraries/notifications.php:
|
5674 |
msgid "+ iCal export"
|
5675 |
msgstr "+ iCal-export"
|
5676 |
|
5677 |
-
#: app/libraries/notifications.php:
|
5678 |
msgid "Yes"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: app/libraries/notifications.php:
|
5682 |
msgid "No"
|
5683 |
msgstr ""
|
5684 |
|
@@ -5693,7 +5693,7 @@ msgstr "Tema-kontroll existerar inte."
|
|
5693 |
msgid "All of the day"
|
5694 |
msgstr "Hela dagen"
|
5695 |
|
5696 |
-
#: app/libraries/skins.php:
|
5697 |
msgid "Ignore month and years"
|
5698 |
msgstr "Ignorera månad och år"
|
5699 |
|
@@ -5735,8 +5735,8 @@ msgid "Fill other attendees information like the first form."
|
|
5735 |
msgstr ""
|
5736 |
|
5737 |
#: app/modules/booking/steps/form.php:162
|
5738 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5739 |
-
#: app/skins/countdown/tpl.php:
|
5740 |
msgid "Next"
|
5741 |
msgstr "Nästa"
|
5742 |
|
@@ -5860,11 +5860,11 @@ msgid "No event found!"
|
|
5860 |
msgstr "Inget evenemang hittades!"
|
5861 |
|
5862 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5863 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5864 |
msgid "Load More"
|
5865 |
msgstr "Visa fler"
|
5866 |
|
5867 |
-
#: app/skins/available_spot/tpl.php:
|
5868 |
msgid "Available Spot(s):"
|
5869 |
msgstr ""
|
5870 |
|
@@ -5874,23 +5874,23 @@ msgstr ""
|
|
5874 |
msgid "View All"
|
5875 |
msgstr "Visa %s"
|
5876 |
|
5877 |
-
#: app/skins/carousel/render.php:
|
5878 |
-
#: app/skins/countdown/tpl.php:
|
5879 |
-
#: app/skins/list/render.php:
|
5880 |
msgid "EVENT DETAIL"
|
5881 |
msgstr "EVENEMANGSDETALJ"
|
5882 |
|
5883 |
-
#: app/skins/countdown/tpl.php:
|
5884 |
-
#: app/skins/countdown/tpl.php:
|
5885 |
#, php-format
|
5886 |
msgid "%s Upcoming Event"
|
5887 |
msgstr "%s kommande evenemang"
|
5888 |
|
5889 |
-
#: app/skins/cover/tpl.php:
|
5890 |
msgid "featured event"
|
5891 |
msgstr "Utvalt evenemang"
|
5892 |
|
5893 |
-
#: app/skins/daily_view/render.php:
|
5894 |
msgid "No event"
|
5895 |
msgstr "Inget evenemang"
|
5896 |
|
@@ -5903,16 +5903,16 @@ msgid "All"
|
|
5903 |
msgstr ""
|
5904 |
|
5905 |
#: app/skins/monthly_view/calendar.php:66
|
5906 |
-
#: app/skins/monthly_view/calendar.php:
|
5907 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5908 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5909 |
#, php-format
|
5910 |
msgid "Events for %s"
|
5911 |
msgstr "Evenemang under %s"
|
5912 |
|
5913 |
-
#: app/skins/monthly_view/calendar.php:
|
5914 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5915 |
-
#: app/skins/timetable/render.php:
|
5916 |
msgid "No Events"
|
5917 |
msgstr "Inga evenemang"
|
5918 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:43+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:43+0430\n"
|
6 |
"Last-Translator: Mats Vallström <walle@mtre.se>\n"
|
7 |
"Language-Team: Mats Vallström <walle@mtre.se>\n"
|
8 |
"Language: sv_SE\n"
|
30 |
msgid "Content"
|
31 |
msgstr "Innehåll"
|
32 |
|
33 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
34 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Shortcode"
|
37 |
|
62 |
msgid "Event Color"
|
63 |
msgstr "Evenemangs-färg"
|
64 |
|
65 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
66 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
67 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
68 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
267 |
msgid "Event"
|
268 |
msgstr "Evenemang"
|
269 |
|
270 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
271 |
msgid "Add Event"
|
272 |
msgstr "Lägg till evenemang"
|
273 |
|
307 |
#: app/features/mec/meta_boxes/search_form.php:362
|
308 |
#: app/features/mec/meta_boxes/search_form.php:416
|
309 |
#: app/features/mec/meta_boxes/search_form.php:477
|
310 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
311 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
312 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
313 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
314 |
msgid "Category"
|
315 |
msgstr "Kategori"
|
316 |
|
317 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
318 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
319 |
+
#: app/libraries/main.php:4363
|
320 |
msgid "Categories"
|
321 |
msgstr "Kategorier"
|
322 |
|
391 |
#: app/features/events.php:296 app/features/events.php:2053
|
392 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
393 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
394 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
395 |
#: app/widgets/single.php:103
|
396 |
msgid "Event Cost"
|
397 |
msgstr "Evenemangskostnader"
|
398 |
|
399 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
400 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
401 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
402 |
#: app/skins/single/modern.php:184
|
403 |
msgid "Cost"
|
414 |
#: app/features/events.php:380 app/features/events.php:1237
|
415 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
416 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
417 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
418 |
#: app/modules/booking/steps/form.php:35
|
419 |
msgid "Name"
|
420 |
msgstr "Namn"
|
426 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
427 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
428 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
429 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
430 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
431 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
432 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
753 |
|
754 |
#: app/features/events.php:683 app/features/events.php:703
|
755 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
756 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
757 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
758 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
759 |
msgid "Speakers"
|
760 |
msgstr ""
|
761 |
|
771 |
msgstr "Evenemangs-länkar"
|
772 |
|
773 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
774 |
+
#: app/libraries/main.php:4394
|
775 |
msgid "Event Link"
|
776 |
msgstr "Evenemangs-länk"
|
777 |
|
789 |
"länk inklusive http(s)://"
|
790 |
|
791 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
792 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
793 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
794 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
795 |
#: app/widgets/single.php:107
|
823 |
#: app/features/events.php:818 app/features/events.php:910
|
824 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
825 |
#: app/modules/booking/steps/tickets.php:40
|
826 |
+
#: app/skins/available_spot/tpl.php:138
|
827 |
msgid "Unlimited"
|
828 |
msgstr "Obegränsad"
|
829 |
|
832 |
msgstr "100"
|
833 |
|
834 |
#: app/features/events.php:838 app/libraries/book.php:60
|
835 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
836 |
msgid "Tickets"
|
837 |
msgstr "Biljetter"
|
838 |
|
900 |
#: app/features/mec/meta_boxes/search_form.php:397
|
901 |
#: app/features/mec/meta_boxes/search_form.php:451
|
902 |
#: app/features/mec/meta_boxes/search_form.php:512
|
903 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
904 |
msgid "Label"
|
905 |
msgstr "Etikett"
|
906 |
|
1127 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1128 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1130 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1131 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1132 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1133 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1148 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1149 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1150 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1151 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1152 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1153 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1154 |
#: app/skins/single/modern.php:21
|
1288 |
msgstr "Ta bort bild"
|
1289 |
|
1290 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1291 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1292 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1293 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1294 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1295 |
msgid "Labels"
|
1296 |
msgstr "Etiketter"
|
1297 |
|
1298 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1299 |
#: app/features/mec/meta_boxes/filter.php:138
|
1300 |
msgid "Tags"
|
1301 |
msgstr "Taggar"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1995 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
1996 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1997 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
1998 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1999 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
2000 |
#: app/skins/monthly_view/calendar_clean.php:81
|
2001 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
2002 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
2003 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
2004 |
#, fuzzy
|
2005 |
#| msgid "Featured Image"
|
2006 |
msgid "Featured"
|
2007 |
msgstr "Utvald bild"
|
2008 |
|
2009 |
#: app/features/labels.php:117 app/features/labels.php:142
|
2010 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
2011 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
2012 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
2013 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
2014 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
2015 |
#: app/skins/monthly_view/calendar.php:84
|
2016 |
#: app/skins/monthly_view/calendar_clean.php:85
|
2017 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
2018 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
2019 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
2020 |
msgid "Canceled"
|
2021 |
msgstr "Avbruten"
|
2022 |
|
2040 |
msgid "Event %s"
|
2041 |
msgstr "Evenemang %s"
|
2042 |
|
2043 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2044 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2045 |
+
#: app/libraries/main.php:4367
|
2046 |
msgid "Locations"
|
2047 |
msgstr "Platser"
|
2048 |
|
2138 |
msgid "Don't show map in single event page"
|
2139 |
msgstr "Visa Inte karta på sidan för enstaka evenemang"
|
2140 |
|
2141 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2142 |
#, fuzzy
|
2143 |
#| msgid "Search Locations"
|
2144 |
msgid "Other Locations"
|
2149 |
"You can select extra locations in addition to main location if you like."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: app/features/mec.php:144
|
2153 |
msgid ""
|
2154 |
"Activation faild. Please check your purchase code or license type."
|
2155 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: app/features/mec.php:144
|
2159 |
msgid "Troubleshooting"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: app/features/mec.php:179
|
2163 |
msgid ""
|
2164 |
"Your options is not in JSON format. Please insert correct options in this "
|
2165 |
"field and try again."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: app/features/mec.php:183
|
2169 |
#, fuzzy
|
2170 |
#| msgid "Your booking cannot verify!"
|
2171 |
msgid "Your options field can not be empty!"
|
2172 |
msgstr "Din bokning kan inte verifieras!"
|
2173 |
|
2174 |
+
#: app/features/mec.php:187
|
2175 |
#, fuzzy
|
2176 |
#| msgid "Your booking successfully verified."
|
2177 |
msgid "Your options imported successfuly."
|
2178 |
msgstr "Din bokning är bekräftad."
|
2179 |
|
2180 |
+
#: app/features/mec.php:274
|
2181 |
#, fuzzy
|
2182 |
#| msgid "Support"
|
2183 |
msgid "MEC - Support"
|
2184 |
msgstr "Support"
|
2185 |
|
2186 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2187 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2188 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2189 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2192 |
msgid "Support"
|
2193 |
msgstr "Support"
|
2194 |
|
2195 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2196 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2197 |
+
#: app/libraries/main.php:4369
|
2198 |
msgid "Organizers"
|
2199 |
msgstr "Arrangörer"
|
2200 |
|
2201 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2202 |
#: app/features/mec/dashboard.php:164
|
2203 |
msgid "Shortcodes"
|
2204 |
msgstr "Shortcodes"
|
2205 |
|
2206 |
+
#: app/features/mec.php:303
|
2207 |
msgid "MEC - Settings"
|
2208 |
msgstr "MEC - Inställningar"
|
2209 |
|
2210 |
+
#: app/features/mec.php:304
|
2211 |
#, fuzzy
|
2212 |
#| msgid "MEC - Settings"
|
2213 |
msgid "MEC - Addons"
|
2214 |
msgstr "MEC - Inställningar"
|
2215 |
|
2216 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2217 |
msgid "Addons"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: app/features/mec.php:321
|
2221 |
msgid "Add Shortcode"
|
2222 |
msgstr "Lägg till shortcode"
|
2223 |
|
2224 |
+
#: app/features/mec.php:322
|
2225 |
msgid "Add New Shortcode"
|
2226 |
msgstr "Lägg till en ny shortcode"
|
2227 |
|
2228 |
+
#: app/features/mec.php:323
|
2229 |
msgid "No shortcodes found!"
|
2230 |
msgstr "Inga shortcodes hittades!"
|
2231 |
|
2232 |
+
#: app/features/mec.php:324
|
2233 |
msgid "All Shortcodes"
|
2234 |
msgstr "Alla shortcodes"
|
2235 |
|
2236 |
+
#: app/features/mec.php:325
|
2237 |
msgid "Edit shortcodes"
|
2238 |
msgstr "Redigera shortcodes"
|
2239 |
|
2240 |
+
#: app/features/mec.php:326
|
2241 |
msgid "No shortcodes found in Trash!"
|
2242 |
msgstr "Inga raderade shortcodes hittades!"
|
2243 |
|
2244 |
+
#: app/features/mec.php:373
|
2245 |
msgid "Display Options"
|
2246 |
msgstr "Visningsalternativ"
|
2247 |
|
2248 |
+
#: app/features/mec.php:374
|
2249 |
msgid "Filter Options"
|
2250 |
msgstr "Filteralternativ"
|
2251 |
|
2252 |
+
#: app/features/mec.php:376
|
2253 |
msgid "Search Form"
|
2254 |
msgstr "Sökformulär"
|
2255 |
|
2257 |
msgid "Display content's images as Popup"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: app/features/mec.php:764
|
2261 |
msgid "Single Event Display Method"
|
2262 |
msgstr "Enstaka evenemangs visnings-format"
|
2263 |
|
2264 |
+
#: app/features/mec.php:769
|
2265 |
msgid "Separate Window"
|
2266 |
msgstr "Separat fönster"
|
2267 |
|
2268 |
+
#: app/features/mec.php:770
|
2269 |
msgid "Modal 1"
|
2270 |
msgstr "Stil 1"
|
2271 |
|
3221 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3222 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3223 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3224 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3225 |
+
#: app/libraries/skins.php:829
|
3226 |
msgid "Speaker"
|
3227 |
msgstr ""
|
3228 |
|
3234 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3235 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3236 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3237 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3238 |
#, fuzzy
|
3239 |
#| msgid "Tags"
|
3240 |
msgid "Tag"
|
3744 |
msgid "Remove suffix from calendars"
|
3745 |
msgstr "Ta bort ändelser från kalendrar"
|
3746 |
|
3747 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3748 |
msgid "Weekdays"
|
3749 |
msgstr "Veckodagar"
|
3750 |
|
4444 |
msgstr ""
|
4445 |
|
4446 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4447 |
+
#: app/libraries/main.php:4558
|
4448 |
msgid "Verified"
|
4449 |
msgstr "Verifierad"
|
4450 |
|
5002 |
msgid "eg. https://webnus.net"
|
5003 |
msgstr "http://webnus.biz"
|
5004 |
|
5005 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
5006 |
#: app/skins/single.php:194
|
5007 |
msgid "Other Organizers"
|
5008 |
msgstr ""
|
5040 |
msgstr ""
|
5041 |
|
5042 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
5043 |
+
#: app/libraries/main.php:4398
|
5044 |
msgid "Ticket"
|
5045 |
msgstr "Biljett"
|
5046 |
|
5119 |
msgid "Discount"
|
5120 |
msgstr "Avdrag"
|
5121 |
|
5122 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5123 |
+
#: app/modules/booking/default.php:381
|
5124 |
msgid "Download Invoice"
|
5125 |
msgstr ""
|
5126 |
|
5148 |
msgstr "dag"
|
5149 |
|
5150 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5151 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5152 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5153 |
msgid "days"
|
5154 |
msgstr "dagar"
|
5155 |
|
5158 |
msgstr "timme"
|
5159 |
|
5160 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5161 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5162 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5163 |
msgid "hours"
|
5164 |
msgstr "timmar"
|
5165 |
|
5168 |
msgstr "minut"
|
5169 |
|
5170 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5171 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5172 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5173 |
msgid "minutes"
|
5174 |
msgstr "minuter"
|
5175 |
|
5178 |
msgstr "andra"
|
5179 |
|
5180 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5181 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5182 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5183 |
msgid "seconds"
|
5184 |
msgstr "sekunder"
|
5185 |
|
5191 |
msgid "Custom sidebar for single and modal page of MEC."
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: app/libraries/feed.php:83
|
5195 |
msgid "There is no excerpt because this is a protected post."
|
5196 |
msgstr "Det finns inget utdrag eftersom det här är ett skyddat inlägg."
|
5197 |
|
5250 |
msgid "Slider View"
|
5251 |
msgstr "Bildspel"
|
5252 |
|
5253 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5254 |
msgid "SU"
|
5255 |
msgstr "Sön"
|
5256 |
|
5257 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5258 |
msgid "MO"
|
5259 |
msgstr "Mån"
|
5260 |
|
5261 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5262 |
msgid "TU"
|
5263 |
msgstr "Tis"
|
5264 |
|
5265 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5266 |
msgid "WE"
|
5267 |
msgstr "Ons"
|
5268 |
|
5269 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5270 |
msgid "TH"
|
5271 |
msgstr "Tor"
|
5272 |
|
5273 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5274 |
msgid "FR"
|
5275 |
msgstr "Fre"
|
5276 |
|
5277 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5278 |
msgid "SA"
|
5279 |
msgstr "Lör"
|
5280 |
|
5459 |
msgid "%s booked %s event."
|
5460 |
msgstr "%s bokade %s evenemang."
|
5461 |
|
5462 |
+
#: app/libraries/main.php:4361
|
5463 |
msgid "Taxonomies"
|
5464 |
msgstr "Taxonomier"
|
5465 |
|
5466 |
+
#: app/libraries/main.php:4363
|
5467 |
msgid "Category Plural Label"
|
5468 |
msgstr "Kategori (plural etikett)"
|
5469 |
|
5470 |
+
#: app/libraries/main.php:4364
|
5471 |
msgid "Category Singular Label"
|
5472 |
msgstr "Kategori (singular etikett)"
|
5473 |
|
5474 |
+
#: app/libraries/main.php:4365
|
5475 |
msgid "Label Plural Label"
|
5476 |
msgstr "Etikett (plural etikett)"
|
5477 |
|
5478 |
+
#: app/libraries/main.php:4366
|
5479 |
msgid "Label Singular Label"
|
5480 |
msgstr "Etikett (singular etikett)"
|
5481 |
|
5482 |
+
#: app/libraries/main.php:4366
|
5483 |
msgid "label"
|
5484 |
msgstr "etikett"
|
5485 |
|
5486 |
+
#: app/libraries/main.php:4367
|
5487 |
msgid "Location Plural Label"
|
5488 |
msgstr "Plats (plural etikett)"
|
5489 |
|
5490 |
+
#: app/libraries/main.php:4368
|
5491 |
msgid "Location Singular Label"
|
5492 |
msgstr "Plats (singular etikett)"
|
5493 |
|
5494 |
+
#: app/libraries/main.php:4369
|
5495 |
msgid "Organizer Plural Label"
|
5496 |
msgstr "Arrangör (plural etikett)"
|
5497 |
|
5498 |
+
#: app/libraries/main.php:4370
|
5499 |
msgid "Organizer Singular Label"
|
5500 |
msgstr "Arrangör (singular etikett)"
|
5501 |
|
5502 |
+
#: app/libraries/main.php:4371
|
5503 |
#, fuzzy
|
5504 |
#| msgid "Label Plural Label"
|
5505 |
msgid "Speaker Plural Label"
|
5506 |
msgstr "Etikett (plural etikett)"
|
5507 |
|
5508 |
+
#: app/libraries/main.php:4372
|
5509 |
#, fuzzy
|
5510 |
#| msgid "Label Singular Label"
|
5511 |
msgid "Speaker Singular Label"
|
5512 |
msgstr "Etikett (singular etikett)"
|
5513 |
|
5514 |
+
#: app/libraries/main.php:4378
|
5515 |
msgid "Sunday abbreviation"
|
5516 |
msgstr "Söndag förkortning"
|
5517 |
|
5518 |
+
#: app/libraries/main.php:4379
|
5519 |
msgid "Monday abbreviation"
|
5520 |
msgstr "Måndag förkortning"
|
5521 |
|
5522 |
+
#: app/libraries/main.php:4380
|
5523 |
msgid "Tuesday abbreviation"
|
5524 |
msgstr "Tisdag förkortning"
|
5525 |
|
5526 |
+
#: app/libraries/main.php:4381
|
5527 |
msgid "Wednesday abbreviation"
|
5528 |
msgstr "Onsdag förkortning"
|
5529 |
|
5530 |
+
#: app/libraries/main.php:4382
|
5531 |
msgid "Thursday abbreviation"
|
5532 |
msgstr "Torsdag förkortning"
|
5533 |
|
5534 |
+
#: app/libraries/main.php:4383
|
5535 |
msgid "Friday abbreviation"
|
5536 |
msgstr "Fredag förkortning"
|
5537 |
|
5538 |
+
#: app/libraries/main.php:4384
|
5539 |
msgid "Saturday abbreviation"
|
5540 |
msgstr "Lördag förkortning"
|
5541 |
|
5542 |
+
#: app/libraries/main.php:4388
|
5543 |
msgid "Others"
|
5544 |
msgstr "Andra"
|
5545 |
|
5546 |
+
#: app/libraries/main.php:4390
|
5547 |
msgid "Booking Success Message"
|
5548 |
msgstr "Meddelande om Framgångsrik bokning"
|
5549 |
|
5550 |
+
#: app/libraries/main.php:4390
|
5551 |
msgid ""
|
5552 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5553 |
"needed, please check your email."
|
5555 |
"Tack för din bokning. Dina biljetter är bokade. Verifikation kan behövas, "
|
5556 |
"kontrollera din e-post."
|
5557 |
|
5558 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5559 |
msgid "Register Button"
|
5560 |
msgstr "Knappen Registrera"
|
5561 |
|
5562 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5563 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5564 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5565 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5566 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5567 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5568 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5569 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5570 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5571 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5572 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5573 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5574 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5575 |
msgid "REGISTER"
|
5576 |
msgstr "REGISTER"
|
5577 |
|
5578 |
+
#: app/libraries/main.php:4392
|
5579 |
msgid "View Detail Button"
|
5580 |
msgstr "Knappen Visa detaljer"
|
5581 |
|
5582 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5583 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5584 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5585 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5586 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5587 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5588 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5589 |
+
#: app/skins/slider/render.php:305
|
5590 |
msgid "View Detail"
|
5591 |
msgstr "Visa detaljer"
|
5592 |
|
5593 |
+
#: app/libraries/main.php:4393
|
5594 |
msgid "Event Detail Button"
|
5595 |
msgstr "Knappen Evenemagsdetaljer"
|
5596 |
|
5597 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5598 |
msgid "Event Detail"
|
5599 |
msgstr "Evenemangsdetalj"
|
5600 |
|
5601 |
+
#: app/libraries/main.php:4395
|
5602 |
msgid "More Info Link"
|
5603 |
msgstr "Länken ”Mer information”"
|
5604 |
|
5605 |
+
#: app/libraries/main.php:4398
|
5606 |
msgid "Ticket (Singular)"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: app/libraries/main.php:4399
|
5610 |
msgid "Tickets (Plural)"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: app/libraries/main.php:4466
|
5614 |
msgid "EventON"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
+
#: app/libraries/main.php:4467
|
5618 |
msgid "The Events Calendar"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
+
#: app/libraries/main.php:4468
|
5622 |
msgid "Events Schedule WP Plugin"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
+
#: app/libraries/main.php:4469
|
5626 |
msgid "Calendarize It"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: app/libraries/main.php:4543
|
5630 |
msgid "Confirmed"
|
5631 |
msgstr "Bekräftad"
|
5632 |
|
5633 |
+
#: app/libraries/main.php:4544
|
5634 |
msgid "Rejected"
|
5635 |
msgstr "Avvisad"
|
5636 |
|
5637 |
+
#: app/libraries/main.php:4545
|
5638 |
msgid "Pending"
|
5639 |
msgstr "Väntande"
|
5640 |
|
5641 |
+
#: app/libraries/main.php:4560
|
5642 |
msgid "Waiting"
|
5643 |
msgstr "Väntar"
|
5644 |
|
5658 |
msgid "A new booking is received."
|
5659 |
msgstr "En ny bokning är mottagen."
|
5660 |
|
5661 |
+
#: app/libraries/notifications.php:338
|
5662 |
msgid "A new event is added."
|
5663 |
msgstr "Ett nytt evenemang läggs till."
|
5664 |
|
5665 |
+
#: app/libraries/notifications.php:509
|
5666 |
msgid "to"
|
5667 |
msgstr ""
|
5668 |
|
5669 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5670 |
msgid "+ Add to Google Calendar"
|
5671 |
msgstr "+ Lägg till i Google Kalender"
|
5672 |
|
5673 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5674 |
msgid "+ iCal export"
|
5675 |
msgstr "+ iCal-export"
|
5676 |
|
5677 |
+
#: app/libraries/notifications.php:582
|
5678 |
msgid "Yes"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
+
#: app/libraries/notifications.php:582
|
5682 |
msgid "No"
|
5683 |
msgstr ""
|
5684 |
|
5693 |
msgid "All of the day"
|
5694 |
msgstr "Hela dagen"
|
5695 |
|
5696 |
+
#: app/libraries/skins.php:902
|
5697 |
msgid "Ignore month and years"
|
5698 |
msgstr "Ignorera månad och år"
|
5699 |
|
5735 |
msgstr ""
|
5736 |
|
5737 |
#: app/modules/booking/steps/form.php:162
|
5738 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5739 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5740 |
msgid "Next"
|
5741 |
msgstr "Nästa"
|
5742 |
|
5860 |
msgstr "Inget evenemang hittades!"
|
5861 |
|
5862 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5863 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5864 |
msgid "Load More"
|
5865 |
msgstr "Visa fler"
|
5866 |
|
5867 |
+
#: app/skins/available_spot/tpl.php:138
|
5868 |
msgid "Available Spot(s):"
|
5869 |
msgstr ""
|
5870 |
|
5874 |
msgid "View All"
|
5875 |
msgstr "Visa %s"
|
5876 |
|
5877 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5878 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5879 |
+
#: app/skins/list/render.php:119
|
5880 |
msgid "EVENT DETAIL"
|
5881 |
msgstr "EVENEMANGSDETALJ"
|
5882 |
|
5883 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5884 |
+
#: app/skins/countdown/tpl.php:206
|
5885 |
#, php-format
|
5886 |
msgid "%s Upcoming Event"
|
5887 |
msgstr "%s kommande evenemang"
|
5888 |
|
5889 |
+
#: app/skins/cover/tpl.php:81
|
5890 |
msgid "featured event"
|
5891 |
msgstr "Utvalt evenemang"
|
5892 |
|
5893 |
+
#: app/skins/daily_view/render.php:78
|
5894 |
msgid "No event"
|
5895 |
msgstr "Inget evenemang"
|
5896 |
|
5903 |
msgstr ""
|
5904 |
|
5905 |
#: app/skins/monthly_view/calendar.php:66
|
5906 |
+
#: app/skins/monthly_view/calendar.php:152
|
5907 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5908 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5909 |
#, php-format
|
5910 |
msgid "Events for %s"
|
5911 |
msgstr "Evenemang under %s"
|
5912 |
|
5913 |
+
#: app/skins/monthly_view/calendar.php:154
|
5914 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5915 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5916 |
msgid "No Events"
|
5917 |
msgstr "Inga evenemang"
|
5918 |
|
languages/modern-events-calendar-lite-tr_TR.mo
CHANGED
Binary file
|
languages/modern-events-calendar-lite-tr_TR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
-
"POT-Creation-Date: 2019-
|
5 |
-
"PO-Revision-Date: 2019-
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: tr_TR\n"
|
@@ -30,8 +30,8 @@ msgstr "Modern Etkinlik Takvimi"
|
|
30 |
msgid "Content"
|
31 |
msgstr "İçerik"
|
32 |
|
33 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
34 |
-
#: app/features/mec.php:
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Kısa kod"
|
37 |
|
@@ -60,7 +60,7 @@ msgstr ""
|
|
60 |
msgid "Event Color"
|
61 |
msgstr "Etkinlik Rengi"
|
62 |
|
63 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
64 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
65 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
66 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -272,7 +272,7 @@ msgstr ""
|
|
272 |
"#-#-#-#-# 3extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
273 |
"#-#-#-#-# 4extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
274 |
|
275 |
-
#: app/features/events.php:134 app/features/mec.php:
|
276 |
msgid "Add Event"
|
277 |
msgstr "Etkinlik Ekle"
|
278 |
|
@@ -312,16 +312,16 @@ msgstr "Çöp Kutusunda bir etkinlik bulunamadı!"
|
|
312 |
#: app/features/mec/meta_boxes/search_form.php:362
|
313 |
#: app/features/mec/meta_boxes/search_form.php:416
|
314 |
#: app/features/mec/meta_boxes/search_form.php:477
|
315 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
316 |
-
#: app/libraries/skins.php:
|
317 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
318 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
319 |
msgid "Category"
|
320 |
msgstr "Kategori"
|
321 |
|
322 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
323 |
-
#: app/features/mec.php:
|
324 |
-
#: app/libraries/main.php:
|
325 |
msgid "Categories"
|
326 |
msgstr "Kategoriler"
|
327 |
|
@@ -396,13 +396,13 @@ msgstr "Etkinlik Detayları"
|
|
396 |
#: app/features/events.php:296 app/features/events.php:2053
|
397 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
398 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
399 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
400 |
#: app/widgets/single.php:103
|
401 |
msgid "Event Cost"
|
402 |
msgstr "Etkinlik Maliyeti"
|
403 |
|
404 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
405 |
-
#: app/libraries/main.php:
|
406 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
407 |
#: app/skins/single/modern.php:184
|
408 |
msgid "Cost"
|
@@ -419,7 +419,7 @@ msgstr ""
|
|
419 |
#: app/features/events.php:380 app/features/events.php:1237
|
420 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
421 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
422 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
423 |
#: app/modules/booking/steps/form.php:35
|
424 |
msgid "Name"
|
425 |
msgstr "İsim"
|
@@ -431,7 +431,7 @@ msgstr "İsim"
|
|
431 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
432 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
433 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
434 |
-
#: app/libraries/notifications.php:
|
435 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
436 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
437 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -758,9 +758,9 @@ msgstr "Açıklama"
|
|
758 |
|
759 |
#: app/features/events.php:683 app/features/events.php:703
|
760 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
761 |
-
#: app/features/mec.php:
|
762 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
763 |
-
#: app/libraries/main.php:
|
764 |
msgid "Speakers"
|
765 |
msgstr ""
|
766 |
|
@@ -776,7 +776,7 @@ msgid "Event Links"
|
|
776 |
msgstr "Etkinlik Bağlantıları"
|
777 |
|
778 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
779 |
-
#: app/libraries/main.php:
|
780 |
msgid "Event Link"
|
781 |
msgstr "Etkinlik Bağlantısı"
|
782 |
|
@@ -792,7 +792,7 @@ msgid ""
|
|
792 |
msgstr "Doldurursanız, Http (s)// dahil olmak üzere tam bağlantıyı ekleyin:"
|
793 |
|
794 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
795 |
-
#: app/libraries/main.php:
|
796 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
797 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
798 |
#: app/widgets/single.php:107
|
@@ -824,7 +824,7 @@ msgstr "Toplam Rezervasyon Limitleri"
|
|
824 |
#: app/features/events.php:818 app/features/events.php:910
|
825 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
826 |
#: app/modules/booking/steps/tickets.php:40
|
827 |
-
#: app/skins/available_spot/tpl.php:
|
828 |
msgid "Unlimited"
|
829 |
msgstr "Sınırsız"
|
830 |
|
@@ -833,7 +833,7 @@ msgid "100"
|
|
833 |
msgstr ""
|
834 |
|
835 |
#: app/features/events.php:838 app/libraries/book.php:60
|
836 |
-
#: app/libraries/main.php:
|
837 |
msgid "Tickets"
|
838 |
msgstr "Biletler"
|
839 |
|
@@ -901,7 +901,7 @@ msgstr "Fiyat Etiketi"
|
|
901 |
#: app/features/mec/meta_boxes/search_form.php:397
|
902 |
#: app/features/mec/meta_boxes/search_form.php:451
|
903 |
#: app/features/mec/meta_boxes/search_form.php:512
|
904 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
905 |
msgid "Label"
|
906 |
msgstr "Etiket"
|
907 |
|
@@ -1128,7 +1128,7 @@ msgstr ""
|
|
1128 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1131 |
-
#: app/libraries/main.php:
|
1132 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1133 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1134 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1149,7 +1149,7 @@ msgstr "Yer"
|
|
1149 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1150 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1151 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1152 |
-
#: app/libraries/main.php:
|
1153 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1154 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1155 |
#: app/skins/single/modern.php:21
|
@@ -1289,14 +1289,14 @@ msgid "Remove Image"
|
|
1289 |
msgstr "Resmi Kaldır"
|
1290 |
|
1291 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1292 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1293 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1294 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1295 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1296 |
msgid "Labels"
|
1297 |
msgstr "Etiketler"
|
1298 |
|
1299 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1300 |
#: app/features/mec/meta_boxes/filter.php:138
|
1301 |
msgid "Tags"
|
1302 |
msgstr "Etiketler"
|
@@ -1953,31 +1953,31 @@ msgid "Normal"
|
|
1953 |
msgstr ""
|
1954 |
|
1955 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1956 |
-
#: app/skins/agenda/render.php:
|
1957 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1958 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
1959 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1960 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1961 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1962 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
1963 |
-
#: app/skins/timetable/render.php:
|
1964 |
-
#: app/skins/weekly_view/render.php:
|
1965 |
#, fuzzy
|
1966 |
#| msgid "Featured Image"
|
1967 |
msgid "Featured"
|
1968 |
msgstr "Resim Seç"
|
1969 |
|
1970 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1971 |
-
#: app/libraries/main.php:
|
1972 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1973 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1974 |
-
#: app/skins/daily_view/render.php:
|
1975 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1976 |
#: app/skins/monthly_view/calendar.php:84
|
1977 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1978 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
1979 |
-
#: app/skins/timetable/render.php:
|
1980 |
-
#: app/skins/weekly_view/render.php:
|
1981 |
msgid "Canceled"
|
1982 |
msgstr "İptal Edildi"
|
1983 |
|
@@ -2001,9 +2001,9 @@ msgstr "Url Kısaltma"
|
|
2001 |
msgid "Event %s"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
2005 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2006 |
-
#: app/libraries/main.php:
|
2007 |
msgid "Locations"
|
2008 |
msgstr "Konumlar"
|
2009 |
|
@@ -2100,7 +2100,7 @@ msgstr "Resim Seçin"
|
|
2100 |
msgid "Don't show map in single event page"
|
2101 |
msgstr "Haritayı tek bir etkinlik sayfasında gösterme"
|
2102 |
|
2103 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2104 |
#, fuzzy
|
2105 |
#| msgid "Search Locations"
|
2106 |
msgid "Other Locations"
|
@@ -2111,41 +2111,41 @@ msgid ""
|
|
2111 |
"You can select extra locations in addition to main location if you like."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: app/features/mec.php:
|
2115 |
msgid ""
|
2116 |
"Activation faild. Please check your purchase code or license type."
|
2117 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: app/features/mec.php:
|
2121 |
msgid "Troubleshooting"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: app/features/mec.php:
|
2125 |
msgid ""
|
2126 |
"Your options is not in JSON format. Please insert correct options in this "
|
2127 |
"field and try again."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: app/features/mec.php:
|
2131 |
#, fuzzy
|
2132 |
#| msgid "Your booking cannot verify!"
|
2133 |
msgid "Your options field can not be empty!"
|
2134 |
msgstr "Rezervasyonunuz doğrulayamıyor!"
|
2135 |
|
2136 |
-
#: app/features/mec.php:
|
2137 |
#, fuzzy
|
2138 |
#| msgid "Your booking successfully verified."
|
2139 |
msgid "Your options imported successfuly."
|
2140 |
msgstr "Rezervasyonunuz başarıyla doğrulandı."
|
2141 |
|
2142 |
-
#: app/features/mec.php:
|
2143 |
#, fuzzy
|
2144 |
#| msgid "Support"
|
2145 |
msgid "MEC - Support"
|
2146 |
msgstr "Destek"
|
2147 |
|
2148 |
-
#: app/features/mec.php:
|
2149 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2150 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2151 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2154,64 +2154,64 @@ msgstr "Destek"
|
|
2154 |
msgid "Support"
|
2155 |
msgstr "Destek"
|
2156 |
|
2157 |
-
#: app/features/mec.php:
|
2158 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2159 |
-
#: app/libraries/main.php:
|
2160 |
msgid "Organizers"
|
2161 |
msgstr "Organizatörler"
|
2162 |
|
2163 |
-
#: app/features/mec.php:
|
2164 |
#: app/features/mec/dashboard.php:164
|
2165 |
msgid "Shortcodes"
|
2166 |
msgstr "Kısa Kodlar"
|
2167 |
|
2168 |
-
#: app/features/mec.php:
|
2169 |
msgid "MEC - Settings"
|
2170 |
msgstr "MEC - Ayarları"
|
2171 |
|
2172 |
-
#: app/features/mec.php:
|
2173 |
#, fuzzy
|
2174 |
#| msgid "MEC - Settings"
|
2175 |
msgid "MEC - Addons"
|
2176 |
msgstr "MEC - Ayarları"
|
2177 |
|
2178 |
-
#: app/features/mec.php:
|
2179 |
msgid "Addons"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: app/features/mec.php:
|
2183 |
msgid "Add Shortcode"
|
2184 |
msgstr "Kısa Kod Ekle"
|
2185 |
|
2186 |
-
#: app/features/mec.php:
|
2187 |
msgid "Add New Shortcode"
|
2188 |
msgstr "Yeni Kısa Kod Ekle"
|
2189 |
|
2190 |
-
#: app/features/mec.php:
|
2191 |
msgid "No shortcodes found!"
|
2192 |
msgstr "Hiçbir kısa kod bulunamadı!"
|
2193 |
|
2194 |
-
#: app/features/mec.php:
|
2195 |
msgid "All Shortcodes"
|
2196 |
msgstr "Tüm Kısa Kodlar"
|
2197 |
|
2198 |
-
#: app/features/mec.php:
|
2199 |
msgid "Edit shortcodes"
|
2200 |
msgstr "Kısa kodları düzenle"
|
2201 |
|
2202 |
-
#: app/features/mec.php:
|
2203 |
msgid "No shortcodes found in Trash!"
|
2204 |
msgstr "Çöp Kutusunda kısa kod bulunamadı!"
|
2205 |
|
2206 |
-
#: app/features/mec.php:
|
2207 |
msgid "Display Options"
|
2208 |
msgstr "Görüntüleme Seçenekleri"
|
2209 |
|
2210 |
-
#: app/features/mec.php:
|
2211 |
msgid "Filter Options"
|
2212 |
msgstr "Filtre Seçenekleri"
|
2213 |
|
2214 |
-
#: app/features/mec.php:
|
2215 |
msgid "Search Form"
|
2216 |
msgstr "Arama Formu"
|
2217 |
|
@@ -2219,15 +2219,15 @@ msgstr "Arama Formu"
|
|
2219 |
msgid "Display content's images as Popup"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: app/features/mec.php:
|
2223 |
msgid "Single Event Display Method"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: app/features/mec.php:
|
2227 |
msgid "Separate Window"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: app/features/mec.php:
|
2231 |
msgid "Modal 1"
|
2232 |
msgstr ""
|
2233 |
|
@@ -3193,8 +3193,8 @@ msgstr "Devre Dışı Bırak"
|
|
3193 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3194 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3195 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3196 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3197 |
-
#: app/libraries/skins.php:
|
3198 |
msgid "Speaker"
|
3199 |
msgstr ""
|
3200 |
|
@@ -3206,7 +3206,7 @@ msgstr ""
|
|
3206 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3207 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3208 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3209 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3210 |
#, fuzzy
|
3211 |
#| msgid "Tags"
|
3212 |
msgid "Tag"
|
@@ -3717,7 +3717,7 @@ msgstr ""
|
|
3717 |
msgid "Remove suffix from calendars"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3721 |
msgid "Weekdays"
|
3722 |
msgstr ""
|
3723 |
|
@@ -4393,7 +4393,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4393 |
msgstr ""
|
4394 |
|
4395 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4396 |
-
#: app/libraries/main.php:
|
4397 |
msgid "Verified"
|
4398 |
msgstr "Doğrulanmış"
|
4399 |
|
@@ -4946,7 +4946,7 @@ msgstr "Örneğin. burhan@viseraturkiye.com"
|
|
4946 |
msgid "eg. https://webnus.net"
|
4947 |
msgstr "http://viseraturkiye.com"
|
4948 |
|
4949 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
4950 |
#: app/skins/single.php:194
|
4951 |
msgid "Other Organizers"
|
4952 |
msgstr ""
|
@@ -4984,7 +4984,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
4984 |
msgstr ""
|
4985 |
|
4986 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4987 |
-
#: app/libraries/main.php:
|
4988 |
msgid "Ticket"
|
4989 |
msgstr "Bilet"
|
4990 |
|
@@ -5061,8 +5061,8 @@ msgstr ""
|
|
5061 |
msgid "Discount"
|
5062 |
msgstr "İndirim"
|
5063 |
|
5064 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
5065 |
-
#: app/modules/booking/default.php:
|
5066 |
msgid "Download Invoice"
|
5067 |
msgstr ""
|
5068 |
|
@@ -5090,8 +5090,8 @@ msgid "day"
|
|
5090 |
msgstr "gün"
|
5091 |
|
5092 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5093 |
-
#: app/skins/available_spot/tpl.php:
|
5094 |
-
#: app/skins/countdown/tpl.php:
|
5095 |
msgid "days"
|
5096 |
msgstr "günler"
|
5097 |
|
@@ -5100,8 +5100,8 @@ msgid "hour"
|
|
5100 |
msgstr "saat"
|
5101 |
|
5102 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5103 |
-
#: app/skins/available_spot/tpl.php:
|
5104 |
-
#: app/skins/countdown/tpl.php:
|
5105 |
msgid "hours"
|
5106 |
msgstr "saatler"
|
5107 |
|
@@ -5110,8 +5110,8 @@ msgid "minute"
|
|
5110 |
msgstr "dakika"
|
5111 |
|
5112 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5113 |
-
#: app/skins/available_spot/tpl.php:
|
5114 |
-
#: app/skins/countdown/tpl.php:
|
5115 |
msgid "minutes"
|
5116 |
msgstr "dakikalar"
|
5117 |
|
@@ -5120,8 +5120,8 @@ msgid "second"
|
|
5120 |
msgstr "saniye"
|
5121 |
|
5122 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5123 |
-
#: app/skins/available_spot/tpl.php:
|
5124 |
-
#: app/skins/countdown/tpl.php:
|
5125 |
msgid "seconds"
|
5126 |
msgstr "saniyeler"
|
5127 |
|
@@ -5133,7 +5133,7 @@ msgstr ""
|
|
5133 |
msgid "Custom sidebar for single and modal page of MEC."
|
5134 |
msgstr ""
|
5135 |
|
5136 |
-
#: app/libraries/feed.php:
|
5137 |
msgid "There is no excerpt because this is a protected post."
|
5138 |
msgstr "Hiçbir alıntı yok çünkü bu korunan bir yayın."
|
5139 |
|
@@ -5194,31 +5194,31 @@ msgstr "Kapak Görünümü"
|
|
5194 |
msgid "Slider View"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
5198 |
msgid "SU"
|
5199 |
msgstr "Paz"
|
5200 |
|
5201 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
5202 |
msgid "MO"
|
5203 |
msgstr "Pzt"
|
5204 |
|
5205 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
5206 |
msgid "TU"
|
5207 |
msgstr "Sal"
|
5208 |
|
5209 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
5210 |
msgid "WE"
|
5211 |
msgstr "Çar"
|
5212 |
|
5213 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
5214 |
msgid "TH"
|
5215 |
msgstr "Per"
|
5216 |
|
5217 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
5218 |
msgid "FR"
|
5219 |
msgstr "Cum"
|
5220 |
|
5221 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
5222 |
msgid "SA"
|
5223 |
msgstr "Cmt"
|
5224 |
|
@@ -5403,95 +5403,95 @@ msgstr ""
|
|
5403 |
msgid "%s booked %s event."
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: app/libraries/main.php:
|
5407 |
msgid "Taxonomies"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
-
#: app/libraries/main.php:
|
5411 |
msgid "Category Plural Label"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
-
#: app/libraries/main.php:
|
5415 |
msgid "Category Singular Label"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: app/libraries/main.php:
|
5419 |
msgid "Label Plural Label"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: app/libraries/main.php:
|
5423 |
msgid "Label Singular Label"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
-
#: app/libraries/main.php:
|
5427 |
msgid "label"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
-
#: app/libraries/main.php:
|
5431 |
msgid "Location Plural Label"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
-
#: app/libraries/main.php:
|
5435 |
msgid "Location Singular Label"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
-
#: app/libraries/main.php:
|
5439 |
msgid "Organizer Plural Label"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
-
#: app/libraries/main.php:
|
5443 |
msgid "Organizer Singular Label"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
-
#: app/libraries/main.php:
|
5447 |
#, fuzzy
|
5448 |
#| msgid "Search Labels"
|
5449 |
msgid "Speaker Plural Label"
|
5450 |
msgstr "Kupon Ara"
|
5451 |
|
5452 |
-
#: app/libraries/main.php:
|
5453 |
#, fuzzy
|
5454 |
#| msgid "Popular Labels"
|
5455 |
msgid "Speaker Singular Label"
|
5456 |
msgstr "Popüler Kuponlar"
|
5457 |
|
5458 |
-
#: app/libraries/main.php:
|
5459 |
msgid "Sunday abbreviation"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: app/libraries/main.php:
|
5463 |
msgid "Monday abbreviation"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
-
#: app/libraries/main.php:
|
5467 |
msgid "Tuesday abbreviation"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: app/libraries/main.php:
|
5471 |
msgid "Wednesday abbreviation"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: app/libraries/main.php:
|
5475 |
msgid "Thursday abbreviation"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: app/libraries/main.php:
|
5479 |
msgid "Friday abbreviation"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: app/libraries/main.php:
|
5483 |
msgid "Saturday abbreviation"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: app/libraries/main.php:
|
5487 |
msgid "Others"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: app/libraries/main.php:
|
5491 |
msgid "Booking Success Message"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: app/libraries/main.php:
|
5495 |
msgid ""
|
5496 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5497 |
"needed, please check your email."
|
@@ -5499,91 +5499,91 @@ msgstr ""
|
|
5499 |
"Rezervasyon için teşekkür ederiz. Biletleriniz ayırtıldı, rezervasyon "
|
5500 |
"doğrulama gerekiyor, lütfen e-postanızı kontrol edin."
|
5501 |
|
5502 |
-
#: app/libraries/main.php:
|
5503 |
msgid "Register Button"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: app/libraries/main.php:
|
5507 |
-
#: app/skins/carousel/render.php:
|
5508 |
-
#: app/skins/grid/render.php:
|
5509 |
-
#: app/skins/grid/render.php:
|
5510 |
-
#: app/skins/list/render.php:
|
5511 |
-
#: app/skins/masonry/render.php:
|
5512 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5513 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5514 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5515 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5516 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5517 |
-
#: app/skins/slider/render.php:
|
5518 |
-
#: app/skins/slider/render.php:
|
5519 |
msgid "REGISTER"
|
5520 |
msgstr "KAYIT OL"
|
5521 |
|
5522 |
-
#: app/libraries/main.php:
|
5523 |
msgid "View Detail Button"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: app/libraries/main.php:
|
5527 |
-
#: app/skins/carousel/render.php:
|
5528 |
-
#: app/skins/grid/render.php:
|
5529 |
-
#: app/skins/grid/render.php:
|
5530 |
-
#: app/skins/list/render.php:
|
5531 |
-
#: app/skins/slider/render.php:
|
5532 |
-
#: app/skins/slider/render.php:
|
5533 |
-
#: app/skins/slider/render.php:
|
5534 |
msgid "View Detail"
|
5535 |
msgstr "Ayrıntılara Bakın"
|
5536 |
|
5537 |
-
#: app/libraries/main.php:
|
5538 |
msgid "Event Detail Button"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: app/libraries/main.php:
|
5542 |
#, fuzzy
|
5543 |
msgid "Event Detail"
|
5544 |
msgstr "Etkinlik Detayları"
|
5545 |
|
5546 |
-
#: app/libraries/main.php:
|
5547 |
msgid "More Info Link"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: app/libraries/main.php:
|
5551 |
msgid "Ticket (Singular)"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
-
#: app/libraries/main.php:
|
5555 |
msgid "Tickets (Plural)"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: app/libraries/main.php:
|
5559 |
msgid "EventON"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: app/libraries/main.php:
|
5563 |
msgid "The Events Calendar"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#: app/libraries/main.php:
|
5567 |
msgid "Events Schedule WP Plugin"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: app/libraries/main.php:
|
5571 |
msgid "Calendarize It"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
-
#: app/libraries/main.php:
|
5575 |
msgid "Confirmed"
|
5576 |
msgstr "Onaylandı"
|
5577 |
|
5578 |
-
#: app/libraries/main.php:
|
5579 |
msgid "Rejected"
|
5580 |
msgstr "Reddedildi"
|
5581 |
|
5582 |
-
#: app/libraries/main.php:
|
5583 |
msgid "Pending"
|
5584 |
msgstr "Beklemede"
|
5585 |
|
5586 |
-
#: app/libraries/main.php:
|
5587 |
msgid "Waiting"
|
5588 |
msgstr "Bekliyor"
|
5589 |
|
@@ -5603,27 +5603,27 @@ msgstr "Rezervasyonunuz teyit edildi."
|
|
5603 |
msgid "A new booking is received."
|
5604 |
msgstr "Yeni bir rezervasyon alındı."
|
5605 |
|
5606 |
-
#: app/libraries/notifications.php:
|
5607 |
msgid "A new event is added."
|
5608 |
msgstr "Yeni bir etkinlik eklendi."
|
5609 |
|
5610 |
-
#: app/libraries/notifications.php:
|
5611 |
msgid "to"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
-
#: app/libraries/notifications.php:
|
5615 |
msgid "+ Add to Google Calendar"
|
5616 |
msgstr "Google Takvim'e ekle"
|
5617 |
|
5618 |
-
#: app/libraries/notifications.php:
|
5619 |
msgid "+ iCal export"
|
5620 |
msgstr "iCal Çıktısı"
|
5621 |
|
5622 |
-
#: app/libraries/notifications.php:
|
5623 |
msgid "Yes"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: app/libraries/notifications.php:
|
5627 |
msgid "No"
|
5628 |
msgstr ""
|
5629 |
|
@@ -5638,7 +5638,7 @@ msgstr "Tema kontrolü mevcut değil."
|
|
5638 |
msgid "All of the day"
|
5639 |
msgstr "Bütün gün"
|
5640 |
|
5641 |
-
#: app/libraries/skins.php:
|
5642 |
msgid "Ignore month and years"
|
5643 |
msgstr ""
|
5644 |
|
@@ -5680,8 +5680,8 @@ msgid "Fill other attendees information like the first form."
|
|
5680 |
msgstr ""
|
5681 |
|
5682 |
#: app/modules/booking/steps/form.php:162
|
5683 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5684 |
-
#: app/skins/countdown/tpl.php:
|
5685 |
msgid "Next"
|
5686 |
msgstr "Sonraki"
|
5687 |
|
@@ -5805,11 +5805,11 @@ msgid "No event found!"
|
|
5805 |
msgstr "Etkinlik bulunamadı!"
|
5806 |
|
5807 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5808 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5809 |
msgid "Load More"
|
5810 |
msgstr "Daha Fazla Yükle"
|
5811 |
|
5812 |
-
#: app/skins/available_spot/tpl.php:
|
5813 |
msgid "Available Spot(s):"
|
5814 |
msgstr ""
|
5815 |
|
@@ -5819,23 +5819,23 @@ msgstr ""
|
|
5819 |
msgid "View All"
|
5820 |
msgstr "Etiketi Görüntüle"
|
5821 |
|
5822 |
-
#: app/skins/carousel/render.php:
|
5823 |
-
#: app/skins/countdown/tpl.php:
|
5824 |
-
#: app/skins/list/render.php:
|
5825 |
msgid "EVENT DETAIL"
|
5826 |
msgstr "ETKİNLİK DETAYI"
|
5827 |
|
5828 |
-
#: app/skins/countdown/tpl.php:
|
5829 |
-
#: app/skins/countdown/tpl.php:
|
5830 |
#, php-format
|
5831 |
msgid "%s Upcoming Event"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
-
#: app/skins/cover/tpl.php:
|
5835 |
msgid "featured event"
|
5836 |
msgstr "Öne Çıkan Etkinlik"
|
5837 |
|
5838 |
-
#: app/skins/daily_view/render.php:
|
5839 |
msgid "No event"
|
5840 |
msgstr "Etkinlik yok"
|
5841 |
|
@@ -5848,16 +5848,16 @@ msgid "All"
|
|
5848 |
msgstr ""
|
5849 |
|
5850 |
#: app/skins/monthly_view/calendar.php:66
|
5851 |
-
#: app/skins/monthly_view/calendar.php:
|
5852 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5853 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5854 |
#, php-format
|
5855 |
msgid "Events for %s"
|
5856 |
msgstr "Etkinlikler için %s"
|
5857 |
|
5858 |
-
#: app/skins/monthly_view/calendar.php:
|
5859 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5860 |
-
#: app/skins/timetable/render.php:
|
5861 |
msgid "No Events"
|
5862 |
msgstr "Etkinlik Yok"
|
5863 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Modern Events Calendar\n"
|
4 |
+
"POT-Creation-Date: 2019-05-08 11:43+0430\n"
|
5 |
+
"PO-Revision-Date: 2019-05-08 11:43+0430\n"
|
6 |
"Last-Translator: Howard <howard@realtyna.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: tr_TR\n"
|
30 |
msgid "Content"
|
31 |
msgstr "İçerik"
|
32 |
|
33 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
34 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
35 |
msgid "Shortcode"
|
36 |
msgstr "Kısa kod"
|
37 |
|
60 |
msgid "Event Color"
|
61 |
msgstr "Etkinlik Rengi"
|
62 |
|
63 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
64 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
65 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
66 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
272 |
"#-#-#-#-# 3extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
273 |
"#-#-#-#-# 4extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
|
274 |
|
275 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
276 |
msgid "Add Event"
|
277 |
msgstr "Etkinlik Ekle"
|
278 |
|
312 |
#: app/features/mec/meta_boxes/search_form.php:362
|
313 |
#: app/features/mec/meta_boxes/search_form.php:416
|
314 |
#: app/features/mec/meta_boxes/search_form.php:477
|
315 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
316 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
317 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
318 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
319 |
msgid "Category"
|
320 |
msgstr "Kategori"
|
321 |
|
322 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
323 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
324 |
+
#: app/libraries/main.php:4363
|
325 |
msgid "Categories"
|
326 |
msgstr "Kategoriler"
|
327 |
|
396 |
#: app/features/events.php:296 app/features/events.php:2053
|
397 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
398 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
399 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
400 |
#: app/widgets/single.php:103
|
401 |
msgid "Event Cost"
|
402 |
msgstr "Etkinlik Maliyeti"
|
403 |
|
404 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
405 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
406 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
407 |
#: app/skins/single/modern.php:184
|
408 |
msgid "Cost"
|
419 |
#: app/features/events.php:380 app/features/events.php:1237
|
420 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
421 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
422 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
423 |
#: app/modules/booking/steps/form.php:35
|
424 |
msgid "Name"
|
425 |
msgstr "İsim"
|
431 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
432 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
433 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
434 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
435 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
436 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
437 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
758 |
|
759 |
#: app/features/events.php:683 app/features/events.php:703
|
760 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
761 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
762 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
763 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
764 |
msgid "Speakers"
|
765 |
msgstr ""
|
766 |
|
776 |
msgstr "Etkinlik Bağlantıları"
|
777 |
|
778 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
779 |
+
#: app/libraries/main.php:4394
|
780 |
msgid "Event Link"
|
781 |
msgstr "Etkinlik Bağlantısı"
|
782 |
|
792 |
msgstr "Doldurursanız, Http (s)// dahil olmak üzere tam bağlantıyı ekleyin:"
|
793 |
|
794 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
795 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
796 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
797 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
798 |
#: app/widgets/single.php:107
|
824 |
#: app/features/events.php:818 app/features/events.php:910
|
825 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
826 |
#: app/modules/booking/steps/tickets.php:40
|
827 |
+
#: app/skins/available_spot/tpl.php:138
|
828 |
msgid "Unlimited"
|
829 |
msgstr "Sınırsız"
|
830 |
|
833 |
msgstr ""
|
834 |
|
835 |
#: app/features/events.php:838 app/libraries/book.php:60
|
836 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
837 |
msgid "Tickets"
|
838 |
msgstr "Biletler"
|
839 |
|
901 |
#: app/features/mec/meta_boxes/search_form.php:397
|
902 |
#: app/features/mec/meta_boxes/search_form.php:451
|
903 |
#: app/features/mec/meta_boxes/search_form.php:512
|
904 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
905 |
msgid "Label"
|
906 |
msgstr "Etiket"
|
907 |
|
1128 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1129 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1130 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1131 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1132 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1133 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1134 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1149 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1150 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1151 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1152 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1153 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1154 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1155 |
#: app/skins/single/modern.php:21
|
1289 |
msgstr "Resmi Kaldır"
|
1290 |
|
1291 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1292 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1293 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1294 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1295 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1296 |
msgid "Labels"
|
1297 |
msgstr "Etiketler"
|
1298 |
|
1299 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1300 |
#: app/features/mec/meta_boxes/filter.php:138
|
1301 |
msgid "Tags"
|
1302 |
msgstr "Etiketler"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1956 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
1957 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1958 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
1959 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1960 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1961 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1962 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
1963 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
1964 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
1965 |
#, fuzzy
|
1966 |
#| msgid "Featured Image"
|
1967 |
msgid "Featured"
|
1968 |
msgstr "Resim Seç"
|
1969 |
|
1970 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1971 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
1972 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1973 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1974 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
1975 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1976 |
#: app/skins/monthly_view/calendar.php:84
|
1977 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1978 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
1979 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
1980 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
1981 |
msgid "Canceled"
|
1982 |
msgstr "İptal Edildi"
|
1983 |
|
2001 |
msgid "Event %s"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
2005 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
2006 |
+
#: app/libraries/main.php:4367
|
2007 |
msgid "Locations"
|
2008 |
msgstr "Konumlar"
|
2009 |
|
2100 |
msgid "Don't show map in single event page"
|
2101 |
msgstr "Haritayı tek bir etkinlik sayfasında gösterme"
|
2102 |
|
2103 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2104 |
#, fuzzy
|
2105 |
#| msgid "Search Locations"
|
2106 |
msgid "Other Locations"
|
2111 |
"You can select extra locations in addition to main location if you like."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: app/features/mec.php:144
|
2115 |
msgid ""
|
2116 |
"Activation faild. Please check your purchase code or license type."
|
2117 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: app/features/mec.php:144
|
2121 |
msgid "Troubleshooting"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: app/features/mec.php:179
|
2125 |
msgid ""
|
2126 |
"Your options is not in JSON format. Please insert correct options in this "
|
2127 |
"field and try again."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: app/features/mec.php:183
|
2131 |
#, fuzzy
|
2132 |
#| msgid "Your booking cannot verify!"
|
2133 |
msgid "Your options field can not be empty!"
|
2134 |
msgstr "Rezervasyonunuz doğrulayamıyor!"
|
2135 |
|
2136 |
+
#: app/features/mec.php:187
|
2137 |
#, fuzzy
|
2138 |
#| msgid "Your booking successfully verified."
|
2139 |
msgid "Your options imported successfuly."
|
2140 |
msgstr "Rezervasyonunuz başarıyla doğrulandı."
|
2141 |
|
2142 |
+
#: app/features/mec.php:274
|
2143 |
#, fuzzy
|
2144 |
#| msgid "Support"
|
2145 |
msgid "MEC - Support"
|
2146 |
msgstr "Destek"
|
2147 |
|
2148 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2149 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2150 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2151 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2154 |
msgid "Support"
|
2155 |
msgstr "Destek"
|
2156 |
|
2157 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2158 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2159 |
+
#: app/libraries/main.php:4369
|
2160 |
msgid "Organizers"
|
2161 |
msgstr "Organizatörler"
|
2162 |
|
2163 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2164 |
#: app/features/mec/dashboard.php:164
|
2165 |
msgid "Shortcodes"
|
2166 |
msgstr "Kısa Kodlar"
|
2167 |
|
2168 |
+
#: app/features/mec.php:303
|
2169 |
msgid "MEC - Settings"
|
2170 |
msgstr "MEC - Ayarları"
|
2171 |
|
2172 |
+
#: app/features/mec.php:304
|
2173 |
#, fuzzy
|
2174 |
#| msgid "MEC - Settings"
|
2175 |
msgid "MEC - Addons"
|
2176 |
msgstr "MEC - Ayarları"
|
2177 |
|
2178 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2179 |
msgid "Addons"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: app/features/mec.php:321
|
2183 |
msgid "Add Shortcode"
|
2184 |
msgstr "Kısa Kod Ekle"
|
2185 |
|
2186 |
+
#: app/features/mec.php:322
|
2187 |
msgid "Add New Shortcode"
|
2188 |
msgstr "Yeni Kısa Kod Ekle"
|
2189 |
|
2190 |
+
#: app/features/mec.php:323
|
2191 |
msgid "No shortcodes found!"
|
2192 |
msgstr "Hiçbir kısa kod bulunamadı!"
|
2193 |
|
2194 |
+
#: app/features/mec.php:324
|
2195 |
msgid "All Shortcodes"
|
2196 |
msgstr "Tüm Kısa Kodlar"
|
2197 |
|
2198 |
+
#: app/features/mec.php:325
|
2199 |
msgid "Edit shortcodes"
|
2200 |
msgstr "Kısa kodları düzenle"
|
2201 |
|
2202 |
+
#: app/features/mec.php:326
|
2203 |
msgid "No shortcodes found in Trash!"
|
2204 |
msgstr "Çöp Kutusunda kısa kod bulunamadı!"
|
2205 |
|
2206 |
+
#: app/features/mec.php:373
|
2207 |
msgid "Display Options"
|
2208 |
msgstr "Görüntüleme Seçenekleri"
|
2209 |
|
2210 |
+
#: app/features/mec.php:374
|
2211 |
msgid "Filter Options"
|
2212 |
msgstr "Filtre Seçenekleri"
|
2213 |
|
2214 |
+
#: app/features/mec.php:376
|
2215 |
msgid "Search Form"
|
2216 |
msgstr "Arama Formu"
|
2217 |
|
2219 |
msgid "Display content's images as Popup"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: app/features/mec.php:764
|
2223 |
msgid "Single Event Display Method"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: app/features/mec.php:769
|
2227 |
msgid "Separate Window"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: app/features/mec.php:770
|
2231 |
msgid "Modal 1"
|
2232 |
msgstr ""
|
2233 |
|
3193 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3194 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3195 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3196 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3197 |
+
#: app/libraries/skins.php:829
|
3198 |
msgid "Speaker"
|
3199 |
msgstr ""
|
3200 |
|
3206 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3207 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3208 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3209 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3210 |
#, fuzzy
|
3211 |
#| msgid "Tags"
|
3212 |
msgid "Tag"
|
3717 |
msgid "Remove suffix from calendars"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3721 |
msgid "Weekdays"
|
3722 |
msgstr ""
|
3723 |
|
4393 |
msgstr ""
|
4394 |
|
4395 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4396 |
+
#: app/libraries/main.php:4558
|
4397 |
msgid "Verified"
|
4398 |
msgstr "Doğrulanmış"
|
4399 |
|
4946 |
msgid "eg. https://webnus.net"
|
4947 |
msgstr "http://viseraturkiye.com"
|
4948 |
|
4949 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
4950 |
#: app/skins/single.php:194
|
4951 |
msgid "Other Organizers"
|
4952 |
msgstr ""
|
4984 |
msgstr ""
|
4985 |
|
4986 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4987 |
+
#: app/libraries/main.php:4398
|
4988 |
msgid "Ticket"
|
4989 |
msgstr "Bilet"
|
4990 |
|
5061 |
msgid "Discount"
|
5062 |
msgstr "İndirim"
|
5063 |
|
5064 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
5065 |
+
#: app/modules/booking/default.php:381
|
5066 |
msgid "Download Invoice"
|
5067 |
msgstr ""
|
5068 |
|
5090 |
msgstr "gün"
|
5091 |
|
5092 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
5093 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
5094 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
5095 |
msgid "days"
|
5096 |
msgstr "günler"
|
5097 |
|
5100 |
msgstr "saat"
|
5101 |
|
5102 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
5103 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
5104 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
5105 |
msgid "hours"
|
5106 |
msgstr "saatler"
|
5107 |
|
5110 |
msgstr "dakika"
|
5111 |
|
5112 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
5113 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
5114 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
5115 |
msgid "minutes"
|
5116 |
msgstr "dakikalar"
|
5117 |
|
5120 |
msgstr "saniye"
|
5121 |
|
5122 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
5123 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
5124 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
5125 |
msgid "seconds"
|
5126 |
msgstr "saniyeler"
|
5127 |
|
5133 |
msgid "Custom sidebar for single and modal page of MEC."
|
5134 |
msgstr ""
|
5135 |
|
5136 |
+
#: app/libraries/feed.php:83
|
5137 |
msgid "There is no excerpt because this is a protected post."
|
5138 |
msgstr "Hiçbir alıntı yok çünkü bu korunan bir yayın."
|
5139 |
|
5194 |
msgid "Slider View"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
5198 |
msgid "SU"
|
5199 |
msgstr "Paz"
|
5200 |
|
5201 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
5202 |
msgid "MO"
|
5203 |
msgstr "Pzt"
|
5204 |
|
5205 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
5206 |
msgid "TU"
|
5207 |
msgstr "Sal"
|
5208 |
|
5209 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
5210 |
msgid "WE"
|
5211 |
msgstr "Çar"
|
5212 |
|
5213 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
5214 |
msgid "TH"
|
5215 |
msgstr "Per"
|
5216 |
|
5217 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
5218 |
msgid "FR"
|
5219 |
msgstr "Cum"
|
5220 |
|
5221 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
5222 |
msgid "SA"
|
5223 |
msgstr "Cmt"
|
5224 |
|
5403 |
msgid "%s booked %s event."
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: app/libraries/main.php:4361
|
5407 |
msgid "Taxonomies"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: app/libraries/main.php:4363
|
5411 |
msgid "Category Plural Label"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
+
#: app/libraries/main.php:4364
|
5415 |
msgid "Category Singular Label"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: app/libraries/main.php:4365
|
5419 |
msgid "Label Plural Label"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: app/libraries/main.php:4366
|
5423 |
msgid "Label Singular Label"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: app/libraries/main.php:4366
|
5427 |
msgid "label"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: app/libraries/main.php:4367
|
5431 |
msgid "Location Plural Label"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
+
#: app/libraries/main.php:4368
|
5435 |
msgid "Location Singular Label"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
+
#: app/libraries/main.php:4369
|
5439 |
msgid "Organizer Plural Label"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
+
#: app/libraries/main.php:4370
|
5443 |
msgid "Organizer Singular Label"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
+
#: app/libraries/main.php:4371
|
5447 |
#, fuzzy
|
5448 |
#| msgid "Search Labels"
|
5449 |
msgid "Speaker Plural Label"
|
5450 |
msgstr "Kupon Ara"
|
5451 |
|
5452 |
+
#: app/libraries/main.php:4372
|
5453 |
#, fuzzy
|
5454 |
#| msgid "Popular Labels"
|
5455 |
msgid "Speaker Singular Label"
|
5456 |
msgstr "Popüler Kuponlar"
|
5457 |
|
5458 |
+
#: app/libraries/main.php:4378
|
5459 |
msgid "Sunday abbreviation"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: app/libraries/main.php:4379
|
5463 |
msgid "Monday abbreviation"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: app/libraries/main.php:4380
|
5467 |
msgid "Tuesday abbreviation"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
+
#: app/libraries/main.php:4381
|
5471 |
msgid "Wednesday abbreviation"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: app/libraries/main.php:4382
|
5475 |
msgid "Thursday abbreviation"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: app/libraries/main.php:4383
|
5479 |
msgid "Friday abbreviation"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: app/libraries/main.php:4384
|
5483 |
msgid "Saturday abbreviation"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: app/libraries/main.php:4388
|
5487 |
msgid "Others"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: app/libraries/main.php:4390
|
5491 |
msgid "Booking Success Message"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: app/libraries/main.php:4390
|
5495 |
msgid ""
|
5496 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5497 |
"needed, please check your email."
|
5499 |
"Rezervasyon için teşekkür ederiz. Biletleriniz ayırtıldı, rezervasyon "
|
5500 |
"doğrulama gerekiyor, lütfen e-postanızı kontrol edin."
|
5501 |
|
5502 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5503 |
msgid "Register Button"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5507 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5508 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5509 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5510 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5511 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5512 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5513 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5514 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5515 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5516 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5517 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5518 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5519 |
msgid "REGISTER"
|
5520 |
msgstr "KAYIT OL"
|
5521 |
|
5522 |
+
#: app/libraries/main.php:4392
|
5523 |
msgid "View Detail Button"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5527 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5528 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5529 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5530 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5531 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5532 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5533 |
+
#: app/skins/slider/render.php:305
|
5534 |
msgid "View Detail"
|
5535 |
msgstr "Ayrıntılara Bakın"
|
5536 |
|
5537 |
+
#: app/libraries/main.php:4393
|
5538 |
msgid "Event Detail Button"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5542 |
#, fuzzy
|
5543 |
msgid "Event Detail"
|
5544 |
msgstr "Etkinlik Detayları"
|
5545 |
|
5546 |
+
#: app/libraries/main.php:4395
|
5547 |
msgid "More Info Link"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: app/libraries/main.php:4398
|
5551 |
msgid "Ticket (Singular)"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: app/libraries/main.php:4399
|
5555 |
msgid "Tickets (Plural)"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: app/libraries/main.php:4466
|
5559 |
msgid "EventON"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: app/libraries/main.php:4467
|
5563 |
msgid "The Events Calendar"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: app/libraries/main.php:4468
|
5567 |
msgid "Events Schedule WP Plugin"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: app/libraries/main.php:4469
|
5571 |
msgid "Calendarize It"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: app/libraries/main.php:4543
|
5575 |
msgid "Confirmed"
|
5576 |
msgstr "Onaylandı"
|
5577 |
|
5578 |
+
#: app/libraries/main.php:4544
|
5579 |
msgid "Rejected"
|
5580 |
msgstr "Reddedildi"
|
5581 |
|
5582 |
+
#: app/libraries/main.php:4545
|
5583 |
msgid "Pending"
|
5584 |
msgstr "Beklemede"
|
5585 |
|
5586 |
+
#: app/libraries/main.php:4560
|
5587 |
msgid "Waiting"
|
5588 |
msgstr "Bekliyor"
|
5589 |
|
5603 |
msgid "A new booking is received."
|
5604 |
msgstr "Yeni bir rezervasyon alındı."
|
5605 |
|
5606 |
+
#: app/libraries/notifications.php:338
|
5607 |
msgid "A new event is added."
|
5608 |
msgstr "Yeni bir etkinlik eklendi."
|
5609 |
|
5610 |
+
#: app/libraries/notifications.php:509
|
5611 |
msgid "to"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5615 |
msgid "+ Add to Google Calendar"
|
5616 |
msgstr "Google Takvim'e ekle"
|
5617 |
|
5618 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5619 |
msgid "+ iCal export"
|
5620 |
msgstr "iCal Çıktısı"
|
5621 |
|
5622 |
+
#: app/libraries/notifications.php:582
|
5623 |
msgid "Yes"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
+
#: app/libraries/notifications.php:582
|
5627 |
msgid "No"
|
5628 |
msgstr ""
|
5629 |
|
5638 |
msgid "All of the day"
|
5639 |
msgstr "Bütün gün"
|
5640 |
|
5641 |
+
#: app/libraries/skins.php:902
|
5642 |
msgid "Ignore month and years"
|
5643 |
msgstr ""
|
5644 |
|
5680 |
msgstr ""
|
5681 |
|
5682 |
#: app/modules/booking/steps/form.php:162
|
5683 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5684 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5685 |
msgid "Next"
|
5686 |
msgstr "Sonraki"
|
5687 |
|
5805 |
msgstr "Etkinlik bulunamadı!"
|
5806 |
|
5807 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5808 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5809 |
msgid "Load More"
|
5810 |
msgstr "Daha Fazla Yükle"
|
5811 |
|
5812 |
+
#: app/skins/available_spot/tpl.php:138
|
5813 |
msgid "Available Spot(s):"
|
5814 |
msgstr ""
|
5815 |
|
5819 |
msgid "View All"
|
5820 |
msgstr "Etiketi Görüntüle"
|
5821 |
|
5822 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5823 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5824 |
+
#: app/skins/list/render.php:119
|
5825 |
msgid "EVENT DETAIL"
|
5826 |
msgstr "ETKİNLİK DETAYI"
|
5827 |
|
5828 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5829 |
+
#: app/skins/countdown/tpl.php:206
|
5830 |
#, php-format
|
5831 |
msgid "%s Upcoming Event"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
+
#: app/skins/cover/tpl.php:81
|
5835 |
msgid "featured event"
|
5836 |
msgstr "Öne Çıkan Etkinlik"
|
5837 |
|
5838 |
+
#: app/skins/daily_view/render.php:78
|
5839 |
msgid "No event"
|
5840 |
msgstr "Etkinlik yok"
|
5841 |
|
5848 |
msgstr ""
|
5849 |
|
5850 |
#: app/skins/monthly_view/calendar.php:66
|
5851 |
+
#: app/skins/monthly_view/calendar.php:152
|
5852 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5853 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5854 |
#, php-format
|
5855 |
msgid "Events for %s"
|
5856 |
msgstr "Etkinlikler için %s"
|
5857 |
|
5858 |
+
#: app/skins/monthly_view/calendar.php:154
|
5859 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5860 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5861 |
msgid "No Events"
|
5862 |
msgstr "Etkinlik Yok"
|
5863 |
|
languages/modern-events-calendar-lite.pot
CHANGED
@@ -3,8 +3,8 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -31,8 +31,8 @@ msgstr ""
|
|
31 |
msgid "Content"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:
|
35 |
-
#: app/features/mec.php:
|
36 |
msgid "Shortcode"
|
37 |
msgstr ""
|
38 |
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
msgid "Event Color"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: app/features/contextual.php:55 app/features/mec.php:
|
61 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
62 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
63 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
@@ -262,7 +262,7 @@ msgstr ""
|
|
262 |
msgid "Event"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: app/features/events.php:134 app/features/mec.php:
|
266 |
msgid "Add Event"
|
267 |
msgstr ""
|
268 |
|
@@ -302,16 +302,16 @@ msgstr ""
|
|
302 |
#: app/features/mec/meta_boxes/search_form.php:362
|
303 |
#: app/features/mec/meta_boxes/search_form.php:416
|
304 |
#: app/features/mec/meta_boxes/search_form.php:477
|
305 |
-
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:
|
306 |
-
#: app/libraries/skins.php:
|
307 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
308 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
309 |
msgid "Category"
|
310 |
msgstr ""
|
311 |
|
312 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
313 |
-
#: app/features/mec.php:
|
314 |
-
#: app/libraries/main.php:
|
315 |
msgid "Categories"
|
316 |
msgstr ""
|
317 |
|
@@ -386,13 +386,13 @@ msgstr ""
|
|
386 |
#: app/features/events.php:296 app/features/events.php:2053
|
387 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
388 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
389 |
-
#: app/features/mec/settings.php:996 app/libraries/main.php:
|
390 |
#: app/widgets/single.php:103
|
391 |
msgid "Event Cost"
|
392 |
msgstr ""
|
393 |
|
394 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
395 |
-
#: app/libraries/main.php:
|
396 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
397 |
#: app/skins/single/modern.php:184
|
398 |
msgid "Cost"
|
@@ -409,7 +409,7 @@ msgstr ""
|
|
409 |
#: app/features/events.php:380 app/features/events.php:1237
|
410 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
411 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
412 |
-
#: app/features/profile/profile.php:90 app/libraries/notifications.php:
|
413 |
#: app/modules/booking/steps/form.php:35
|
414 |
msgid "Name"
|
415 |
msgstr ""
|
@@ -421,7 +421,7 @@ msgstr ""
|
|
421 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
422 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
423 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
424 |
-
#: app/libraries/notifications.php:
|
425 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
426 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
427 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
@@ -738,9 +738,9 @@ msgstr ""
|
|
738 |
|
739 |
#: app/features/events.php:683 app/features/events.php:703
|
740 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
741 |
-
#: app/features/mec.php:
|
742 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
743 |
-
#: app/libraries/main.php:
|
744 |
msgid "Speakers"
|
745 |
msgstr ""
|
746 |
|
@@ -754,7 +754,7 @@ msgid "Event Links"
|
|
754 |
msgstr ""
|
755 |
|
756 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
757 |
-
#: app/libraries/main.php:
|
758 |
msgid "Event Link"
|
759 |
msgstr ""
|
760 |
|
@@ -770,7 +770,7 @@ msgid ""
|
|
770 |
msgstr ""
|
771 |
|
772 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
773 |
-
#: app/libraries/main.php:
|
774 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
775 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
776 |
#: app/widgets/single.php:107
|
@@ -802,7 +802,7 @@ msgstr ""
|
|
802 |
#: app/features/events.php:818 app/features/events.php:910
|
803 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
804 |
#: app/modules/booking/steps/tickets.php:40
|
805 |
-
#: app/skins/available_spot/tpl.php:
|
806 |
msgid "Unlimited"
|
807 |
msgstr ""
|
808 |
|
@@ -811,7 +811,7 @@ msgid "100"
|
|
811 |
msgstr ""
|
812 |
|
813 |
#: app/features/events.php:838 app/libraries/book.php:60
|
814 |
-
#: app/libraries/main.php:
|
815 |
msgid "Tickets"
|
816 |
msgstr ""
|
817 |
|
@@ -877,7 +877,7 @@ msgstr ""
|
|
877 |
#: app/features/mec/meta_boxes/search_form.php:397
|
878 |
#: app/features/mec/meta_boxes/search_form.php:451
|
879 |
#: app/features/mec/meta_boxes/search_form.php:512
|
880 |
-
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:
|
881 |
msgid "Label"
|
882 |
msgstr ""
|
883 |
|
@@ -1094,7 +1094,7 @@ msgstr ""
|
|
1094 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1095 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1096 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1097 |
-
#: app/libraries/main.php:
|
1098 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1099 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1100 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
@@ -1115,7 +1115,7 @@ msgstr ""
|
|
1115 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1116 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1117 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1118 |
-
#: app/libraries/main.php:
|
1119 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1120 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1121 |
#: app/skins/single/modern.php:21
|
@@ -1255,14 +1255,14 @@ msgid "Remove Image"
|
|
1255 |
msgstr ""
|
1256 |
|
1257 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1258 |
-
#: app/features/labels.php:220 app/features/mec.php:
|
1259 |
-
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:
|
1260 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1261 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1262 |
msgid "Labels"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: app/features/fes/form.php:583 app/features/mec.php:
|
1266 |
#: app/features/mec/meta_boxes/filter.php:138
|
1267 |
msgid "Tags"
|
1268 |
msgstr ""
|
@@ -1910,29 +1910,29 @@ msgid "Normal"
|
|
1910 |
msgstr ""
|
1911 |
|
1912 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1913 |
-
#: app/skins/agenda/render.php:
|
1914 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1915 |
-
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:
|
1916 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1917 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1918 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1919 |
-
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:
|
1920 |
-
#: app/skins/timetable/render.php:
|
1921 |
-
#: app/skins/weekly_view/render.php:
|
1922 |
msgid "Featured"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1926 |
-
#: app/libraries/main.php:
|
1927 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1928 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1929 |
-
#: app/skins/daily_view/render.php:
|
1930 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1931 |
#: app/skins/monthly_view/calendar.php:84
|
1932 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1933 |
-
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:
|
1934 |
-
#: app/skins/timetable/render.php:
|
1935 |
-
#: app/skins/weekly_view/render.php:
|
1936 |
msgid "Canceled"
|
1937 |
msgstr ""
|
1938 |
|
@@ -1956,9 +1956,9 @@ msgstr ""
|
|
1956 |
msgid "Event %s"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: app/features/locations.php:59 app/features/mec.php:
|
1960 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
1961 |
-
#: app/libraries/main.php:
|
1962 |
msgid "Locations"
|
1963 |
msgstr ""
|
1964 |
|
@@ -2052,7 +2052,7 @@ msgstr ""
|
|
2052 |
msgid "Don't show map in single event page"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: app/features/locations.php:343 app/libraries/main.php:
|
2056 |
msgid "Other Locations"
|
2057 |
msgstr ""
|
2058 |
|
@@ -2061,35 +2061,35 @@ msgid ""
|
|
2061 |
"You can select extra locations in addition to main location if you like."
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: app/features/mec.php:
|
2065 |
msgid ""
|
2066 |
"Activation faild. Please check your purchase code or license type."
|
2067 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: app/features/mec.php:
|
2071 |
msgid "Troubleshooting"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: app/features/mec.php:
|
2075 |
msgid ""
|
2076 |
"Your options is not in JSON format. Please insert correct options in this "
|
2077 |
"field and try again."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: app/features/mec.php:
|
2081 |
msgid "Your options field can not be empty!"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: app/features/mec.php:
|
2085 |
msgid "Your options imported successfuly."
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: app/features/mec.php:
|
2089 |
msgid "MEC - Support"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: app/features/mec.php:
|
2093 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2094 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2095 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
@@ -2098,62 +2098,62 @@ msgstr ""
|
|
2098 |
msgid "Support"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: app/features/mec.php:
|
2102 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2103 |
-
#: app/libraries/main.php:
|
2104 |
msgid "Organizers"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: app/features/mec.php:
|
2108 |
#: app/features/mec/dashboard.php:164
|
2109 |
msgid "Shortcodes"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: app/features/mec.php:
|
2113 |
msgid "MEC - Settings"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: app/features/mec.php:
|
2117 |
msgid "MEC - Addons"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: app/features/mec.php:
|
2121 |
msgid "Addons"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: app/features/mec.php:
|
2125 |
msgid "Add Shortcode"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: app/features/mec.php:
|
2129 |
msgid "Add New Shortcode"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: app/features/mec.php:
|
2133 |
msgid "No shortcodes found!"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: app/features/mec.php:
|
2137 |
msgid "All Shortcodes"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: app/features/mec.php:
|
2141 |
msgid "Edit shortcodes"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: app/features/mec.php:
|
2145 |
msgid "No shortcodes found in Trash!"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: app/features/mec.php:
|
2149 |
msgid "Display Options"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: app/features/mec.php:
|
2153 |
msgid "Filter Options"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: app/features/mec.php:
|
2157 |
msgid "Search Form"
|
2158 |
msgstr ""
|
2159 |
|
@@ -2161,15 +2161,15 @@ msgstr ""
|
|
2161 |
msgid "Display content's images as Popup"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: app/features/mec.php:
|
2165 |
msgid "Single Event Display Method"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: app/features/mec.php:
|
2169 |
msgid "Separate Window"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: app/features/mec.php:
|
2173 |
msgid "Modal 1"
|
2174 |
msgstr ""
|
2175 |
|
@@ -3100,8 +3100,8 @@ msgstr ""
|
|
3100 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3101 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3102 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3103 |
-
#: app/features/speakers.php:242 app/libraries/main.php:
|
3104 |
-
#: app/libraries/skins.php:
|
3105 |
msgid "Speaker"
|
3106 |
msgstr ""
|
3107 |
|
@@ -3113,7 +3113,7 @@ msgstr ""
|
|
3113 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3114 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3115 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3116 |
-
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:
|
3117 |
msgid "Tag"
|
3118 |
msgstr ""
|
3119 |
|
@@ -3601,7 +3601,7 @@ msgstr ""
|
|
3601 |
msgid "Remove suffix from calendars"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
-
#: app/features/mec/settings.php:335 app/libraries/main.php:
|
3605 |
msgid "Weekdays"
|
3606 |
msgstr ""
|
3607 |
|
@@ -4232,7 +4232,7 @@ msgid "The unit is Megabyte \"MB\""
|
|
4232 |
msgstr ""
|
4233 |
|
4234 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4235 |
-
#: app/libraries/main.php:
|
4236 |
msgid "Verified"
|
4237 |
msgstr ""
|
4238 |
|
@@ -4718,7 +4718,7 @@ msgstr ""
|
|
4718 |
msgid "eg. https://webnus.net"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#: app/features/organizers.php:300 app/libraries/main.php:
|
4722 |
#: app/skins/single.php:194
|
4723 |
msgid "Other Organizers"
|
4724 |
msgstr ""
|
@@ -4755,7 +4755,7 @@ msgid "<i class=\"mec-sl-eye\"></i> %s"
|
|
4755 |
msgstr ""
|
4756 |
|
4757 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4758 |
-
#: app/libraries/main.php:
|
4759 |
msgid "Ticket"
|
4760 |
msgstr ""
|
4761 |
|
@@ -4818,8 +4818,8 @@ msgstr ""
|
|
4818 |
msgid "Discount"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
-
#: app/libraries/book.php:626 app/modules/booking/default.php:
|
4822 |
-
#: app/modules/booking/default.php:
|
4823 |
msgid "Download Invoice"
|
4824 |
msgstr ""
|
4825 |
|
@@ -4847,8 +4847,8 @@ msgid "day"
|
|
4847 |
msgstr ""
|
4848 |
|
4849 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
4850 |
-
#: app/skins/available_spot/tpl.php:
|
4851 |
-
#: app/skins/countdown/tpl.php:
|
4852 |
msgid "days"
|
4853 |
msgstr ""
|
4854 |
|
@@ -4857,8 +4857,8 @@ msgid "hour"
|
|
4857 |
msgstr ""
|
4858 |
|
4859 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
4860 |
-
#: app/skins/available_spot/tpl.php:
|
4861 |
-
#: app/skins/countdown/tpl.php:
|
4862 |
msgid "hours"
|
4863 |
msgstr ""
|
4864 |
|
@@ -4867,8 +4867,8 @@ msgid "minute"
|
|
4867 |
msgstr ""
|
4868 |
|
4869 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
4870 |
-
#: app/skins/available_spot/tpl.php:
|
4871 |
-
#: app/skins/countdown/tpl.php:
|
4872 |
msgid "minutes"
|
4873 |
msgstr ""
|
4874 |
|
@@ -4877,8 +4877,8 @@ msgid "second"
|
|
4877 |
msgstr ""
|
4878 |
|
4879 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
4880 |
-
#: app/skins/available_spot/tpl.php:
|
4881 |
-
#: app/skins/countdown/tpl.php:
|
4882 |
msgid "seconds"
|
4883 |
msgstr ""
|
4884 |
|
@@ -4890,7 +4890,7 @@ msgstr ""
|
|
4890 |
msgid "Custom sidebar for single and modal page of MEC."
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: app/libraries/feed.php:
|
4894 |
msgid "There is no excerpt because this is a protected post."
|
4895 |
msgstr ""
|
4896 |
|
@@ -4949,31 +4949,31 @@ msgstr ""
|
|
4949 |
msgid "Slider View"
|
4950 |
msgstr ""
|
4951 |
|
4952 |
-
#: app/libraries/main.php:381 app/libraries/main.php:
|
4953 |
msgid "SU"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
-
#: app/libraries/main.php:382 app/libraries/main.php:
|
4957 |
msgid "MO"
|
4958 |
msgstr ""
|
4959 |
|
4960 |
-
#: app/libraries/main.php:383 app/libraries/main.php:
|
4961 |
msgid "TU"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: app/libraries/main.php:384 app/libraries/main.php:
|
4965 |
msgid "WE"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#: app/libraries/main.php:385 app/libraries/main.php:
|
4969 |
msgid "TH"
|
4970 |
msgstr ""
|
4971 |
|
4972 |
-
#: app/libraries/main.php:386 app/libraries/main.php:
|
4973 |
msgid "FR"
|
4974 |
msgstr ""
|
4975 |
|
4976 |
-
#: app/libraries/main.php:387 app/libraries/main.php:
|
4977 |
msgid "SA"
|
4978 |
msgstr ""
|
4979 |
|
@@ -5154,180 +5154,180 @@ msgstr ""
|
|
5154 |
msgid "%s booked %s event."
|
5155 |
msgstr ""
|
5156 |
|
5157 |
-
#: app/libraries/main.php:
|
5158 |
msgid "Taxonomies"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
-
#: app/libraries/main.php:
|
5162 |
msgid "Category Plural Label"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
-
#: app/libraries/main.php:
|
5166 |
msgid "Category Singular Label"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
-
#: app/libraries/main.php:
|
5170 |
msgid "Label Plural Label"
|
5171 |
msgstr ""
|
5172 |
|
5173 |
-
#: app/libraries/main.php:
|
5174 |
msgid "Label Singular Label"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
-
#: app/libraries/main.php:
|
5178 |
msgid "label"
|
5179 |
msgstr ""
|
5180 |
|
5181 |
-
#: app/libraries/main.php:
|
5182 |
msgid "Location Plural Label"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
-
#: app/libraries/main.php:
|
5186 |
msgid "Location Singular Label"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
-
#: app/libraries/main.php:
|
5190 |
msgid "Organizer Plural Label"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
-
#: app/libraries/main.php:
|
5194 |
msgid "Organizer Singular Label"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#: app/libraries/main.php:
|
5198 |
msgid "Speaker Plural Label"
|
5199 |
msgstr ""
|
5200 |
|
5201 |
-
#: app/libraries/main.php:
|
5202 |
msgid "Speaker Singular Label"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
-
#: app/libraries/main.php:
|
5206 |
msgid "Sunday abbreviation"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
-
#: app/libraries/main.php:
|
5210 |
msgid "Monday abbreviation"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
-
#: app/libraries/main.php:
|
5214 |
msgid "Tuesday abbreviation"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
-
#: app/libraries/main.php:
|
5218 |
msgid "Wednesday abbreviation"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
-
#: app/libraries/main.php:
|
5222 |
msgid "Thursday abbreviation"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
-
#: app/libraries/main.php:
|
5226 |
msgid "Friday abbreviation"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#: app/libraries/main.php:
|
5230 |
msgid "Saturday abbreviation"
|
5231 |
msgstr ""
|
5232 |
|
5233 |
-
#: app/libraries/main.php:
|
5234 |
msgid "Others"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
-
#: app/libraries/main.php:
|
5238 |
msgid "Booking Success Message"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
-
#: app/libraries/main.php:
|
5242 |
msgid ""
|
5243 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5244 |
"needed, please check your email."
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: app/libraries/main.php:
|
5248 |
msgid "Register Button"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
-
#: app/libraries/main.php:
|
5252 |
-
#: app/skins/carousel/render.php:
|
5253 |
-
#: app/skins/grid/render.php:
|
5254 |
-
#: app/skins/grid/render.php:
|
5255 |
-
#: app/skins/list/render.php:
|
5256 |
-
#: app/skins/masonry/render.php:
|
5257 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5258 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5259 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5260 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5261 |
-
#: app/skins/single/modern.php:60 app/skins/slider/render.php:
|
5262 |
-
#: app/skins/slider/render.php:
|
5263 |
-
#: app/skins/slider/render.php:
|
5264 |
msgid "REGISTER"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
-
#: app/libraries/main.php:
|
5268 |
msgid "View Detail Button"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: app/libraries/main.php:
|
5272 |
-
#: app/skins/carousel/render.php:
|
5273 |
-
#: app/skins/grid/render.php:
|
5274 |
-
#: app/skins/grid/render.php:
|
5275 |
-
#: app/skins/list/render.php:
|
5276 |
-
#: app/skins/slider/render.php:
|
5277 |
-
#: app/skins/slider/render.php:
|
5278 |
-
#: app/skins/slider/render.php:
|
5279 |
msgid "View Detail"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: app/libraries/main.php:
|
5283 |
msgid "Event Detail Button"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#: app/libraries/main.php:
|
5287 |
msgid "Event Detail"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: app/libraries/main.php:
|
5291 |
msgid "More Info Link"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: app/libraries/main.php:
|
5295 |
msgid "Ticket (Singular)"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#: app/libraries/main.php:
|
5299 |
msgid "Tickets (Plural)"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#: app/libraries/main.php:
|
5303 |
msgid "EventON"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
-
#: app/libraries/main.php:
|
5307 |
msgid "The Events Calendar"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
-
#: app/libraries/main.php:
|
5311 |
msgid "Events Schedule WP Plugin"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#: app/libraries/main.php:
|
5315 |
msgid "Calendarize It"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
-
#: app/libraries/main.php:
|
5319 |
msgid "Confirmed"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
-
#: app/libraries/main.php:
|
5323 |
msgid "Rejected"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#: app/libraries/main.php:
|
5327 |
msgid "Pending"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
-
#: app/libraries/main.php:
|
5331 |
msgid "Waiting"
|
5332 |
msgstr ""
|
5333 |
|
@@ -5347,27 +5347,27 @@ msgstr ""
|
|
5347 |
msgid "A new booking is received."
|
5348 |
msgstr ""
|
5349 |
|
5350 |
-
#: app/libraries/notifications.php:
|
5351 |
msgid "A new event is added."
|
5352 |
msgstr ""
|
5353 |
|
5354 |
-
#: app/libraries/notifications.php:
|
5355 |
msgid "to"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
-
#: app/libraries/notifications.php:
|
5359 |
msgid "+ Add to Google Calendar"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
-
#: app/libraries/notifications.php:
|
5363 |
msgid "+ iCal export"
|
5364 |
msgstr ""
|
5365 |
|
5366 |
-
#: app/libraries/notifications.php:
|
5367 |
msgid "Yes"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
-
#: app/libraries/notifications.php:
|
5371 |
msgid "No"
|
5372 |
msgstr ""
|
5373 |
|
@@ -5382,7 +5382,7 @@ msgstr ""
|
|
5382 |
msgid "All of the day"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: app/libraries/skins.php:
|
5386 |
msgid "Ignore month and years"
|
5387 |
msgstr ""
|
5388 |
|
@@ -5424,8 +5424,8 @@ msgid "Fill other attendees information like the first form."
|
|
5424 |
msgstr ""
|
5425 |
|
5426 |
#: app/modules/booking/steps/form.php:162
|
5427 |
-
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:
|
5428 |
-
#: app/skins/countdown/tpl.php:
|
5429 |
msgid "Next"
|
5430 |
msgstr ""
|
5431 |
|
@@ -5549,11 +5549,11 @@ msgid "No event found!"
|
|
5549 |
msgstr ""
|
5550 |
|
5551 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5552 |
-
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:
|
5553 |
msgid "Load More"
|
5554 |
msgstr ""
|
5555 |
|
5556 |
-
#: app/skins/available_spot/tpl.php:
|
5557 |
msgid "Available Spot(s):"
|
5558 |
msgstr ""
|
5559 |
|
@@ -5561,23 +5561,23 @@ msgstr ""
|
|
5561 |
msgid "View All"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
-
#: app/skins/carousel/render.php:
|
5565 |
-
#: app/skins/countdown/tpl.php:
|
5566 |
-
#: app/skins/list/render.php:
|
5567 |
msgid "EVENT DETAIL"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: app/skins/countdown/tpl.php:
|
5571 |
-
#: app/skins/countdown/tpl.php:
|
5572 |
#, php-format
|
5573 |
msgid "%s Upcoming Event"
|
5574 |
msgstr ""
|
5575 |
|
5576 |
-
#: app/skins/cover/tpl.php:
|
5577 |
msgid "featured event"
|
5578 |
msgstr ""
|
5579 |
|
5580 |
-
#: app/skins/daily_view/render.php:
|
5581 |
msgid "No event"
|
5582 |
msgstr ""
|
5583 |
|
@@ -5590,16 +5590,16 @@ msgid "All"
|
|
5590 |
msgstr ""
|
5591 |
|
5592 |
#: app/skins/monthly_view/calendar.php:66
|
5593 |
-
#: app/skins/monthly_view/calendar.php:
|
5594 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5595 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5596 |
#, php-format
|
5597 |
msgid "Events for %s"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: app/skins/monthly_view/calendar.php:
|
5601 |
-
#: app/skins/monthly_view/calendar_clean.php:
|
5602 |
-
#: app/skins/timetable/render.php:
|
5603 |
msgid "No Events"
|
5604 |
msgstr ""
|
5605 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Modern Events Calendar Lite\n"
|
6 |
+
"POT-Creation-Date: 2019-05-08 11:40+0430\n"
|
7 |
+
"PO-Revision-Date: 2019-05-08 11:39+0430\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
31 |
msgid "Content"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:320
|
35 |
+
#: app/features/mec.php:350 app/features/mec.php:375
|
36 |
msgid "Shortcode"
|
37 |
msgstr ""
|
38 |
|
57 |
msgid "Event Color"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: app/features/contextual.php:55 app/features/mec.php:303
|
61 |
#: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
|
62 |
#: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
|
63 |
#: app/features/mec/regform.php:60 app/features/mec/settings.php:41
|
262 |
msgid "Event"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: app/features/events.php:134 app/features/mec.php:290
|
266 |
msgid "Add Event"
|
267 |
msgstr ""
|
268 |
|
302 |
#: app/features/mec/meta_boxes/search_form.php:362
|
303 |
#: app/features/mec/meta_boxes/search_form.php:416
|
304 |
#: app/features/mec/meta_boxes/search_form.php:477
|
305 |
+
#: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4364
|
306 |
+
#: app/libraries/skins.php:751 app/skins/single/default.php:157
|
307 |
#: app/skins/single/default.php:367 app/skins/single/m1.php:169
|
308 |
#: app/skins/single/m2.php:101 app/skins/single/modern.php:98
|
309 |
msgid "Category"
|
310 |
msgstr ""
|
311 |
|
312 |
#: app/features/events.php:153 app/features/fes/form.php:513
|
313 |
+
#: app/features/mec.php:292 app/features/mec/meta_boxes/filter.php:70
|
314 |
+
#: app/libraries/main.php:4363
|
315 |
msgid "Categories"
|
316 |
msgstr ""
|
317 |
|
386 |
#: app/features/events.php:296 app/features/events.php:2053
|
387 |
#: app/features/events.php:2097 app/features/fes/form.php:474
|
388 |
#: app/features/ix.php:2719 app/features/ix.php:2760
|
389 |
+
#: app/features/mec/settings.php:996 app/libraries/main.php:4396
|
390 |
#: app/widgets/single.php:103
|
391 |
msgid "Event Cost"
|
392 |
msgstr ""
|
393 |
|
394 |
#: app/features/events.php:299 app/features/fes/form.php:477
|
395 |
+
#: app/libraries/main.php:4397 app/skins/single/default.php:91
|
396 |
#: app/skins/single/default.php:301 app/skins/single/m1.php:49
|
397 |
#: app/skins/single/modern.php:184
|
398 |
msgid "Cost"
|
409 |
#: app/features/events.php:380 app/features/events.php:1237
|
410 |
#: app/features/fes/form.php:436 app/features/labels.php:177
|
411 |
#: app/features/mec/regform.php:27 app/features/organizers.php:268
|
412 |
+
#: app/features/profile/profile.php:90 app/libraries/notifications.php:566
|
413 |
#: app/modules/booking/steps/form.php:35
|
414 |
msgid "Name"
|
415 |
msgstr ""
|
421 |
#: app/features/profile/profile.php:93 app/features/speakers.php:119
|
422 |
#: app/features/speakers.php:179 app/libraries/main.php:1084
|
423 |
#: app/libraries/main.php:1165 app/libraries/main.php:2196
|
424 |
+
#: app/libraries/notifications.php:567 app/modules/booking/steps/form.php:43
|
425 |
#: app/modules/booking/steps/form.php:70 app/skins/single.php:216
|
426 |
#: app/skins/single/default.php:199 app/skins/single/default.php:409
|
427 |
#: app/skins/single/m1.php:107 app/skins/single/m2.php:39
|
738 |
|
739 |
#: app/features/events.php:683 app/features/events.php:703
|
740 |
#: app/features/events.php:741 app/features/fes/form.php:606
|
741 |
+
#: app/features/mec.php:299 app/features/mec/settings.php:78
|
742 |
#: app/features/mec/settings.php:1044 app/features/speakers.php:57
|
743 |
+
#: app/libraries/main.php:4371 app/modules/speakers/details.php:18
|
744 |
msgid "Speakers"
|
745 |
msgstr ""
|
746 |
|
754 |
msgstr ""
|
755 |
|
756 |
#: app/features/events.php:770 app/features/fes/form.php:453
|
757 |
+
#: app/libraries/main.php:4394
|
758 |
msgid "Event Link"
|
759 |
msgstr ""
|
760 |
|
770 |
msgstr ""
|
771 |
|
772 |
#: app/features/events.php:775 app/features/fes/form.php:458
|
773 |
+
#: app/libraries/main.php:4395 app/skins/single/default.php:105
|
774 |
#: app/skins/single/default.php:315 app/skins/single/m1.php:190
|
775 |
#: app/skins/single/m2.php:123 app/skins/single/modern.php:120
|
776 |
#: app/widgets/single.php:107
|
802 |
#: app/features/events.php:818 app/features/events.php:910
|
803 |
#: app/features/events.php:1013 app/modules/booking/default.php:81
|
804 |
#: app/modules/booking/steps/tickets.php:40
|
805 |
+
#: app/skins/available_spot/tpl.php:138
|
806 |
msgid "Unlimited"
|
807 |
msgstr ""
|
808 |
|
811 |
msgstr ""
|
812 |
|
813 |
#: app/features/events.php:838 app/libraries/book.php:60
|
814 |
+
#: app/libraries/main.php:4399 app/modules/booking/steps/tickets.php:40
|
815 |
msgid "Tickets"
|
816 |
msgstr ""
|
817 |
|
877 |
#: app/features/mec/meta_boxes/search_form.php:397
|
878 |
#: app/features/mec/meta_boxes/search_form.php:451
|
879 |
#: app/features/mec/meta_boxes/search_form.php:512
|
880 |
+
#: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:881
|
881 |
msgid "Label"
|
882 |
msgstr ""
|
883 |
|
1094 |
#: app/features/mec/meta_boxes/search_form.php:423
|
1095 |
#: app/features/mec/meta_boxes/search_form.php:484
|
1096 |
#: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1645
|
1097 |
+
#: app/libraries/main.php:4368 app/libraries/skins.php:777
|
1098 |
#: app/skins/single.php:255 app/skins/single/default.php:141
|
1099 |
#: app/skins/single/default.php:351 app/skins/single/m1.php:154
|
1100 |
#: app/skins/single/m2.php:86 app/skins/single/modern.php:83
|
1115 |
#: app/features/mec/meta_boxes/search_form.php:552
|
1116 |
#: app/features/organizers.php:58 app/features/organizers.php:199
|
1117 |
#: app/features/organizers.php:255 app/features/organizers.php:257
|
1118 |
+
#: app/libraries/main.php:4370 app/libraries/skins.php:803
|
1119 |
#: app/skins/single/default.php:182 app/skins/single/default.php:392
|
1120 |
#: app/skins/single/m1.php:90 app/skins/single/m2.php:22
|
1121 |
#: app/skins/single/modern.php:21
|
1255 |
msgstr ""
|
1256 |
|
1257 |
#: app/features/fes/form.php:538 app/features/labels.php:61
|
1258 |
+
#: app/features/labels.php:220 app/features/mec.php:293
|
1259 |
+
#: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4365
|
1260 |
#: app/skins/single/default.php:120 app/skins/single/default.php:330
|
1261 |
#: app/skins/single/m1.php:64 app/skins/single/modern.php:199
|
1262 |
msgid "Labels"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: app/features/fes/form.php:583 app/features/mec.php:291
|
1266 |
#: app/features/mec/meta_boxes/filter.php:138
|
1267 |
msgid "Tags"
|
1268 |
msgstr ""
|
1910 |
msgstr ""
|
1911 |
|
1912 |
#: app/features/labels.php:116 app/features/labels.php:141
|
1913 |
+
#: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
|
1914 |
#: app/skins/carousel/render.php:58 app/skins/countdown/tpl.php:24
|
1915 |
+
#: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:23
|
1916 |
#: app/skins/grid/render.php:49 app/skins/list/render.php:36
|
1917 |
#: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
|
1918 |
#: app/skins/monthly_view/calendar_clean.php:81
|
1919 |
+
#: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:49
|
1920 |
+
#: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
|
1921 |
+
#: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
|
1922 |
msgid "Featured"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
#: app/features/labels.php:117 app/features/labels.php:142
|
1926 |
+
#: app/libraries/main.php:4559 app/skins/agenda/render.php:41
|
1927 |
#: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:62
|
1928 |
#: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
|
1929 |
+
#: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
|
1930 |
#: app/skins/list/render.php:40 app/skins/masonry/render.php:32
|
1931 |
#: app/skins/monthly_view/calendar.php:84
|
1932 |
#: app/skins/monthly_view/calendar_clean.php:85
|
1933 |
+
#: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:53
|
1934 |
+
#: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
|
1935 |
+
#: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
|
1936 |
msgid "Canceled"
|
1937 |
msgstr ""
|
1938 |
|
1956 |
msgid "Event %s"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: app/features/locations.php:59 app/features/mec.php:294
|
1960 |
#: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
|
1961 |
+
#: app/libraries/main.php:4367
|
1962 |
msgid "Locations"
|
1963 |
msgstr ""
|
1964 |
|
2052 |
msgid "Don't show map in single event page"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: app/features/locations.php:343 app/libraries/main.php:4401
|
2056 |
msgid "Other Locations"
|
2057 |
msgstr ""
|
2058 |
|
2061 |
"You can select extra locations in addition to main location if you like."
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: app/features/mec.php:144
|
2065 |
msgid ""
|
2066 |
"Activation faild. Please check your purchase code or license type."
|
2067 |
"<br><b>Note: Your purchase code should match your licesne type.</b>"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: app/features/mec.php:144
|
2071 |
msgid "Troubleshooting"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: app/features/mec.php:179
|
2075 |
msgid ""
|
2076 |
"Your options is not in JSON format. Please insert correct options in this "
|
2077 |
"field and try again."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: app/features/mec.php:183
|
2081 |
msgid "Your options field can not be empty!"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: app/features/mec.php:187
|
2085 |
msgid "Your options imported successfuly."
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: app/features/mec.php:274
|
2089 |
msgid "MEC - Support"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: app/features/mec.php:274 app/features/mec/gateways.php:84
|
2093 |
#: app/features/mec/ie.php:80 app/features/mec/messages.php:84
|
2094 |
#: app/features/mec/notifications.php:83 app/features/mec/regform.php:118
|
2095 |
#: app/features/mec/settings.php:268 app/features/mec/styles.php:84
|
2098 |
msgid "Support"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: app/features/mec.php:295 app/features/mec/dashboard.php:178
|
2102 |
#: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
|
2103 |
+
#: app/libraries/main.php:4369
|
2104 |
msgid "Organizers"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: app/features/mec.php:302 app/features/mec.php:319
|
2108 |
#: app/features/mec/dashboard.php:164
|
2109 |
msgid "Shortcodes"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: app/features/mec.php:303
|
2113 |
msgid "MEC - Settings"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: app/features/mec.php:304
|
2117 |
msgid "MEC - Addons"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: app/features/mec.php:304 app/features/mec/addons.php:16
|
2121 |
msgid "Addons"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: app/features/mec.php:321
|
2125 |
msgid "Add Shortcode"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: app/features/mec.php:322
|
2129 |
msgid "Add New Shortcode"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: app/features/mec.php:323
|
2133 |
msgid "No shortcodes found!"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: app/features/mec.php:324
|
2137 |
msgid "All Shortcodes"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: app/features/mec.php:325
|
2141 |
msgid "Edit shortcodes"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: app/features/mec.php:326
|
2145 |
msgid "No shortcodes found in Trash!"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: app/features/mec.php:373
|
2149 |
msgid "Display Options"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: app/features/mec.php:374
|
2153 |
msgid "Filter Options"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: app/features/mec.php:376
|
2157 |
msgid "Search Form"
|
2158 |
msgstr ""
|
2159 |
|
2161 |
msgid "Display content's images as Popup"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: app/features/mec.php:764
|
2165 |
msgid "Single Event Display Method"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: app/features/mec.php:769
|
2169 |
msgid "Separate Window"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: app/features/mec.php:770
|
2173 |
msgid "Modal 1"
|
2174 |
msgstr ""
|
2175 |
|
3100 |
#: app/features/mec/meta_boxes/search_form.php:437
|
3101 |
#: app/features/mec/meta_boxes/search_form.php:498
|
3102 |
#: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
|
3103 |
+
#: app/features/speakers.php:242 app/libraries/main.php:4372
|
3104 |
+
#: app/libraries/skins.php:829
|
3105 |
msgid "Speaker"
|
3106 |
msgstr ""
|
3107 |
|
3113 |
#: app/features/mec/meta_boxes/search_form.php:390
|
3114 |
#: app/features/mec/meta_boxes/search_form.php:444
|
3115 |
#: app/features/mec/meta_boxes/search_form.php:505
|
3116 |
+
#: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:855
|
3117 |
msgid "Tag"
|
3118 |
msgstr ""
|
3119 |
|
3601 |
msgid "Remove suffix from calendars"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: app/features/mec/settings.php:335 app/libraries/main.php:4376
|
3605 |
msgid "Weekdays"
|
3606 |
msgstr ""
|
3607 |
|
4232 |
msgstr ""
|
4233 |
|
4234 |
#: app/features/mec/settings.php:1519 app/features/mec/settings.php:1541
|
4235 |
+
#: app/libraries/main.php:4558
|
4236 |
msgid "Verified"
|
4237 |
msgstr ""
|
4238 |
|
4718 |
msgid "eg. https://webnus.net"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: app/features/organizers.php:300 app/libraries/main.php:4400
|
4722 |
#: app/skins/single.php:194
|
4723 |
msgid "Other Organizers"
|
4724 |
msgstr ""
|
4755 |
msgstr ""
|
4756 |
|
4757 |
#: app/features/profile/profile.php:96 app/libraries/main.php:1680
|
4758 |
+
#: app/libraries/main.php:4398
|
4759 |
msgid "Ticket"
|
4760 |
msgstr ""
|
4761 |
|
4818 |
msgid "Discount"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: app/libraries/book.php:626 app/modules/booking/default.php:286
|
4822 |
+
#: app/modules/booking/default.php:381
|
4823 |
msgid "Download Invoice"
|
4824 |
msgstr ""
|
4825 |
|
4847 |
msgstr ""
|
4848 |
|
4849 |
#: app/libraries/factory.php:302 app/modules/countdown/details.php:122
|
4850 |
+
#: app/skins/available_spot/tpl.php:145 app/skins/countdown/tpl.php:130
|
4851 |
+
#: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:223
|
4852 |
msgid "days"
|
4853 |
msgstr ""
|
4854 |
|
4857 |
msgstr ""
|
4858 |
|
4859 |
#: app/libraries/factory.php:304 app/modules/countdown/details.php:129
|
4860 |
+
#: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:136
|
4861 |
+
#: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:229
|
4862 |
msgid "hours"
|
4863 |
msgstr ""
|
4864 |
|
4867 |
msgstr ""
|
4868 |
|
4869 |
#: app/libraries/factory.php:306 app/modules/countdown/details.php:136
|
4870 |
+
#: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:142
|
4871 |
+
#: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:235
|
4872 |
msgid "minutes"
|
4873 |
msgstr ""
|
4874 |
|
4877 |
msgstr ""
|
4878 |
|
4879 |
#: app/libraries/factory.php:308 app/modules/countdown/details.php:143
|
4880 |
+
#: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:148
|
4881 |
+
#: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:241
|
4882 |
msgid "seconds"
|
4883 |
msgstr ""
|
4884 |
|
4890 |
msgid "Custom sidebar for single and modal page of MEC."
|
4891 |
msgstr ""
|
4892 |
|
4893 |
+
#: app/libraries/feed.php:83
|
4894 |
msgid "There is no excerpt because this is a protected post."
|
4895 |
msgstr ""
|
4896 |
|
4949 |
msgid "Slider View"
|
4950 |
msgstr ""
|
4951 |
|
4952 |
+
#: app/libraries/main.php:381 app/libraries/main.php:4378
|
4953 |
msgid "SU"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
+
#: app/libraries/main.php:382 app/libraries/main.php:4379
|
4957 |
msgid "MO"
|
4958 |
msgstr ""
|
4959 |
|
4960 |
+
#: app/libraries/main.php:383 app/libraries/main.php:4380
|
4961 |
msgid "TU"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
+
#: app/libraries/main.php:384 app/libraries/main.php:4381
|
4965 |
msgid "WE"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
+
#: app/libraries/main.php:385 app/libraries/main.php:4382
|
4969 |
msgid "TH"
|
4970 |
msgstr ""
|
4971 |
|
4972 |
+
#: app/libraries/main.php:386 app/libraries/main.php:4383
|
4973 |
msgid "FR"
|
4974 |
msgstr ""
|
4975 |
|
4976 |
+
#: app/libraries/main.php:387 app/libraries/main.php:4384
|
4977 |
msgid "SA"
|
4978 |
msgstr ""
|
4979 |
|
5154 |
msgid "%s booked %s event."
|
5155 |
msgstr ""
|
5156 |
|
5157 |
+
#: app/libraries/main.php:4361
|
5158 |
msgid "Taxonomies"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
+
#: app/libraries/main.php:4363
|
5162 |
msgid "Category Plural Label"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
+
#: app/libraries/main.php:4364
|
5166 |
msgid "Category Singular Label"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
+
#: app/libraries/main.php:4365
|
5170 |
msgid "Label Plural Label"
|
5171 |
msgstr ""
|
5172 |
|
5173 |
+
#: app/libraries/main.php:4366
|
5174 |
msgid "Label Singular Label"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
+
#: app/libraries/main.php:4366
|
5178 |
msgid "label"
|
5179 |
msgstr ""
|
5180 |
|
5181 |
+
#: app/libraries/main.php:4367
|
5182 |
msgid "Location Plural Label"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
+
#: app/libraries/main.php:4368
|
5186 |
msgid "Location Singular Label"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
+
#: app/libraries/main.php:4369
|
5190 |
msgid "Organizer Plural Label"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
+
#: app/libraries/main.php:4370
|
5194 |
msgid "Organizer Singular Label"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
+
#: app/libraries/main.php:4371
|
5198 |
msgid "Speaker Plural Label"
|
5199 |
msgstr ""
|
5200 |
|
5201 |
+
#: app/libraries/main.php:4372
|
5202 |
msgid "Speaker Singular Label"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
+
#: app/libraries/main.php:4378
|
5206 |
msgid "Sunday abbreviation"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
+
#: app/libraries/main.php:4379
|
5210 |
msgid "Monday abbreviation"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
+
#: app/libraries/main.php:4380
|
5214 |
msgid "Tuesday abbreviation"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
+
#: app/libraries/main.php:4381
|
5218 |
msgid "Wednesday abbreviation"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
+
#: app/libraries/main.php:4382
|
5222 |
msgid "Thursday abbreviation"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
+
#: app/libraries/main.php:4383
|
5226 |
msgid "Friday abbreviation"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
+
#: app/libraries/main.php:4384
|
5230 |
msgid "Saturday abbreviation"
|
5231 |
msgstr ""
|
5232 |
|
5233 |
+
#: app/libraries/main.php:4388
|
5234 |
msgid "Others"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
+
#: app/libraries/main.php:4390
|
5238 |
msgid "Booking Success Message"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
+
#: app/libraries/main.php:4390
|
5242 |
msgid ""
|
5243 |
"Thanks for your booking. Your tickets booked, booking verification might be "
|
5244 |
"needed, please check your email."
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: app/libraries/main.php:4391 app/widgets/single.php:131
|
5248 |
msgid "Register Button"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: app/libraries/main.php:4391 app/skins/available_spot/tpl.php:203
|
5252 |
+
#: app/skins/carousel/render.php:149 app/skins/carousel/render.php:176
|
5253 |
+
#: app/skins/grid/render.php:116 app/skins/grid/render.php:151
|
5254 |
+
#: app/skins/grid/render.php:188 app/skins/grid/render.php:216
|
5255 |
+
#: app/skins/list/render.php:102 app/skins/list/render.php:185
|
5256 |
+
#: app/skins/masonry/render.php:132 app/skins/single/default.php:219
|
5257 |
#: app/skins/single/default.php:221 app/skins/single/default.php:429
|
5258 |
#: app/skins/single/default.php:431 app/skins/single/m1.php:126
|
5259 |
#: app/skins/single/m1.php:128 app/skins/single/m2.php:58
|
5260 |
#: app/skins/single/m2.php:60 app/skins/single/modern.php:58
|
5261 |
+
#: app/skins/single/modern.php:60 app/skins/slider/render.php:114
|
5262 |
+
#: app/skins/slider/render.php:159 app/skins/slider/render.php:204
|
5263 |
+
#: app/skins/slider/render.php:249 app/skins/slider/render.php:305
|
5264 |
msgid "REGISTER"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
+
#: app/libraries/main.php:4392
|
5268 |
msgid "View Detail Button"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
+
#: app/libraries/main.php:4392 app/skins/carousel/render.php:149
|
5272 |
+
#: app/skins/carousel/render.php:176 app/skins/grid/render.php:116
|
5273 |
+
#: app/skins/grid/render.php:151 app/skins/grid/render.php:188
|
5274 |
+
#: app/skins/grid/render.php:216 app/skins/list/render.php:102
|
5275 |
+
#: app/skins/list/render.php:185 app/skins/masonry/render.php:132
|
5276 |
+
#: app/skins/slider/render.php:114 app/skins/slider/render.php:159
|
5277 |
+
#: app/skins/slider/render.php:204 app/skins/slider/render.php:249
|
5278 |
+
#: app/skins/slider/render.php:305
|
5279 |
msgid "View Detail"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: app/libraries/main.php:4393
|
5283 |
msgid "Event Detail Button"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: app/libraries/main.php:4393 app/skins/countdown/tpl.php:216
|
5287 |
msgid "Event Detail"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: app/libraries/main.php:4395
|
5291 |
msgid "More Info Link"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: app/libraries/main.php:4398
|
5295 |
msgid "Ticket (Singular)"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: app/libraries/main.php:4399
|
5299 |
msgid "Tickets (Plural)"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: app/libraries/main.php:4466
|
5303 |
msgid "EventON"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: app/libraries/main.php:4467
|
5307 |
msgid "The Events Calendar"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#: app/libraries/main.php:4468
|
5311 |
msgid "Events Schedule WP Plugin"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
+
#: app/libraries/main.php:4469
|
5315 |
msgid "Calendarize It"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: app/libraries/main.php:4543
|
5319 |
msgid "Confirmed"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: app/libraries/main.php:4544
|
5323 |
msgid "Rejected"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: app/libraries/main.php:4545
|
5327 |
msgid "Pending"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: app/libraries/main.php:4560
|
5331 |
msgid "Waiting"
|
5332 |
msgstr ""
|
5333 |
|
5347 |
msgid "A new booking is received."
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: app/libraries/notifications.php:338
|
5351 |
msgid "A new event is added."
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: app/libraries/notifications.php:509
|
5355 |
msgid "to"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: app/libraries/notifications.php:520 app/modules/export/details.php:26
|
5359 |
msgid "+ Add to Google Calendar"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: app/libraries/notifications.php:521 app/modules/export/details.php:27
|
5363 |
msgid "+ iCal export"
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: app/libraries/notifications.php:582
|
5367 |
msgid "Yes"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: app/libraries/notifications.php:582
|
5371 |
msgid "No"
|
5372 |
msgstr ""
|
5373 |
|
5382 |
msgid "All of the day"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
+
#: app/libraries/skins.php:902
|
5386 |
msgid "Ignore month and years"
|
5387 |
msgstr ""
|
5388 |
|
5424 |
msgstr ""
|
5425 |
|
5426 |
#: app/modules/booking/steps/form.php:162
|
5427 |
+
#: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:117
|
5428 |
+
#: app/skins/countdown/tpl.php:161 app/skins/countdown/tpl.php:206
|
5429 |
msgid "Next"
|
5430 |
msgstr ""
|
5431 |
|
5549 |
msgstr ""
|
5550 |
|
5551 |
#: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
|
5552 |
+
#: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:121
|
5553 |
msgid "Load More"
|
5554 |
msgstr ""
|
5555 |
|
5556 |
+
#: app/skins/available_spot/tpl.php:138
|
5557 |
msgid "Available Spot(s):"
|
5558 |
msgstr ""
|
5559 |
|
5561 |
msgid "View All"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
+
#: app/skins/carousel/render.php:191 app/skins/countdown/tpl.php:155
|
5565 |
+
#: app/skins/countdown/tpl.php:199 app/skins/cover/tpl.php:99
|
5566 |
+
#: app/skins/list/render.php:119
|
5567 |
msgid "EVENT DETAIL"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
|
5571 |
+
#: app/skins/countdown/tpl.php:206
|
5572 |
#, php-format
|
5573 |
msgid "%s Upcoming Event"
|
5574 |
msgstr ""
|
5575 |
|
5576 |
+
#: app/skins/cover/tpl.php:81
|
5577 |
msgid "featured event"
|
5578 |
msgstr ""
|
5579 |
|
5580 |
+
#: app/skins/daily_view/render.php:78
|
5581 |
msgid "No event"
|
5582 |
msgstr ""
|
5583 |
|
5590 |
msgstr ""
|
5591 |
|
5592 |
#: app/skins/monthly_view/calendar.php:66
|
5593 |
+
#: app/skins/monthly_view/calendar.php:152
|
5594 |
#: app/skins/monthly_view/calendar_clean.php:67
|
5595 |
+
#: app/skins/monthly_view/calendar_clean.php:153
|
5596 |
#, php-format
|
5597 |
msgid "Events for %s"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: app/skins/monthly_view/calendar.php:154
|
5601 |
+
#: app/skins/monthly_view/calendar_clean.php:155
|
5602 |
+
#: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:90
|
5603 |
msgid "No Events"
|
5604 |
msgstr ""
|
5605 |
|
modern-events-calendar-lite.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: http://webnus.net/modern-events-calendar/
|
5 |
Description: An awesome plugin for events calendar
|
6 |
Author: Webnus Team
|
7 |
-
Version: 4.2.
|
8 |
Text Domain: modern-events-calendar-lite
|
9 |
Domain Path: /languages
|
10 |
Author URI: http://webnus.net
|
@@ -31,7 +31,7 @@ if(!defined('MECEXEC'))
|
|
31 |
define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
|
32 |
|
33 |
/** Plugin Version **/
|
34 |
-
define('MEC_VERSION', '4.2.
|
35 |
|
36 |
/** Include Webnus MEC class if not included before **/
|
37 |
if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
|
4 |
Plugin URI: http://webnus.net/modern-events-calendar/
|
5 |
Description: An awesome plugin for events calendar
|
6 |
Author: Webnus Team
|
7 |
+
Version: 4.2.1
|
8 |
Text Domain: modern-events-calendar-lite
|
9 |
Domain Path: /languages
|
10 |
Author URI: http://webnus.net
|
31 |
define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
|
32 |
|
33 |
/** Plugin Version **/
|
34 |
+
define('MEC_VERSION', '4.2.1');
|
35 |
|
36 |
/** Include Webnus MEC class if not included before **/
|
37 |
if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://webnus.net
|
|
4 |
Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 5.2
|
7 |
-
Stable tag: 4.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -192,6 +192,20 @@ You can see [plugin documentation here](https://webnus.net/dox/modern-events-cal
|
|
192 |
|
193 |
== Changelog ==
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
= 4.2.0 =
|
196 |
- Compatibility: WordPress 5.2
|
197 |
- Added: Additional Location feature
|
@@ -204,7 +218,7 @@ You can see [plugin documentation here](https://webnus.net/dox/modern-events-cal
|
|
204 |
- Added: Norwegian (Bokmål) language
|
205 |
- Fixed: Some issues in RSS feed of events regarding showing content and excerpt
|
206 |
- Fixed: Attached image in frontend submission form
|
207 |
-
- Fixed: Exporting custom day events to Google Calendar in manual export and automated
|
208 |
|
209 |
= 4.1.0 =
|
210 |
- Added: Tag and Speaker filter to shortcodes
|
4 |
Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 5.2
|
7 |
+
Stable tag: 4.2.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
192 |
|
193 |
== Changelog ==
|
194 |
|
195 |
+
= 4.2.1 =
|
196 |
+
- Added: "attachment_url" to MEC RSS
|
197 |
+
- Added: Offers (event price) to schema structure
|
198 |
+
- Fixed: Displaying comment form on MEC pages when comment is disabled
|
199 |
+
- Fixed: Displaying wrong content and title on the event detail pages
|
200 |
+
- Fixed: Next event module
|
201 |
+
- Fixed: Booking form in the modal window
|
202 |
+
- Fixed: Google Maps module in the modal window
|
203 |
+
- Fixed: Displaying Total attendees, name , email in notifications
|
204 |
+
- Fixed: CSV export "unknown" field
|
205 |
+
- Fixed: Displaying extra fields in booking system
|
206 |
+
- Fixed: Email in woocommerce paymant
|
207 |
+
- Fixed: Some minor issues
|
208 |
+
|
209 |
= 4.2.0 =
|
210 |
- Compatibility: WordPress 5.2
|
211 |
- Added: Additional Location feature
|
218 |
- Added: Norwegian (Bokmål) language
|
219 |
- Fixed: Some issues in RSS feed of events regarding showing content and excerpt
|
220 |
- Fixed: Attached image in frontend submission form
|
221 |
+
- Fixed: Exporting custom day events to Google Calendar in manual export and automated synchronization
|
222 |
|
223 |
= 4.1.0 =
|
224 |
- Added: Tag and Speaker filter to shortcodes
|